Skip to content

Instantly share code, notes, and snippets.

@Zenahr
Last active September 8, 2021 14:39
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 Zenahr/298c92d6b22f4124bbeefb48f209550b to your computer and use it in GitHub Desktop.
Save Zenahr/298c92d6b22f4124bbeefb48f209550b to your computer and use it in GitHub Desktop.
ffmpeg - convert video to gif
ffmpeg -i in.mp4 -filter_complex 'fps=20,scale=320:-1:flags=lanczos,split [o1] [o2];[o1] palettegen [p]; [o2] fifo [o3];[o3] [p] paletteuse' out.gif
ffmpeg -i input.mp4 -filter_complex 'fps=10,scale=320:-1:flags=lanczos,split [o1] [o2];[o1] palettegen [p]; [o2] fifo [o3];[o3] [p] paletteuse' out.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment