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
From what I am reading the images you are running the command on have a .jpg extension.
Try
convert -delay 6 -quality 95 *.jpg movie.mp4
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With