Skip to content

Instantly share code, notes, and snippets.

@junpluse
Last active August 29, 2015 14:17
Show Gist options
  • Save junpluse/5ba83f7373e5e9472e7a to your computer and use it in GitHub Desktop.
Save junpluse/5ba83f7373e5e9472e7a to your computer and use it in GitHub Desktop.
Convert .mov to .gif using ffmpeg
for file in "$@"
do
ffmpeg -i "$file" -pix_fmt rgb24 -f gif - | gifsicle --optimize=3 --delay=3 > "${file%.*}.gif"
done
ffmpeg -i input.mov -pix_fmt rgb24 -f gif - | gifsicle --optimize=3 --delay=3 > output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment