Skip to content

Instantly share code, notes, and snippets.

@myas92
Created December 7, 2022 10:37
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 myas92/df8ce022a4c0ad2c4a02fca71f66e97c to your computer and use it in GitHub Desktop.
Save myas92/df8ce022a4c0ad2c4a02fca71f66e97c to your computer and use it in GitHub Desktop.

Convert .mp4 to .gif on ubuntu

1- Install ffmpeg : https://linuxhint.com/convert-video-to-gif-linux/

2- use the below command to create a git with small size

## size 800
ffmpeg -y -i 2.mp4 -filter_complex "fps=5,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=32[p];[s1][p]paletteuse=dither=bayer" output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment