Skip to content

Instantly share code, notes, and snippets.

@revolunet
Created August 17, 2011 12:18
Show Gist options
  • Select an option

  • Save revolunet/1151424 to your computer and use it in GitHub Desktop.

Select an option

Save revolunet/1151424 to your computer and use it in GitHub Desktop.
extract frames from gif animations
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('animated.gif', 'output')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment