Skip to content

Instantly share code, notes, and snippets.

@coderbyheart
Created March 29, 2020 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coderbyheart/d9e58e9f6da8b72cbf86a36abfa0d1a9 to your computer and use it in GitHub Desktop.
Save coderbyheart/d9e58e9f6da8b72cbf86a36abfa0d1a9 to your computer and use it in GitHub Desktop.
webm2gif
#!/bin/bash
ffmpeg -y -i $1 -vf palettegen palette.png
ffmpeg -y -i $1 -i palette.png -filter_complex paletteuse -r 10 $1.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment