Created
January 11, 2016 14:24
-
-
Save 4nth0/575e1e5b54799f97d1c9 to your computer and use it in GitHub Desktop.
FFMPEG - Convert movie to gif
This file contains hidden or 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
# Convert .mov to .gif | |
ffmpeg -i movie.mov -pix_fmt rgb24 movie-export.gif | |
# Convert .mov to .gif with acceleration : 0.3 * PTS ( Presentation Time Stamp - https://ffmpeg.org/ffmpeg-filters.html#setpts_002c-asetpts) | |
# From: https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video | |
ffmpeg -i trello-use-template.mov -filter:v "setpts=0.3*PTS" -pix_fmt rgb24 trello-use-template.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment