How do I set up and use FFmpeg in Windows? FFmpeg is indeed a powerful video encoder decoder tool¹ It operates in the command line, as opposed to using a GUI Command line is that black window you find by typing [windows+r], then cmd in the popup field and hitting enter This is also called "command prompt" Once setup, you enter FFmpeg commands in one of these windows to use it Here are the basic steps to "install" and use it
How to losslessly encode a jpg image sequence to a video in ffmpeg? -f image2 - tells ffmpeg to select a group of images -r 30 - tells ffmpeg to encode at 30 frames (or images) per second (change this to your desired framerate) -i %09d jpg - tells ffmpeg to use the images 000000000 jpg to 999999999 jpg as the input Change the 9 in %09d jpg to how many zeroes the names of your image sequence has