Convert Image Sequence to a Video using FFmpeg

Download latest FFmpeg build from its official website here On windows, download the zip archive and unzip to a folder (for ex; c:\FFmpeg). Add bin path of the utility (for ex; c:\FFmpeg\bin) to the system path using environment variables on your windows system since the ffmpeg.exe file will not be automatically found by the windows system. Now copy all sequenced images to a folder. Launch command prompt in windows and change its location to the images folder. Now simply run the following command to generate a video from the images In the above command, filename-%06d.jpg is the filename of image sequence files with leading zeros. This filename will process images from filename-000001.jpgg to filename-999999.jpg. You also need to define a frame rate for videos using -r option. The output file gets created in the same folder where the images are located.