I'm currently exporting videos to frames using ffmpeg then converting those images to gifs using imagemagick
Code: Select all
ffmpeg -i video.mp4 -r 6 -t 5 frames/ffout%03d.png
Code: Select all
convert -delay 10 -loop 0 frames/ffout*.png output.gif
Code: Select all
ffmpeg -i video.mp4 -r 6 -t 5 frames/ffout%03d.gif
Code: Select all
convert -delay 10 -loop 0 frames/ffout*.gif output.gif
What option should I use to lower the file size? I tried setting
Code: Select all
-colors