How to extract all frames from 50 gifs
How to extract all frames from 50 gifs
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!
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: How to extract all frames from 50 gifs
Code: Select all
mogrify -format PNG -layers coalesce *.gif
snibgo's IM pages: im.snibgo.com
Re: How to extract all frames from 50 gifs
Thanks you!snibgo wrote:Code: Select all
mogrify -format PNG -layers coalesce *.gif