Skip to content

Instantly share code, notes, and snippets.

@miketahani
Forked from tomnomnom/convert-mp4-to-gif.mkd
Created March 30, 2021 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miketahani/6974e23e9c4a5507839fef60b7aadaf8 to your computer and use it in GitHub Desktop.
Save miketahani/6974e23e9c4a5507839fef60b7aadaf8 to your computer and use it in GitHub Desktop.
Crop an mp4 and convert it to a gif

Because I'll forget how to do this...

Crop

crop=w:h:x:y

ffmpeg -i in.mp4 -filter:v "crop=900:700:0:50" out.mp4

Generate Palette

ffmpeg -y -i out.mp4 -vf fps=5,scale=600:-1:flags=lanczos,palettegen palette.png

Convert to gif

ffmpeg -i out.mp4 -i palette.png -filter_complex "fps=5,scale=600:-1:flags=lanczos[x];[x][1:v]paletteuse" out.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment