Last active
May 6, 2016 13:37
-
-
Save agoldvarg/2eddbfb121f716739a7a58246218a4b5 to your computer and use it in GitHub Desktop.
mov-to-gif
This file contains 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
function mov-to-gif() { | |
ffmpeg -i $1 -vf "scale=1024:-1:flags=lanczos" -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment