Last active
March 4, 2016 16:00
-
-
Save codeprimate/cf3da0d189134a29e853 to your computer and use it in GitHub Desktop.
Convert Video to Animated GIF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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