Created
February 25, 2016 21:01
-
-
Save nicnocquee/e6e04b3e0290dbaf4a48 to your computer and use it in GitHub Desktop.
Convert video to GIF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
palette="palette.png" | |
filters="fps=10,scale=320:-1:flags=lanczos" | |
ffmpeg -v warning -i $1 -vf "$filters,palettegen" -y $palette | |
ffmpeg -v warning -i $1 -i $palette -lavfi "$filters [x]; [x][1:v] paletteuse" -y $1.gif | |
rm -f $palette |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment