Created
August 4, 2016 14:50
-
-
Save franciscoj/9abe1a7d25939685320078b32ab3db7b to your computer and use it in GitHub Desktop.
Transform a video into an animated gif.
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
#!/bin/sh | |
# Extracted from: http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html#usage | |
palette="/tmp/palette.png" | |
filters="fps=15,scale=640:-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 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment