How to generate an flv movie from an image sequence.
Generating a flash movie (flv) from an image sequence.
Date Created:Monday May 10th, 2010 03:16 PM
Date Modified:Monday May 10th, 2010 10:44 PM
This is an example command generating a flash video flv file from a sequence of png files. The files have are padded with 5 zeros in this case.
ffmpeg -f image2 -i render%05d.png video.flvTo get a higher bit rate, use the -b flag:
ffmpeg -f image2 -i render%05d.png -f flv -b 2621440 newer.flv
