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 -delay 6 -quality 95 test*ppm movie.mp4
and received this error message:
convert: no images defined `movie.mp4' @ error/convert.c/ConvertImageCommand/3210.
What caused this error?
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