Skip to content

Instantly share code, notes, and snippets.

@wteuber
Created August 14, 2024 10:38
Show Gist options
  • Save wteuber/dc58f2ecd5e84a843539b070a641dce8 to your computer and use it in GitHub Desktop.
Save wteuber/dc58f2ecd5e84a843539b070a641dce8 to your computer and use it in GitHub Desktop.
mp4 to gif
ffmpeg -i "My Movie.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