Hello,
Independantly, both following commands work fine :
exiftool.exe -T -Filename -RegionPersonDisplayName *.jpg > testA.txt
exiftool.exe -T -Filename -RegionInfoMP -struct *.jpg > testB.txt
But I need both informations in the output text file. When combining both arguments in a single command, only the -RegionInfoMP is written.
I tried the -a option, but no change.
Is there an easy way to get both ?
I don't think it's possible. At least, I don't see a way. The addition of the -struct option (https://exiftool.org/exiftool_pod.html#struct---struct) forces all output to be structured and flattened tags don't get extracted.
Add -api struct=2 to your command. See the API Struct option (http://exiftool.org/ExifTool.html#Struct) description for more information.
- Phil
@StarGeek, @Phil Harvey
Thanks a lot !!!