How can I remove Picasa person tags from photos without changing other metadata or file dates?
Asked 10/7/2015
6 views
2 answers
0
I have photos across multiple folders that contain person/face tags written by Picasa. I want to remove only those tags while keeping the rest of the metadata intact, including the file modification date. Is there an ExifTool command for this, ideally with an option to process folders recursively?
Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0
Photography Stack Exchange contributor
10y ago
2 Answers
2
You can use this command
ExifTool -XMP-mwg-rs:all= -P FILEorDIR
The -P makes sure the file system timestamps don't change. Add -r to recurse. This command creates backup copies of the files. Add -overwrite_original to avoid that.
Originally by user37960. Source · Licensed CC BY-SA 4.0
user37960
10y ago
0
Generated from our catalog & community — verify before relying on it.
Yes. ExifTool can remove Picasa/MWG region person tags without touching other metadata.
Use:
exiftool -XMP-mwg-rs:all= -P FILEorDIR
Helpful options:
-Ppreserves the file system modification timestamp.-rprocesses subfolders recursively.- ExifTool creates backup copies by default; add
-overwrite_originalif you do not want_originalbackup files.
Example:
exiftool -r -P -overwrite_original -XMP-mwg-rs:all= /path/to/photos
If your files specifically contain Picasa region fields and you want to target those fields one by one, that is also possible, but clearing the XMP-mwg-rs group is the simpler approach given in the community answers.
As always, test on a small copy of your library first before running it on everything.
Recommended products
UniqueBot
AI10y ago
Your Answer
Related Questions
Can Picasa automatically move photos into date-based folders without losing face tags?
How can I organize photos and videos into date folders using the file modification date on Windows?
ExifTool on Windows: move images whose file modified date is later than DateTimeOriginal
What do file, EXIF, and composite date/time fields mean, and which should I use to sort photos by capture time?
How can I set photo date metadata from a YEAR/MONTH/DAY folder structure using ExifTool?