Skip to content

Instantly share code, notes, and snippets.

@vovayatsyuk
Last active March 12, 2019 12:48
Show Gist options
  • Save vovayatsyuk/1259d207b20a7bb50cc21eb552727da7 to your computer and use it in GitHub Desktop.
Save vovayatsyuk/1259d207b20a7bb50cc21eb552727da7 to your computer and use it in GitHub Desktop.
# Basic example:
ffmpeg -ss 00:01 -t 13 -i source.mp4 cropped.mp4
ffmpeg -i cropped.mp4 -vf palettegen palette.png
ffmpeg -i cropped.mp4 -i palette.png -lavfi "fps=15,paletteuse" output.gif
# Advanced example
ffmpeg -ss 00:00 -t 10 -i screencast.mp4 -filter:v "crop=width:height:x:y" -strict -2 cropped.mp4
ffmpeg -i cropped.mp4 -vf palettegen palette.png
ffmpeg -ss 00:00 -t 5 -i cropped.mp4 -i palette.png -lavfi "fps=15,scale=450:-1:flags=lanczos [x]; [x][1:v] paletteuse" output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment