ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: obetz on September 27, 2018, 05:01:59 AM

Title: Copy GPS and Caption from jpg to ARW
Post by: obetz on September 27, 2018, 05:01:59 AM
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

Title: Re: Copy GPS and Caption from jpg to ARW
Post by: Phil Harvey on September 27, 2018, 08:06:35 AM
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
Title: Re: Copy GPS and Caption from jpg to ARW
Post by: obetz on September 27, 2018, 11:59:47 AM
Hi Phil,

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

Oliver
Title: Re: Copy GPS and Caption from jpg to ARW
Post by: Phil Harvey on September 27, 2018, 12:14:42 PM
Capitalization doesn't matter.