I'm using the following command to print all of the metadata into a CSV file
exiftool -a -G:0:1:2:3 *.* -r DIR
I would like my output to also include the tag ID in the header row. Is there a way to do this?
Is the G7 option what you're looking for? See this post (https://exiftool.org/forum/index.php?topic=11502.0) where Herb asks a lot of good questions as to the details of the group.
I'm not sure. So a sample column from the CSV reads
Exif:IFD0:Camera:Make
I would like it to be something like this
Exif:IFD0:Camera:Make (0x10F)
in the column header
I don't think that's possible. The -G7 option doesn't give the ID in hex. It returns it as decimal. So for Make it returns ID-271. Adding it to your example, -G:0:1:2:3:7 would print as EXIF:IFD0:Camera:Main:ID-271:Make
No problem. Doesn't need to be in HEX. Thank you