I am generating a GIF from a sequence of JPEGs.
I am using the brightness-contrast option for each image like so:
convert -loop 0 -layers optimize
-delay 10 thing1.jpg -brightness-contrast 5x5
-delay 10 thing2.jpg -brightness-contrast 5x5
-delay 10 thing3.jpg -brightness-contrast 5x5
-delay 10 thing4.jpg -brightness-contrast 5x5
thing.gif
What I'm noticing is that the brightness and contrast changes seem to be applied cumulatively, with the first image being the most affected. What I'm looking for is to apply the same brightness-contrast adjustment to all images, but instead, the first image appears to be increased by 40%, the second by 30%, etc.
Has anyone else experience this? Is there a way to apply the same change equally to all individual images that are used to build the GIF?