Advertisement
khalpin11

ffmpeg-convert-to-h265-windows

Oct 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.42 KB | None | 0 0
  1. for %%a in ("*.*") do ffmpeg -i "%%a" -c:v libx265 -crf 28 "%%a-converted.mkv"
  2. pause
  3.  
  4. REM Choose a CRF. The default is 28, and it should visually correspond to libx264 video at CRF 23, but result in about half the file size. Other than that, CRF works just like in x264.
  5.  
  6. REM Choose a preset. The default is medium
  7. REM Valid presets are ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, veryslow and placebo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement