Guest User

Untitled

a guest
May 27th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ----------example combo command batch file (pause at the bottom only?)
  2.  
  3. for %%a in ("*.mov") do ffmpeg -i "%%a" -preset veryfast -crf 15 -c:a copy "newfiles\%%~na.mp4"
  4.  
  5. for %%a in ("*.wmv") do ffmpeg -i "%%a" -preset veryfast -crf 15 -c:a aac "newfiles\%%~na.mp4"
  6.  
  7. ffmpeg -r 60000/1001 -i input.mp4 -preset veryfast -crf 18 -r 30000/1001 -c:a copy output.mp4
  8.  
  9. ffmpeg -r 50 -i input.mpg -preset veryfast -crf 18 -r 25 -c:a copy output.mp4
  10. pause
Advertisement
Add Comment
Please, Sign In to add comment