Skip to content

Instantly share code, notes, and snippets.

@nl5887
Last active November 9, 2021 13:11
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nl5887/c0aeffc6b866ed3723a917584f7e1a9c to your computer and use it in GitHub Desktop.
Save nl5887/c0aeffc6b866ed3723a917584f7e1a9c to your computer and use it in GitHub Desktop.
Quicktime to Animated gif using FFMPEG
#!/bin/bash
# convert to gif (improved palette) and 5 second still at the end
ffmpeg -i sans.mov -filter_complex "fps=25,setpts=PTS/5,split[v1][v2]; [v1]palettegen=stats_mode=full,tpad=stop_mode=clone:stop_duration=5 [palette];[v2][palette]paletteuse=dither=sierra2_4a" -loop 0 sans4.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment