- timelapse video
# setpts multiplier: smaller is faster ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" -an output.mp4
- compress
# simple optimization ffmpeg -i input.mp4 output
- gif
- simple:
ffmpeg -i input.mp4 input.gif
- optimize with convert:
convert input.gif -verbose -coalesce -layers OptimizeFrame input_optframe.gif
- final optimization with gifsicle:
gifsicle -O2 input_optframe.gif -o optimized.gif
- simple:
Last active
June 10, 2021 22:08
-
-
Save parties/f904397d56c700b275634f39002b5f8e to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment