Copy GPS and Caption from jpg to ARW

Started by obetz, September 27, 2018, 05:01:59 AM

Previous topic - Next topic

obetz

Hi all,

by accident, I excluded RAW files from initial tagging.

How can I copy GPS fields and Caption from a set of jpg files to the corresponding raw files?

exiftool -tagsfromfile %d%f.JPG -ext ARW .

overwrites also maker contents, which I consider undesirable.

exiftool -tagsfromfile %d%f.JPG -EXIF:GPS -ext ARW .

yields "No writable tags"

TIA,

Oliver


Phil Harvey

Hi Oliver,

You must be careful when writing to raw files.  Yes, writing the maker notes is VERY undesirable!

Try this:

exiftool -tagsfromfile %d%f.JPG -gps:all -usercomment -ext ARW DIR

(assuming that UserComment holds the caption that you want to copy)

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

obetz

Hi Phil,

many thanks for the quick reply. I remember I tried something like "gps:all" but likely with the wrong capitalization.

Oliver

Phil Harvey

...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).