Exiftool: Copying Nikoncapture to sidecar and back to another file

0

I just read around the topic Nikon Capture data and exiftool but it is not getting to work. I want to copy the Nikon Capture setting from one file to another by a temporary file. I checked that in the file (.nef) is already the Nikon Capture Tags.

exiftool.exe -tagsfromfile  %1 -MakerNotes:NikonCapture "C:\Users\BENUTZER\Desktop\xmp.xmp"

I also tried

exiftool.exe -tagsfromfile  %1 -NikonCapture:all "C:\Users\BENUTZER\Desktop\xmp.xmp"

But I get the message that there is nothing to write or that the tags are not writable (I want to read?)

Anybody any idea how solve the problem? Thanks for your help..

rokdd

Posted 2013-12-08T15:26:16.550

Reputation: 126

Answers

0

Now I found a proper solution with exiftool.

The copying with:

exiftool.exe  %1 -MakerNotes:NikonCaptureData -b -U > "%temp%\xmp.mie"

and for applying to the image:

exiftool.exe "-MakerNotes:NikonCaptureData<=%temp%\xmp.mie"  -w! -b -U %1

I made a package with the zip files and a instruction how to integrate in Nikon View NX 2

rokdd

Posted 2013-12-08T15:26:16.550

Reputation: 126

0

I answered this on NerdAnswer: http://nerdanswer.com/answer.php?q=397889

(but I notice now a problem with my first command to extract the information)

You have come up with a solution that works. Just a few points:

1) -U is not necessary in your first command

2) The first command doesn't generate a MIE file, so an extension like .DAT or .BIN or maybe .NCD would be more appropriate

3) In your second command, the -w!, -b and -U are superfluous options

  • Phil

PhilHarvey

Posted 2013-12-08T15:26:16.550

Reputation: 101

This may be better as a comment – Dave M – 2013-12-18T17:18:53.677

Thanks for feedback I am going to correct the issues you mentioned.. – rokdd – 2013-12-19T09:59:46.097