Skip to content

Instantly share code, notes, and snippets.

@nathakits
Created July 14, 2021 15:30
Show Gist options
  • Save nathakits/92fd4b7f25dd1b21ed4b4ebdfb5399e1 to your computer and use it in GitHub Desktop.
Save nathakits/92fd4b7f25dd1b21ed4b4ebdfb5399e1 to your computer and use it in GitHub Desktop.
Convert mp4 to gif
ffmpeg -t 5 -i input.mp4 -vf -loop 0 output.gif
ffmpeg -ss 1 -t 5 -i input.mp4 -f gif output.gif
ffmpeg -ss 1 -t 4 -i input.mp4 -filter_complex "[0:v] fps=12,scale=720:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" output.gif
@nathakits
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment