ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: dwlott on November 15, 2023, 09:18:06 AM

Title: How do I copy files with tags only from the specified group?
Post by: dwlott on November 15, 2023, 09:18:06 AM
Hey guys,
I want to copy files with minimal meta and the GPS group, but this command is copying all tags.  Please help.

-TagsFromFile
@
-EXIF:GPS:All
E:\mySourceFolder\Srcfile_1.JPG
E:\mySourceFolder\Srcfile_2.JPG
-o
e:\myTargetFolder\%f.%e

Title: Re: How do I copy files with tags only from the specified group?
Post by: StarGeek on November 15, 2023, 11:38:02 AM
You aren't clearing any information.  By itself, the -o (-out) option (https://exiftool.org/exiftool_pod.html#o-OUTFILE-or-FMT--out) will create a copy of the file with no alterations to the metadata.  The -TagsFromFile option here is simply copying the GPS data back into the file and this doesn't affect any of the other information in the file.

Try
-All=
-TagsFromFile
@
-EXIF:GPS:All
E:\mySourceFolder\Srcfile_1.JPG
E:\mySourceFolder\Srcfile_2.JPG
-o
e:\myTargetFolder\%f.%e
Title: Re: How do I copy files with tags only from the specified group?
Post by: dwlott on November 15, 2023, 03:13:25 PM
Thank you StarGeek, that worked well.
I tried to use the same command to make sidecar files, changing only the extension name.  But exiftool is returning this error:

Error: Nothing to write - E:/mySourceFolder/Srcfile_1.JPG
Error: Nothing to write - E:/mySourceFolder/Srcfile_2.JPG
    0 image files updated
    2 files weren't updated due to errors

-All=
-TagsFromFile
@
-EXIF:GPS:All
E:\mySourceFolder\Srcfile_1.JPG
E:\mySourceFolder\Srcfile_2.JPG
-o
e:\myTargetFolder\%f.xmp
Title: Re: How do I copy files with tags only from the specified group?
Post by: Phil Harvey on November 15, 2023, 03:51:56 PM
You can't write EXIF-format to an XMP file.  Unfortunately the GPS in XMP format is organized a bit differently, which makes things a bit more complicated.  To copy to XMP, you should replace

-EXIF:GPS:All
with

-@
gps2xmp.args

You can get gps2xmp.args here (https://github.com/exiftool/exiftool/blob/master/arg_files/gps2xmp.args).

- Phil
Title: Re: How do I copy files with tags only from the specified group?
Post by: dwlott on November 15, 2023, 04:21:23 PM
The translation args file worked great for me.  Thank you Phil.
Title: Re: How do I copy files with tags only from the specified group?
Post by: dwlott on November 16, 2023, 11:15:59 AM
Good news.  I studied  more and I got this to work for me to copy only the GPS group.

-TagsFromFile
@
-EXIF:GPS:All
e:\mySourceFolder\SrcFile_1.JPG
e:\mySourceFolder\SrcFile_3.JPG
-o
e:\myTargetFolder\%f.exif