Skip to content

Instantly share code, notes, and snippets.

@ajorpheus
Forked from miguelmota/gif.sh
Created April 10, 2017 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajorpheus/8577f8cf6e0665613bcbcf8603a81525 to your computer and use it in GitHub Desktop.
Save ajorpheus/8577f8cf6e0665613bcbcf8603a81525 to your computer and use it in GitHub Desktop.
Convert a .MOV to an animated .GIF using FFMPEG and Gifsicle.
#!/bin/bash
# Convert a .MOV to an animated .GIF using FFMPEG and Gifsicle.
# Credit: https://gist.github.com/dergachev/4627207
#
# Dependencies:
# ffmpeg
# gifsicle
#
# Example:
#
# $ ./gif.sh -i screencast.mov -o output.gif
#
inputFile="screen.mov" # input filename
outputFile="out.gif" # output filename
frameRate=10 # frames per second
optimize=3 # file size optimization. 3 being the highest
delay=3 # time between each gif in milliseconds. 3 = 30ms
while getopts "i:o:f:" opt; do
case $opt in
i) inputFile="$OPTARG";;
o) outputFile="$OPTARG";;
f) frameRate="$OPTARG";;
op) optimize="$OPTARG";;
d) delay="$OPTARG";;
esac
done
shift $((OPTIND - 1))
printf "Input: $inputFile\n"
printf "Output: $outputFile\n\n"
CMD="ffmpeg -i $inputFile -pix_fmt rgb24 -r $frameRate -f gif - | gifsicle --optimize=$optimize --delay=$delay > $outputFile"
printf "Executing command:\n"
printf "$CMD\n\n"
eval $CMD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment