Skip to content

Instantly share code, notes, and snippets.

@bsorrentino
Created January 3, 2019 22:20
Show Gist options
  • Save bsorrentino/3708db32e580f43baa567101f575cb69 to your computer and use it in GitHub Desktop.
Save bsorrentino/3708db32e580f43baa567101f575cb69 to your computer and use it in GitHub Desktop.
Transform Video to Animated GIF

Tranform video to images ffmpeg

ffmpeg -i <your video file> -vf fps=1 images/img%04d.png

Tranform images to animated gif using gifski

gifski -o <image name>.gif --fps 1 images/*.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment