- Take a series of photos on your digital camera.
- Copy them onto your linux box.
- shrink the photos to a more managable size:
mogrify -verbose -resize 600x400 -quality 60% *.JPG
- Preview the animation with animate:
animate -delay 8 *
- Optionally rotate the image to match the exif information from your camera (mine was sideways):
exiftran -ai *
- Convert the jpg files to png:
mogrify -format png *.JPG - Create the flash animation from the PNG files:
png2swf -r 15 -o flower2.swf -v -X 399 -Y 600 *.png
- Create an html file to hold the animation containing the following:
<object>
<param name="movie" value="flower2.swf" />
<param name="loop" value="true" />
<param name="quality" value="high" />
<embed src="flower2.swf" width="399" height="600" />
</object> - Write a blog article to tell everyone about it ;-)
"history" is a handy command for reviewing your activities for writing up your achievements.
27 March 2008
stop motion animation on linux
A quick howto...
Subscribe to:
Post Comments (Atom)
5 comments:
I saw nothing. YOu forgot the fees.
?
Thank you for this post. But what about exporting to other formats? Like avi or mpg, or gif?
Thanks again.
Good luck!
It fails for a huge number of files. The program gets killed. I am trying to use it with 22000 files
Just wanted to let you know that we are trying to do a stop motion video for a nuclear engineering grad class...don't ask. But we were having trouble with the files being way too large and crashing every program we tried to use. Your compression method was the only thing we found that worked. You saved our lives! Thanks!
Clever process. Thanks
Post a Comment