Skip to content

Instantly share code, notes, and snippets.

@anubhavsahoo
Last active September 7, 2018 10:13
Show Gist options
  • Save anubhavsahoo/25b8c4e2459c13b42c68ec14d09a725f to your computer and use it in GitHub Desktop.
Save anubhavsahoo/25b8c4e2459c13b42c68ec14d09a725f to your computer and use it in GitHub Desktop.
Video compression / conversion
### Convert mov to gif
### on mac
#prereq
brew install ffmpeg
brew cask install xquartz
brew install gifsicle
#command
ffmpeg -i in.mov -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > out.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment