Skip to content

Instantly share code, notes, and snippets.

@tcrowe
Last active November 10, 2018 23:59
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 tcrowe/2e9346196682f6865c06abab20a97034 to your computer and use it in GitHub Desktop.
Save tcrowe/2e9346196682f6865c06abab20a97034 to your computer and use it in GitHub Desktop.
Convert QuickTime MOV to GIF
ffmpeg -i incoming.mov -s 300x200 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --dither > outgoing.gif
# https://github.com/chrisjmendez/convert-mov-to-gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment