Jump to content

How to write correct lens Exif data to the DNG before importing into LR?


Recommended Posts

Yeah, I used lens tagger for years and can highly recommend it.

There are some habits that need to be learnt though. If you've made edits to your files prior to changing the exif, you'll need to write EXIF to files in LR first,  then apply lens tagger changes, then read exif from files in LR.

A bit off topic; If you ever need to remove OP Codes  from DNG files, you can do this too with Lens Tagger since it's using ExifTool.

Link to post
Share on other sites

I use a small ExifTool-script, before I import to Lightroom, for example if you run it from the folder where your images are stored:

exiftool -LensMake='Voigtländer' -Lens='Ultron-VM 1:2.0/28 ASPH.' -LensModel='Ultron-VM 1:2.0/28 ASPH.' *.DNG
rm *_original*
exiftool '-DateTimeOriginal>FileModifyDate' *.DNG

 

Link to post
Share on other sites

On 5/24/2022 at 2:40 AM, insomnia said:

I use a small ExifTool-script

Add -overwrite_original to the exiftool command line and you won't need to remove the *_original files as a separate step.  You can also add the command to set the file modify date as part of the initial exiftool command line so you don't have to process the files twice.  I have a similar script.  It looks like this:

#! /bin/sh
#

# Update Lens information in DNG file
#

exiftool \
    -overwrite_original -m -q -q \
    -FocalLength='35 mm' \
    -Lens='ZEISS C Biogon T* 2.8/35 ZM' \
    *.DNG
  • Thanks 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...