Skip to content

Instantly share code, notes, and snippets.

@lleger
Created October 11, 2013 22:21
Show Gist options
  • Save lleger/6942932 to your computer and use it in GitHub Desktop.
Save lleger/6942932 to your computer and use it in GitHub Desktop.
Commands to make a .gif from a video
ffmpeg -i movie.mov -vf scale=640:-1 -r 10 frames/ffout%03d.png
convert -delay 1x15 -loop 0 frames/ffout*.png -ordered-dither o8x8,8 -coalesce -layers OptimizeTransparency +map output.gif
gifsicle --optimize=3 --delay=3 output.gif -o output_optimized.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment