Created
July 4, 2017 10:42
-
-
Save malcoriel/fdeba2a5d88c4a2b8d0dc9a76d4b89b3 to your computer and use it in GitHub Desktop.
Convert mp4 to gif via ffmpeg
This file contains 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
ffmpeg -y -i $1 -vf fps=10,scale=1024:-1:flags=lanczos,palettegen palette.png | |
ffmpeg -y -i $1 -i palette.png -filter_complex "fps=10,scale=1024:-1:flags=lanczos[x];[x][1:v]paletteuse" -loop 1 $1.gif | |
rm palette.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment