Guest User

Untitled

a guest
May 27th, 2017
18
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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
RAW Paste Data

Adblocker detected! Please consider disabling it...

We've detected AdBlock Plus or some other adblocking software preventing Pastebin.com from fully loading.

We don't have any obnoxious sound, or popup ads, we actively block these annoying types of ads!

Please add Pastebin.com to your ad blocker whitelist or disable your adblocking software.

×