Advertisement
Guest User

Untitled

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