- 2024
- Convert images to gif
- #!/bin/bash # input images pattern input_images="*.png" output_gif="output.gif" # delay between frames (100 = 1 second) delay=100 # loop forever (0), or specify number of loops loop=0
- 2023
- FFmpeg - Convert MP4 video to GIF
- FFmpeg command to convert an MP4 video to a GIF file: ffmpeg -i input.mp4 \ -filter_complex \ "[0:v] fps=10,scale=320:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" \ output.gif This