vote up 0 vote down star

I need to photograph and animate a cell phone into a 360ยบ web spin for a client. I would need to capture 40 images sequenced and "stitch" them together for a final Flash animation for their website. What software/hardware would you recommend?

flag

1 Answer

vote up 3 vote down check

Install Imagemagick. Open a cmd window and cd to where your images are:

convert frame*.jpeg mymovie.flv

will convert all the images into a single movie file. You may need to install 'delegates' depending on what you wan to convert into. If you need to insert a delay between frames:

convert -delay 30 frame*.jpeg mymovie.flv

The delay units are ticks / ticks per second - you specify the ticks. The default ticks per sec = 100.

This page goes into far greater detail, using a combination of ffmpeg, mplayer, and imagemagick.

link|flag

Your Answer

Get an OpenID
or
never shown

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