I want to extract -Model -FocalLength -FNumber -ISO -DateTimeOriginal -ImageDescription -Make -Software -Flash -ExposureProgram -MeteringMode -WhiteBalance -GPSLatitude -GPSLatitudeRef -GPSLongitude -GPSLongitudeRef -Orientation
as numeric values, but -ExposureTime -LensID
as the standard string. How can I do that and have JSON output as result? Is that possible?
Use the # version of the -n (--printConv) option (https://exiftool.org/exiftool_pod.html#n---printConv) to extract specific tags as their raw values
-Model -FocalLength -FNumber -ISO -ExposureTime# -LensID# ...
Cool. Many thx. Exactly what I want. Haven't found that on a fast search in the documentation.