8

I’d like to use FFmpeg to transform all images from the current directory to a video. The image file name is not like, image1.jpg and image2.jpg.

Giacomo1968
  • 58,727

1 Answers1

9

You can use the following to add all images with a jpg extension to an mp4 video

ffmpeg -framerate 1 -pattern_type glob -i '*.jpg' video.mp4
llogan
  • 63,280