Make An Animated GIF With ffmpeg
This is the script I use to make animated gifs:
TODO
☐
comepare this with the one that takes off black bars to see if there are any difference besides that functionality
INPUT_PATH="input.mp4"
OUTPUT_PATH="output.gif"
WIDTH=440
FPS=10
CROP="crop=in_w:in_h:0:0,"
You can also run it with start and end times with the -ss #
(start second) and -t #
(time to capture) flags. I don't keep those in my script because I've already cut the videos by that time.
-- end of line --