If you have some images with the sequential name (like image0001.jpg, image0002.jpg etc…) and you want to make a video, with Linux is very easy.
You need ffmpeg:
ffmpeg -r 25 -pattern_type glob -i '*.jpg' -c:v libx264 output.mp4
You can change the frame-rate modifying the number after “-r” (in my example 25 fps).
0 Comments