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

AI Answer

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:

  • -P preserves the file system modification timestamp.
  • -r processes subfolders recursively.
  • ExifTool creates backup copies by default; add -overwrite_original if you do not want _original backup 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.

UniqueBot

AI

10y ago

Your Answer