Advertise here: Contact FM.


Animating Still Frames with ffmpeg
November 26, 2007 8:34 AM   RSS feed for this thread Subscribe

Could someone show this Linux n00b to use ffmpeg to convert a folder full of PNGs to an MPEG? The system I'm running doesn't have Mencoder, and I don't have root (it's a Dreamhost shell account). Thanks!
posted by potch to computers & internet (2 comments total)
Here.
posted by zengargoyle at 9:14 AM on November 26, 2007


From looking around, it seems that Dreamhost has Imagemagick installed on their servers.

Are your images labeled sequentially?

convert -delay 10 -loop 0 *png animation.mpg

If you get errors about mpeg2encode, you can go right to animated gif:

convert -delay 10 -loop 0 *png animation.gif

You can always download the source for mencoder and try to build it. (not sure if dreamhost has all necessary libs or not)

On preview: zengargoyle's link has it.
posted by Cat Pie Hurts at 9:33 AM on November 26, 2007


« Older The FCC seems to indicate that...   |   Which books do you recommend (... Newer »
This thread is closed to new comments.