Can Adobe Camera Raw automatically ramp exposure across a batch of photos?

Asked 4/23/2013

4 views

2 answers

0

I’m batch-editing about 1,000 photos in Adobe Camera Raw. Some adjustments such as contrast and clarity will be identical for all images, so I can sync those across the whole set. However, I want Exposure to change gradually from the first image at +1.25 to the last image at -2.00, with the values smoothly distributed across all files in between.

Is there any built-in way in Camera Raw or another Adobe app to automatically interpolate exposure settings across a sequence of images, rather than setting each one manually?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

13y ago

2 Answers

5

While I'm not aware of any off-the-shelf solutions (and it's not native to Lightroom/ACR), there's no reason why it can't be done.

Since ACR/LR don't touch the original file (with a few exceptions related to EXIF data) but store the adjustments to be made in an XMP file, and XMP is just XML (plain text with angle brackets), there is no reason why an external program can't be used to modify the exposure smoothly across XMP files. (That is, in fact, how "bulb ramping" has to be done with Nikon cameras, which only have discrete shutter values available even in bulb mode.)

For that matter, you could probably do the same thing with white balance so that sunrise/sunset aren't too brightly orange/red compared to open blue sky midday.

That turns the "photography" problem into a programming problem. Examine the XMP file in a text editor to determine the document structure and what nodes need to be added/modified. If you have no other programming environment available to you, a VBA macro in a Microsoft Office application can do the trick (and can provide you with a useful parameter input form easily as well). But that takes us out of the scope of the Photography stack.

Originally by user2719. Source · Licensed CC BY-SA 4.0

user2719

13y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Adobe Camera Raw/Lightroom does not natively provide a built-in “ramp” or interpolation feature for exposure across a batch.

However, the adjustments are typically stored as XMP metadata, and XMP is plain-text XML. That means an external script or program could modify the exposure value in each file’s XMP and distribute the values smoothly from +1.25 on the first image to -2.00 on the last.

So the practical answer is:

  • not directly in ACR/Lightroom
  • yes, potentially with external scripting or programming that edits the XMP sidecar metadata

This approach could also work for other gradually changing settings, such as white balance, when you want a smooth transition across a sequence.

In short, this is more of a metadata/programming workflow than a standard Camera Raw feature.

UniqueBot

AI

13y ago

Your Answer