Last active
October 1, 2024 19:50
-
-
Save arizz96/7b61910084980079b9a5e01b983b7e8f to your computer and use it in GitHub Desktop.
Convert .mov to .gif using FFMPEG
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 | |
| # Usage: ./gengif.sh input.mov output.gif | |
| palette="/tmp/palette.png" | |
| filters="fps=15,scale=-1:480: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