Last active
April 3, 2018 18:07
-
-
Save allanbatista/fd1c18cb0f080bf6ca1eaef9e524e436 to your computer and use it in GitHub Desktop.
Convert Video MP4 to GIF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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