Page 1 of 1

How to extract all frames from 50 gifs

Posted: 2015-03-07T16:04:17-07:00
by Hjkma
I have 50 gifs in one folder. I need to extract all the frames in png format of all the gifs. I was told that need to write a simple script. How to do it? Please note that I am a newbie and do not understand nothing in programming. Thank you for your help!

Re: How to extract all frames from 50 gifs

Posted: 2015-03-07T16:34:23-07:00
by snibgo

Code: Select all

mogrify -format PNG -layers coalesce *.gif

Re: How to extract all frames from 50 gifs

Posted: 2015-03-07T18:40:47-07:00
by Hjkma
snibgo wrote:

Code: Select all

mogrify -format PNG -layers coalesce *.gif
Thanks you!