How can I animate a series of png files in ubuntu 10.04?

3

1

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.

James

Posted 2010-07-20T07:43:54.763

Reputation: 4 189

Answers

3

Assuming you have Image Magick installed:

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

source

Tobias Kienzler

Posted 2010-07-20T07:43:54.763

Reputation: 3 262