I want to convert some videos with FFmpeg to make them streamable. So I want to convert to a video format with a constant bitrate. Can anyone help me? I have tried a lot of options, like -maxrate, -minrate -bufsize, but none of them produced a video at a fixed bitrate.
|
feedback
|
migrated from stackoverflow.com Jul 24 '11 at 10:06
This question came from our site for professional and enthusiast programmers.
|
From the FFmpeg documentation: Set min video bitrate (in bit/s). Most useful in setting up a CBR encode: So, set minrate, maxrate and bitrate to the same rate | |||
feedback
|