I\'m trying to convert 200 .jpg files that were .ppm files into one .mp4 file.
In the same directory as the .jpg files, I ran this code:
convert -del
Nevermind, I just ended up using ffmpeg. This is the code that I used:
ffmpeg -framerate 1 -pattern_type glob -i '*.jpg' -c:v libx264 out.mp4