Guest User

Untitled

a guest
Oct 19th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @ECHO OFF
  2. SetLocal EnableDelayedExpansion
  3.  
  4. SET DST=d:\recoded
  5.  
  6. SET CWD=%~dp0
  7. SET FFMPEG=%CWD%ffmpeg.exe
  8. SET FFMPEG_OPTS=-y -loglevel error -f avi -vf "scale='min(720,iw)-mod(min(720,iw),16):ih*(ow/iw)-mod(ih*(ow/iw),16)'" -acodec ac3 -ac 2 -ar 48000 -ab 128k -vcodec libxvid -qmin 10 -qmax 5 -bf 0
  9.  
  10. for %%f in (%*) do (
  11. echo !date! !time!: %%f
  12. "%FFMPEG%" -i "%%f" %FFMPEG_OPTS% "%DST%\%%~nf.avi" )
  13.  
  14. EndLocal
Add Comment
Please, Sign In to add comment