Skip to content

Instantly share code, notes, and snippets.

@crates
Forked from RodrigoEspinosa/mov-to-gif.sh
Created February 11, 2020 17:37
Show Gist options
  • Save crates/a614456eb97012a664a60d0a3b4540db to your computer and use it in GitHub Desktop.
Save crates/a614456eb97012a664a60d0a3b4540db to your computer and use it in GitHub Desktop.
Alias for OS X Screencast to animated GIF
mov-to-gif() {
ffmpeg -i $1 -vf "scale=1024:-1:flags=lanczos" -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=0 --delay=7 #
}
@crates
Copy link
Author

crates commented Feb 11, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment