Skip to content

Instantly share code, notes, and snippets.

@codeprimate
Last active March 4, 2016 16:00
Show Gist options
  • Select an option

  • Save codeprimate/cf3da0d189134a29e853 to your computer and use it in GitHub Desktop.

Select an option

Save codeprimate/cf3da0d189134a29e853 to your computer and use it in GitHub Desktop.
Convert Video to Animated GIF
#!/bin/bash
# Requires: ffmpeg, ImageMagick convert, gifsicle
ffmpeg -i $1 $1-step1.gif && \
convert $1-step1.gif -verbose -coalesce -layers OptimizeFrame $1-step2.gif && \
gifsicle -O2 $1-step2.gif -o $1.gif && \
rm $1-step1.gif $1-step2.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment