Created
September 7, 2018 10:12
-
-
Save anubhavsahoo/33be1d8332eeab481ebe9852b17b28b6 to your computer and use it in GitHub Desktop.
Video compression / conversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##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