How to create a video from images with FFmpeg?
-pattern_type glob This great option makes it easier to select the images in many cases. Normal speed video with one image per frame at 30 FPS ffmpeg -framerate 30 -pattern_type glob -i ‘*.png’ \ -c:v libx264 -pix_fmt yuv420p out.mp4 Here’s what it looks like: GIF generated with: https://askubuntu.com/questions/648603/how-to-create-an-animated-gif-from-mp4-video-via-command-line/837574#837574 Add some audio to it: ffmpeg -framerate … Read more