Skip to content

Instantly share code, notes, and snippets.

@revolunet
Created March 1, 2011 09:48
Show Gist options
  • Star 40 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save revolunet/848913 to your computer and use it in GitHub Desktop.
Save revolunet/848913 to your computer and use it in GitHub Desktop.
extract frames from animated gif using python+PIL
import os
from PIL import Image
def extractFrames(inGif, outFolder):
frame = Image.open(inGif)
nframes = 0
while frame:
frame.save( '%s/%s-%s.gif' % (outFolder, os.path.basename(inGif), nframes ) , 'GIF')
nframes += 1
try:
frame.seek( nframes )
except EOFError:
break;
return True
extractFrames('ban_ccccccccccc.gif', 'output')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment