0

I have several thousand .gif files (with alpha channels) and I want to add a single red pixel (no transparency) in the bottom left hand corner of each .gif file. Each one has different dimensions.

How can I do this easily with ffmpeg?

1 Answers1

1

Adapting How do I convert a video to GIF using ffmpeg, with reasonable quality? by adding the drawbox filter:

ffmpeg -i input.gif -vf "drawbox=x=0:y=ih-h:w=1:h=1:color=red:t=fill:replace=1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" output.gif

If the pixel does not show up increase the h value or you may have to adjust the options for palettegen/paletteuse.

llogan
  • 63,280