Skip to content

Instantly share code, notes, and snippets.

@4nth0
Created January 11, 2016 14:24
Show Gist options
  • Save 4nth0/575e1e5b54799f97d1c9 to your computer and use it in GitHub Desktop.
Save 4nth0/575e1e5b54799f97d1c9 to your computer and use it in GitHub Desktop.
FFMPEG - Convert movie to gif
# 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