How do I copy files with tags only from the specified group?

Started by dwlott, November 15, 2023, 09:18:06 AM

Previous topic - Next topic

dwlott

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


StarGeek

You aren't clearing any information.  By itself, the -o (-out) option 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
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

dwlott

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

Phil Harvey

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.

- 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 ($).

dwlott

The translation args file worked great for me.  Thank you Phil.

dwlott

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