Hi All, i am new of these conversions. i need how to convert one format image to different other formats using ffmpeg. whether ffmpeg supports batch processing.. for EX: Like i have image.jpg by using ffmpeg ffmpeg -i image.jpg -o image.gif image.png image.psd son on... like that please any one help..? Thanks in Advance Thanks kishore
you can use imagemagic for this: convert image.gif image.jpg With ffmpeg you cannot convert gif to jpeg and vice versa. But you can convert any movie file like mpeg,rm etc to gif or to jpeg. ffmpeg -i test.mpg -f image2 -t 1.0 test%d.jpg ffmpeg -i test.mpg -f image -t 1.0 test%d.gif It will make gif file for every frame in test.mpg file. Later you can combine gif file to get animated gif using: convert -delay 20 -loop test*.gif animated.gif Thanks Prashant On 9/25/06, Mohana Venkata Kishore M <kishoremmv at gmail.com> wrote:
Hi All,
i am new of these conversions. i need how to convert one format image to different other formats using ffmpeg. whether ffmpeg supports batch processing..
for EX:
Like i have image.jpg
by using ffmpeg
ffmpeg -i image.jpg -o image.gif image.png image.psd son on... like that
please any one help..?
Thanks in Advance
Thanks kishore _______________________________________________ ffmpeg-user mailing list ffmpeg-user at mplayerhq.hu http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-user
participants (2)
-
kishoremmv@gmail.com -
prkhadka@gmail.com