Skip to content

Instantly share code, notes, and snippets.

@allanbatista
Last active April 3, 2018 18:07
Show Gist options
  • Save allanbatista/fd1c18cb0f080bf6ca1eaef9e524e436 to your computer and use it in GitHub Desktop.
Save allanbatista/fd1c18cb0f080bf6ca1eaef9e524e436 to your computer and use it in GitHub Desktop.
Convert Video MP4 to GIF
# sudo apt-get install ffmpeg -y
# -an ignore audio
# -vf filters
# -ss second start
# -t how much seconds
ffmpeg -i input.mp4 -y -an -vf fps=2,scale=720:-1 -ss 5 -t 8 output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment