don't freak out -
a few thousand frames:
http://tinyurl.com/odk78wu
The usual command:
Code: Select all
convert image.gif image_%d.gif
Any ideas on this one ?
Code: Select all
convert image.gif image_%d.gif
Code: Select all
ffmpeg -i toyrobo.gif f_%06d.gif
Code: Select all
ffmpeg -i inputfile.gif -f image2 image-%07d.gif
Code: Select all
ffmpeg -i infile.gif -c:v gif -f image2 outfile%07d.gif
Code: Select all
ffmpeg -i infile.gif outfile%07d.png