Hello,
is there an easy way to delete all metadata (also MakerUnknown and Huawei) except GPS information?
Thanks a lot
Try
exiftool -All= -TagsFromFile @ -GPS* /path/to/files/
Using -All= removes all possible metadata, then -TagsFromFile @ -GPS* will copy the GPS data back into the file.
If you're on Mac/Linux, you'll need quotes around the -GPS* part.
Perfect, thank you!