Skip to content

Instantly share code, notes, and snippets.

@vlandham
Created March 2, 2014 03:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlandham/9301642 to your computer and use it in GitHub Desktop.
Save vlandham/9301642 to your computer and use it in GitHub Desktop.
#!/bin/bash
MOVIE=$1
ffmpeg -i $MOVIE -r 10 -vcodec png out-static-%05d.png
convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $MOVIE.gif
rm out-static*.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment