Skip to content

Instantly share code, notes, and snippets.

@sawaYch
Created March 7, 2023 05:54
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 sawaYch/f21cde591cb01eb5a718050f52d0333e to your computer and use it in GitHub Desktop.
Save sawaYch/f21cde591cb01eb5a718050f52d0333e to your computer and use it in GitHub Desktop.
MP4 to gif
ffmpeg -i ./input.mp4 -vf "fps=10,scale=320:-1:flags=lanczos" -c:v pam \
    -f image2pipe - | \
    convert -delay 10 - -loop 0 -layers optimize output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment