LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   make movie using gif (non animated) images (https://www.linuxquestions.org/questions/linux-general-1/make-movie-using-gif-non-animated-images-231680/)

guillaume31 09-17-2004 04:08 AM

make movie using gif (non animated) images
 
Hi,

I would like to make a movie (avi, mpeg,... to be play using mplayer afterward) from a serie of gif images. Is there a linux freeware for doing this?

Thanks for any suggestion,
Guillaume

maroonbaboon 09-17-2004 04:56 AM

According to the man page, mencoder (the encoding version of mplayer) will encode single images into a movie: To encode all *.jpg files in the current dir use

mencoder \*.jpg -mf on:fps=25 -o output.avi -ovc divx4

Not sure if mencoder will accept files in gif or other format, but you can convert gif to anything else using a variety of tools. e.g.

giftopnm image.gif | cjpeg -quality 80 -smooth 10 > image.jpg

The transcode package is an alternative to mencoder.


All times are GMT -5. The time now is 03:24 PM.