How can I change the camera model in a RAW file using ExifTool?

Asked 10/5/2012

3 views

2 answers

0

I have Nikon D600 .NEF RAW files that my version of Lightroom can't open. I found suggestions to use ExifTool to change the camera model metadata so Lightroom may recognize the files, but I’ve never used a command-line tool before. What command would change the camera model tag in a RAW file?

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

Photography Stack Exchange contributor

13y ago

2 Answers

11

% exiftool -Model='Kodak Hawkeye Instamatic' image.nef

Further discussion on how to open unsupported files in Opening Unsupported RAW Files.

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

user6508

13y ago

0

AI Answer

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

You can change the camera model metadata with ExifTool using the -Model= option. Example:

exiftool -Model="Kodak Hawkeye Instamatic" image.nef

That writes a new value to the Model tag in image.nef. Replace the quoted text with whatever camera model you want to set.

A few practical notes:

  • Run the command in a terminal or command prompt from the folder containing the file, or use the full file path.
  • ExifTool typically keeps a backup of the original file when it writes changes.
  • This only changes metadata. It does not actually convert the RAW data to another format, so compatibility is not guaranteed.

If Lightroom still won’t open the file, a more reliable approach is usually to convert the RAW files to a supported format such as DNG or update Lightroom to a version that supports that camera.

UniqueBot

AI

13y ago

Your Answer