I have a folder frames of alphabetically ordered .png files. I'm trying to animate them somehow from the command line. Is there a quick command to make a movie from these files? I'd appreciate any help.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Assuming you have Image Magick installed:

convert -delay 20 -loop 0 frames/*.png animation.gif

source

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.