Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

How to delete all exif of DNG?

Guest
Aug 08, 2022 Aug 08, 2022

I have digitized film negatives and converted the raw files to DNG. Now I want remove all metadata of those files. And put the film camera model to metadata. Is there anyway to delete exif?

TOPICS
Camera RAW , Feature request , How to , Metadata
1.9K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 08, 2022 Aug 08, 2022

I have not used this, but it seems pretty straightforward. Plus, you can do this in bulk

 

https://apps.apple.com/app/id784466108

 

This leads you to both a Mac and a PC version

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Aug 09, 2022 Aug 09, 2022

Exif Purge doesn't support DNG files. Only JPEG.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 08, 2022 Aug 08, 2022

Or one can use ExifTool, which supports a wide range of file formats and metadata properties - including read/write for DNG:

 

https://exiftool.org/#supported

 

For only EXIF (camera) related data:

 

exiftool -exif:all= 'path to/file/or folder'

 

For all metadata, but not the ICC profile:

 

exiftool -all= -CommonIFD0= --icc_profile:all 'path to/file/or folder'

 

Note: Windows OS would use " double straight quotes. These commands will dupe the input file and rename the original file as a backup. To overwrite the originals without a backup, add the following argument with the others:

 

-overwrite_original

 

Note: Always work on copies while you are learning!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Aug 09, 2022 Aug 09, 2022

I have no any idea how to use Exif Tool... I dont understand those commands. Is there any graphical softwares?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 09, 2022 Aug 09, 2022

Try jExifToolGUI https://hvdwolf.github.io/jExifToolGUI/

You can edit the camera information directly in a single file or a batch of files.

 

jExifToolGUI_001.jpgexpand image

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 09, 2022 Aug 09, 2022

@Deleted User wrote:

I have no any idea how to use Exif Tool... I dont understand those commands. Is there any graphical softwares?


 

That is why there are tutorials that can be found via a search.

 

All you need to do is install ExifTool on the Mac or PC.

 

Then launch a command window – Terminal.app on Mac or CMD.exe on Windows.

 

Paste in the code without the path to the file/s or folder, ensuring a space separator at the end...

 

Then drag in the file/s or folder into the command window and press return/enter.

 

Screenshot:

 

exiftool.pngexpand image

 

There are various GUI's, but even then, for many use cases one has to enter the code anyway as not all features are offered in the GUI, so all they end up doing is providing a crutch for selecting files.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Aug 10, 2022 Aug 10, 2022
LATEST

Thanks. I found this: https://exiftool.org/dummies.html

Now I found way to put correct metadata to my DNG negatives.
1. "exiftool -all=" (clear all metadata)
2. "exiftool -make=Canon" (put real camera producer name)
3. "exiftool -model=AE-1" (put real camera model)
4. "exiftool -ISO=400" (ISO)

5. "exiftool -shutterspeedvalue=1/250" (Shutter speed)
6. "exiftool -fnumber=8" (F-number)
7. "exiftool -LensMake=Sigma"

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines