How can I generate multiple versions of the same video file at different bitrates that are properly key-frame aligned? Is it posible with ffmpeg?

Here is an article with example http://www.wowza.com/forums/content.php?192-Encoding-Suggestions-for-Video-on-Demand

The article says that "Multi-birate encoding has not worked using ffmpeg". Is it right?

link|improve this question
feedback

1 Answer

use two-pass encoding, process first pass with the lowest resolution and then encode again each resolution with pass=2 which will use stats generated with first pass. this will guarantee keyframes to be in excactly the same places.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.