Log in

View Full Version : A dumb question, How to change bframe, me, using ffmpeg


wthreex
29th January 2019, 09:42
I'm trying to encode some mp4 files using ffmpeg and x264 in my terminal, but i couldnt find anything in ffmpeg doc (https://trac.ffmpeg.org/wiki/Encode/H.264) that allow me to access all x264 settings like: me, bframe, etc ...

Sharc
29th January 2019, 10:23
1/ Download and install ffmpeg (static) from here
https://ffmpeg.zeranoe.com/builds/
2/ In the doc folder open ffmpeg-codecs.html
3/ scroll down to chapter 9.9.2 which lists the x264 private options


or run the help:
ffmpeg.exe -h encoder=libx264

or use a GUI like myFFmpeg which lets you control the options via menu.

wthreex
29th January 2019, 10:29
thanks!