Skip to content

Instantly share code, notes, and snippets.

@sdrew
Forked from lelandbatey/gifConvert.sh
Created April 4, 2014 22:38
Show Gist options
  • Save sdrew/9984448 to your computer and use it in GitHub Desktop.
Save sdrew/9984448 to your computer and use it in GitHub Desktop.
#!/bin/bash
#Alright, so this should automatically convert a given video into a gif called optimized_output.gif
# See here for explanation: https://github.com/lelandbatey/configDebDev/blob/master/helpFiles.txt#L113
ffmpeg -i $1 out%04d.gif # Extracts each frame of the video as a single gif
convert -delay 4 out*.gif anim.gif # Combines all the frames into one very nicely animated gif.
convert -layers Optimize anim.gif optimized_output.gif # Optimizes the gif using imagemagick
# vvvvv Cleans up the leftovers
rm out*
rm anim.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment