I've got a jpg with multiple face regions in ACDSee tags (xmd-acdsee-rs).
If a run: exiftool -xmp-acdsee-rs:all <file>
It will only return with the first face region, not the second.
Secondly, if I run: exiftool -s -struct -regioninfoacdsee <file>
Nothing is returned.
Any feedback is appreciated.
Ok, I figured out the 2nd issue.
By default, exiftool didn't understand the details of the RegionInfoACDSee structure.
If you add -config acdsee.config to the command (where it is defined) it works properly.
exiftool -config acdsee.config -struct -regioninfoacdsee <file>
Ok, so same solution for the first problem!