Skip to content

Instantly share code, notes, and snippets.

@gscottolson
Created August 7, 2015 17:13
Show Gist options
  • Save gscottolson/4b859ccdbd57b77de5d7 to your computer and use it in GitHub Desktop.
Save gscottolson/4b859ccdbd57b77de5d7 to your computer and use it in GitHub Desktop.
Convert MOV to Animated GIF
mkdir ./pngs
ffmpeg -i src.mov -r 10 ./pngs/out%04d.png
mkdir ./gifs
sips -s format gif .pngs/*.png --out ./gifs
gifsicle ./gifs/* --optimize=3 --loopcount --colors 256 --resize 375x667 > ./animation.gif
@gscottolson
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment