Skip to content

Instantly share code, notes, and snippets.

@agoldvarg
Last active May 6, 2016 13:37
Show Gist options
  • Save agoldvarg/2eddbfb121f716739a7a58246218a4b5 to your computer and use it in GitHub Desktop.
Save agoldvarg/2eddbfb121f716739a7a58246218a4b5 to your computer and use it in GitHub Desktop.
mov-to-gif
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