Skip to content

Instantly share code, notes, and snippets.

@choonkeat
Created April 28, 2015 07:23
Show Gist options
  • Save choonkeat/8b8fbe2859eb51ebc207 to your computer and use it in GitHub Desktop.
Save choonkeat/8b8fbe2859eb51ebc207 to your computer and use it in GitHub Desktop.
for video in $*
do
dimension=`exiftool "$video" | grep 'Image Size' | while read a b c d; do echo $d; done`
ffmpeg -i "$video" -s $dimension -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=7 > "$video.gif"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment