exiftool-vendored 29.3.0 → 30.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/CLAUDE.md +67 -0
  3. package/README.md +30 -1
  4. package/RELEASE.md +29 -34
  5. package/dist/Array.d.ts +2 -2
  6. package/dist/Array.js.map +1 -1
  7. package/dist/BinaryToBufferTask.js +1 -1
  8. package/dist/BinaryToBufferTask.js.map +1 -1
  9. package/dist/CoordinateParser.js +9 -0
  10. package/dist/CoordinateParser.js.map +1 -1
  11. package/dist/DateTime.js +1 -1
  12. package/dist/DateTime.js.map +1 -1
  13. package/dist/ExifDate.d.ts +47 -7
  14. package/dist/ExifDate.js +60 -1
  15. package/dist/ExifDate.js.map +1 -1
  16. package/dist/ExifDateTime.js +5 -1
  17. package/dist/ExifDateTime.js.map +1 -1
  18. package/dist/ExifTool.d.ts +9 -23
  19. package/dist/ExifTool.js +16 -1
  20. package/dist/ExifTool.js.map +1 -1
  21. package/dist/ExifToolVendoredTags.d.ts +15 -6
  22. package/dist/ExifToolVendoredTags.js +2 -15
  23. package/dist/ExifToolVendoredTags.js.map +1 -1
  24. package/dist/ExiftoolPath.js +5 -5
  25. package/dist/ExiftoolPath.js.map +1 -1
  26. package/dist/GPS.d.ts +3 -1
  27. package/dist/GPS.js +4 -15
  28. package/dist/GPS.js.map +1 -1
  29. package/dist/GeolocationTags.d.ts +4 -6
  30. package/dist/GeolocationTags.js +4 -22
  31. package/dist/GeolocationTags.js.map +1 -1
  32. package/dist/ICCProfileTags.d.ts +3 -0
  33. package/dist/ICCProfileTags.js +3 -0
  34. package/dist/ICCProfileTags.js.map +1 -1
  35. package/dist/IPTCApplicationRecordTags.d.ts +3 -0
  36. package/dist/IPTCApplicationRecordTags.js +3 -0
  37. package/dist/IPTCApplicationRecordTags.js.map +1 -1
  38. package/dist/ImageDataHashTag.d.ts +3 -0
  39. package/dist/ImageDataHashTag.js +3 -0
  40. package/dist/ImageDataHashTag.js.map +1 -1
  41. package/dist/JSON.d.ts +4 -0
  42. package/dist/JSON.js +7 -2
  43. package/dist/JSON.js.map +1 -1
  44. package/dist/MWGTags.d.ts +5 -0
  45. package/dist/MWGTags.js +4 -0
  46. package/dist/MWGTags.js.map +1 -1
  47. package/dist/Maybe.d.ts +4 -3
  48. package/dist/Maybe.js +1 -1
  49. package/dist/Maybe.js.map +1 -1
  50. package/dist/Object.d.ts +8 -2
  51. package/dist/Object.js +13 -13
  52. package/dist/Object.js.map +1 -1
  53. package/dist/RawTags.d.ts +1 -4
  54. package/dist/ReadTask.js +12 -5
  55. package/dist/ReadTask.js.map +1 -1
  56. package/dist/StrEnum.d.ts +35 -0
  57. package/dist/StrEnum.js +75 -0
  58. package/dist/StrEnum.js.map +1 -0
  59. package/dist/String.js +1 -6
  60. package/dist/String.js.map +1 -1
  61. package/dist/Tags.d.ts +223 -181
  62. package/dist/Tags.js +31 -0
  63. package/dist/Tags.js.map +1 -1
  64. package/dist/TimeParsing.js +1 -1
  65. package/dist/TimeParsing.js.map +1 -1
  66. package/dist/Timezones.d.ts +11 -0
  67. package/dist/Timezones.js +54 -23
  68. package/dist/Timezones.js.map +1 -1
  69. package/dist/WriteTags.d.ts +18 -2
  70. package/eslint.config.mjs +37 -18
  71. package/package.json +31 -18
  72. package/dist/ExifToolTags.d.ts +0 -7
  73. package/dist/ExifToolTags.js +0 -19
  74. package/dist/ExifToolTags.js.map +0 -1
  75. package/dist/FileTags.d.ts +0 -7
  76. package/dist/FileTags.js +0 -41
  77. package/dist/FileTags.js.map +0 -1
package/dist/Tags.d.ts CHANGED
@@ -10,6 +10,7 @@ import { ImageDataHashTag } from "./ImageDataHashTag";
10
10
  import { IPTCApplicationRecordTags } from "./IPTCApplicationRecordTags";
11
11
  import { MWGCollectionsTags, MWGKeywordTags } from "./MWGTags";
12
12
  import { ResourceEvent } from "./ResourceEvent";
13
+ import { StrEnum, StrEnumKeys } from "./StrEnum";
13
14
  import { Struct } from "./Struct";
14
15
  import { Version } from "./Version";
15
16
  /**
@@ -18,13 +19,15 @@ import { Version } from "./Version";
18
19
  export interface ExifToolTags {
19
20
  /** ☆☆☆☆ ✔ Example: "File is empty" */
20
21
  Error?: string;
21
- /** ★★★★ ✔ Example: 13.25 */
22
- ExifToolVersion?: number;
22
+ /** ★★★★ ✔ Example: "13.30" */
23
+ ExifToolVersion?: string;
23
24
  /** ☆☆☆☆ Example: "path/to/file.jpg" */
24
25
  SourceFile?: string;
25
26
  /** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
26
27
  Warning?: string;
27
28
  }
29
+ export declare const ExifToolTagsNames: StrEnum<"Error" | "ExifToolVersion" | "SourceFile" | "Warning">;
30
+ export type ExifToolTag = StrEnumKeys<typeof ExifToolTagsNames>;
28
31
  /**
29
32
  * These tags are not metadata fields, but are intrinsic to the content of a
30
33
  * given file. ExifTool can't write to many of these tags.
@@ -44,15 +47,15 @@ export interface FileTags {
44
47
  EncodingProcess?: string;
45
48
  /** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
46
49
  ExifByteOrder?: string;
47
- /** ★★★★ ✔ Example: "2025:03:11 14:33:16-07:00" */
50
+ /** ★★★★ ✔ Example: "2025:05:22 21:23:30Z" */
48
51
  FileAccessDate?: ExifDateTime | string;
49
52
  /** ☆☆☆☆ Example: */
50
53
  FileCreateDate?: ExifDateTime | string;
51
- /** ★★★★ ✔ Example: "2025:03:07 18:53:49-08:00" */
54
+ /** ★★★★ ✔ Example: "2025:05:22 05:00:38Z" */
52
55
  FileInodeChangeDate?: ExifDateTime | string;
53
- /** ★★★★ ✔ Example: "2024:06:15 18:39:22-07:00" */
56
+ /** ★★★★ ✔ Example: "2024:06:16 01:39:22Z" */
54
57
  FileModifyDate?: ExifDateTime | string;
55
- /** ★★★★ ✔ Example: "utc+8_oly.jpg" */
58
+ /** ★★★★ ✔ Example: "truncated.mp4" */
56
59
  FileName?: string;
57
60
  /** ★★★★ ✔ Example: "-rwxrwxr-x" */
58
61
  FilePermissions?: string;
@@ -83,99 +86,8 @@ export interface FileTags {
83
86
  /** ★★★★ ✔ Example: "YCbCr4:4:4 (1 1)" */
84
87
  YCbCrSubSampling?: string;
85
88
  }
86
- /**
87
- * These are tags are derived from the values of one or more other tags.
88
- * Only a few are writable directly.
89
- * @see https://exiftool.org/TagNames/Composite.html
90
- */
91
- export interface CompositeTags {
92
- /** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
93
- AdvancedSceneMode?: string;
94
- /** ★★★★ ✔ Example: 90 */
95
- Aperture?: number;
96
- /** ★☆☆☆ ✔ Example: "On" */
97
- AutoFocus?: string;
98
- /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
99
- AvgBitrate?: string;
100
- /** ★★☆☆ ✔ Example: 46 */
101
- BlueBalance?: number;
102
- /** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
103
- CFAPattern?: string;
104
- /** ★★★★ ✔ Example: "1.030 mm" */
105
- CircleOfConfusion?: string;
106
- /** ☆☆☆☆ ✔ Example: 0 */
107
- ConditionalFEC?: number;
108
- /** ☆☆☆☆ ✔ Example: "On" */
109
- ContrastDetectAF?: string;
110
- /** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
111
- DigitalCreationDateTime?: ExifDateTime | string;
112
- /** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
113
- DOF?: string;
114
- /** ★★☆☆ ✔ Example: "Unknown (3152)" */
115
- DriveMode?: string;
116
- /** ☆☆☆☆ ✔ Example: "Not attached" */
117
- ExtenderStatus?: string;
118
- /** ☆☆☆☆ ✔ Example: "Optional,TTL" */
119
- FlashType?: string;
120
- /** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
121
- FocalLength35efl?: string;
122
- /** ★★★★ ✔ Example: "97.7 deg" */
123
- FOV?: string;
124
- /** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
125
- GPSDateTime?: ExifDateTime | string;
126
- /** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
127
- GPSPosition?: string;
128
- /** ★★★★ ✔ Example: "Inf m" */
129
- HyperfocalDistance?: string;
130
- /** ★★★★ ✔ Example: "8x8" */
131
- ImageSize?: string;
132
- /** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
133
- Lens?: string;
134
- /** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
135
- Lens35efl?: string;
136
- /** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
137
- LensID?: string;
138
- /** ★★★★ ✔ Example: 9.9 */
139
- LightValue?: number;
140
- /** ★★★★ ✔ Example: 9.5 */
141
- Megapixels?: number;
142
- /** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
143
- OriginalDecisionData?: BinaryField | string;
144
- /** ☆☆☆☆ Example: "9.9 um" */
145
- PeakSpectralSensitivity?: string;
146
- /** ☆☆☆☆ ✔ Example: "On (73-point)" */
147
- PhaseDetectAF?: string;
148
- /** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
149
- PreviewImage?: BinaryField;
150
- /** ★★☆☆ ✔ Example: 38.625 */
151
- RedBalance?: number;
152
- /** ☆☆☆☆ ✔ Example: "On" */
153
- RedEyeReduction?: string;
154
- /** ☆☆☆☆ Example: 11.2 */
155
- RicohPitch?: number;
156
- /** ☆☆☆☆ Example: 1.59 */
157
- RicohRoll?: number;
158
- /** ★☆☆☆ ✔ Example: "Unknown (0)" */
159
- Rotation?: number;
160
- /** ☆☆☆☆ ✔ Example: "9:30:01" */
161
- RunTimeSincePowerUp?: string;
162
- /** ★★★★ ✔ Example: 9.9 */
163
- ScaleFactor35efl?: number;
164
- /** ★★☆☆ ✔ Example: "Unknown (83)" */
165
- ShootingMode?: string;
166
- /** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
167
- ShutterCurtainHack?: string;
168
- /** ★★★★ ✔ Example: "inf" */
169
- ShutterSpeed?: string;
170
- /** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
171
- SubSecCreateDate?: ExifDateTime | string;
172
- /** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
173
- SubSecDateTimeOriginal?: ExifDateTime | string;
174
- /** ☆☆☆☆ Example: */
175
- SubSecMediaCreateDate?: ExifDateTime | string;
176
- /** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
177
- SubSecModifyDate?: ExifDateTime | string;
178
- }
89
+ export declare const FileTagsNames: StrEnum<"BitsPerSample" | "BMPVersion" | "ColorComponents" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageHeight" | "ImageWidth" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "YCbCrSubSampling">;
90
+ export type FileTag = StrEnumKeys<typeof FileTagsNames>;
179
91
  export interface APPTags {
180
92
  /** ☆☆☆☆ Example: "59 128 128" */
181
93
  AboveColor?: string;
@@ -325,6 +237,10 @@ export interface APPTags {
325
237
  GSd?: number;
326
238
  /** ☆☆☆☆ Example: 4 */
327
239
  GSD?: number;
240
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1458 bytes, use -b option to extract)" */
241
+ HDRGainCurve?: BinaryField | string;
242
+ /** ☆☆☆☆ ✔ Example: 377 */
243
+ HDRGainCurveSize?: number;
328
244
  /** ☆☆☆☆ ✔ Example: "PDR-M60" */
329
245
  ID?: string;
330
246
  /** ☆☆☆☆ Example: "7.4 C" */
@@ -397,7 +313,7 @@ export interface APPTags {
397
313
  R5100?: number;
398
314
  /** ☆☆☆☆ ✔ Example: "4_1SEC" */
399
315
  Rate?: string;
400
- /** ☆☆☆☆ Example: "(Binary data 153804 bytes, use -b option to extract)" */
316
+ /** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
401
317
  RawThermalImage?: BinaryField | string;
402
318
  /** ☆☆☆☆ Example: 90 */
403
319
  RawThermalImageHeight?: number;
@@ -470,11 +386,108 @@ export interface APPTags {
470
386
  /** ☆☆☆☆ Example: 9 */
471
387
  ZoomPos?: number;
472
388
  }
389
+ export declare const APPTagsNames: StrEnum<"AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "HDRGainCurve" | "HDRGainCurveSize" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos">;
390
+ export type APPTag = StrEnumKeys<typeof APPTagsNames>;
391
+ /**
392
+ * These are tags are derived from the values of one or more other tags.
393
+ * Only a few are writable directly.
394
+ * @see https://exiftool.org/TagNames/Composite.html
395
+ */
396
+ export interface CompositeTags {
397
+ /** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
398
+ AdvancedSceneMode?: string;
399
+ /** ★★★★ ✔ Example: 90 */
400
+ Aperture?: number;
401
+ /** ★☆☆☆ ✔ Example: "On" */
402
+ AutoFocus?: string;
403
+ /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
404
+ AvgBitrate?: string;
405
+ /** ★★☆☆ ✔ Example: 46 */
406
+ BlueBalance?: number;
407
+ /** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
408
+ CFAPattern?: string;
409
+ /** ★★★★ ✔ Example: "1.030 mm" */
410
+ CircleOfConfusion?: string;
411
+ /** ☆☆☆☆ ✔ Example: 0 */
412
+ ConditionalFEC?: number;
413
+ /** ☆☆☆☆ ✔ Example: "On" */
414
+ ContrastDetectAF?: string;
415
+ /** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
416
+ DigitalCreationDateTime?: ExifDateTime | string;
417
+ /** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
418
+ DOF?: string;
419
+ /** ★★☆☆ ✔ Example: "Unknown (3152)" */
420
+ DriveMode?: string;
421
+ /** ☆☆☆☆ ✔ Example: "Not attached" */
422
+ ExtenderStatus?: string;
423
+ /** ☆☆☆☆ ✔ Example: "Optional,TTL" */
424
+ FlashType?: string;
425
+ /** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
426
+ FocalLength35efl?: string;
427
+ /** ★★★★ ✔ Example: "97.7 deg" */
428
+ FOV?: string;
429
+ /** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
430
+ GPSDateTime?: ExifDateTime | string;
431
+ /** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
432
+ GPSPosition?: string;
433
+ /** ★★★★ ✔ Example: "Inf m" */
434
+ HyperfocalDistance?: string;
435
+ /** ★★★★ ✔ Example: "8x8" */
436
+ ImageSize?: string;
437
+ /** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
438
+ Lens?: string;
439
+ /** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
440
+ Lens35efl?: string;
441
+ /** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
442
+ LensID?: string;
443
+ /** ★★★★ ✔ Example: 9.9 */
444
+ LightValue?: number;
445
+ /** ★★★★ ✔ Example: 9.5 */
446
+ Megapixels?: number;
447
+ /** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
448
+ OriginalDecisionData?: BinaryField | string;
449
+ /** ☆☆☆☆ Example: "9.9 um" */
450
+ PeakSpectralSensitivity?: string;
451
+ /** ☆☆☆☆ ✔ Example: "On (73-point)" */
452
+ PhaseDetectAF?: string;
453
+ /** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
454
+ PreviewImage?: BinaryField;
455
+ /** ★★☆☆ ✔ Example: 38.625 */
456
+ RedBalance?: number;
457
+ /** ☆☆☆☆ ✔ Example: "On" */
458
+ RedEyeReduction?: string;
459
+ /** ☆☆☆☆ Example: 11.2 */
460
+ RicohPitch?: number;
461
+ /** ☆☆☆☆ Example: 1.59 */
462
+ RicohRoll?: number;
463
+ /** ★☆☆☆ ✔ Example: "Unknown (0)" */
464
+ Rotation?: number;
465
+ /** ☆☆☆☆ ✔ Example: "9:30:01" */
466
+ RunTimeSincePowerUp?: string;
467
+ /** ★★★★ ✔ Example: 9.9 */
468
+ ScaleFactor35efl?: number;
469
+ /** ★★☆☆ ✔ Example: "Unknown (83)" */
470
+ ShootingMode?: string;
471
+ /** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
472
+ ShutterCurtainHack?: string;
473
+ /** ★★★★ ✔ Example: "inf" */
474
+ ShutterSpeed?: string;
475
+ /** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
476
+ SubSecCreateDate?: ExifDateTime | string;
477
+ /** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
478
+ SubSecDateTimeOriginal?: ExifDateTime | string;
479
+ /** ☆☆☆☆ Example: */
480
+ SubSecMediaCreateDate?: ExifDateTime | string;
481
+ /** ★☆☆☆ ✔ Example: "2025:04:28 16:06:17.88+01:00" */
482
+ SubSecModifyDate?: ExifDateTime | string;
483
+ }
484
+ export declare const CompositeTagsNames: StrEnum<"AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate">;
485
+ export type CompositeTag = StrEnumKeys<typeof CompositeTagsNames>;
473
486
  /**
474
487
  * @see https://exiftool.org/TagNames/FlashPix.html
475
488
  */
476
489
  export interface FlashPixTags {
477
- /** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
490
+ /** ☆☆☆☆ Example: "(Binary data 18 bytes, use -b option to extract)" */
478
491
  AudioStream?: BinaryField | string;
479
492
  /** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
480
493
  CodePage?: string;
@@ -492,15 +505,13 @@ export interface FlashPixTags {
492
505
  ExtensionName?: string;
493
506
  /** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
494
507
  ExtensionPersistence?: string;
495
- /** ☆☆☆☆ ✔ Example: "(Binary data 57881 bytes, use -b option to extract)" */
508
+ /** ☆☆☆☆ ✔ Example: "(Binary data 46285 bytes, use -b option to extract)" */
496
509
  ScreenNail?: BinaryField | string;
497
510
  /** ☆☆☆☆ ✔ Example: 1 */
498
511
  UsedExtensionNumbers?: number;
499
512
  }
500
- export interface JPEGTags {
501
- /** ☆☆☆☆ Example: "(Binary data 1458 bytes, use -b option to extract)" */
502
- HDRGainCurve?: BinaryField | string;
503
- }
513
+ export declare const FlashPixTagsNames: StrEnum<"AudioStream" | "CodePage" | "CreatingApplication" | "ExtensionClassID" | "ExtensionCreateDate" | "ExtensionDescription" | "ExtensionModifyDate" | "ExtensionName" | "ExtensionPersistence" | "ScreenNail" | "UsedExtensionNumbers">;
514
+ export type FlashPixTag = StrEnumKeys<typeof FlashPixTagsNames>;
504
515
  export interface JSONTags {
505
516
  /** ☆☆☆☆ Example: 0 */
506
517
  AIScene?: number;
@@ -515,6 +526,34 @@ export interface JSONTags {
515
526
  /** ☆☆☆☆ Example: 1 */
516
527
  ZoomMultiple?: number;
517
528
  }
529
+ export declare const JSONTagsNames: StrEnum<"AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "ZoomMultiple">;
530
+ export type JSONTag = StrEnumKeys<typeof JSONTagsNames>;
531
+ export interface MPFTags {
532
+ /** ★★☆☆ ✔ Example: 9697 */
533
+ DependentImage1EntryNumber?: number;
534
+ /** ★★☆☆ ✔ Example: 960 */
535
+ DependentImage2EntryNumber?: number;
536
+ /** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
537
+ ImageUIDList?: BinaryField | string;
538
+ /** ★★☆☆ ✔ Example: "0100" */
539
+ MPFVersion?: string;
540
+ /** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
541
+ MPImageFlags?: string;
542
+ /** ★★☆☆ ✔ Example: "Unknown (4)" */
543
+ MPImageFormat?: string;
544
+ /** ★★☆☆ ✔ Example: 999325 */
545
+ MPImageLength?: number;
546
+ /** ★★☆☆ ✔ Example: 9999872 */
547
+ MPImageStart?: number;
548
+ /** ★★☆☆ ✔ Example: "Undefined" */
549
+ MPImageType?: string;
550
+ /** ★★☆☆ ✔ Example: 3 */
551
+ NumberOfImages?: number;
552
+ /** ☆☆☆☆ ✔ Example: 1 */
553
+ TotalFrames?: number;
554
+ }
555
+ export declare const MPFTagsNames: StrEnum<"DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames">;
556
+ export type MPFTag = StrEnumKeys<typeof MPFTagsNames>;
518
557
  /**
519
558
  * @see https://exiftool.org/TagNames/EXIF.html
520
559
  */
@@ -562,7 +601,7 @@ export interface EXIFTags {
562
601
  /** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
563
602
  Copyright?: string;
564
603
  /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
565
- CreateDate?: ExifDateTime | string;
604
+ CreateDate?: ExifDateTime | ExifDate | string | number;
566
605
  /** ★★★★ ✔ Example: "Unknown (Custom process)" */
567
606
  CustomRendered?: string;
568
607
  /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
@@ -695,7 +734,7 @@ export interface EXIFTags {
695
734
  ISO?: number;
696
735
  /** ☆☆☆☆ ✔ Example: 80 */
697
736
  ISOSpeed?: number;
698
- /** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
737
+ /** ☆☆☆☆ ✔ Example: "(Binary data 532480 bytes, use -b option to extract)" */
699
738
  JpgFromRaw?: BinaryField;
700
739
  /** ☆☆☆☆ ✔ Example: 845574 */
701
740
  JpgFromRawLength?: number;
@@ -904,30 +943,8 @@ export interface EXIFTags {
904
943
  /** ★★★★ ✔ Example: 99 */
905
944
  YResolution?: number;
906
945
  }
907
- export interface MPFTags {
908
- /** ★★☆☆ Example: 9697 */
909
- DependentImage1EntryNumber?: number;
910
- /** ★★☆☆ ✔ Example: 960 */
911
- DependentImage2EntryNumber?: number;
912
- /** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
913
- ImageUIDList?: BinaryField | string;
914
- /** ★★☆☆ ✔ Example: "0100" */
915
- MPFVersion?: string;
916
- /** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
917
- MPImageFlags?: string;
918
- /** ★★☆☆ ✔ Example: "Unknown (4)" */
919
- MPImageFormat?: string;
920
- /** ★★☆☆ ✔ Example: 999325 */
921
- MPImageLength?: number;
922
- /** ★★☆☆ ✔ Example: 9999872 */
923
- MPImageStart?: number;
924
- /** ★★☆☆ ✔ Example: "Undefined" */
925
- MPImageType?: string;
926
- /** ★★☆☆ ✔ Example: 3 */
927
- NumberOfImages?: number;
928
- /** ☆☆☆☆ ✔ Example: 1 */
929
- TotalFrames?: number;
930
- }
946
+ export declare const EXIFTagsNames: StrEnum<"Acceleration" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "BaselineExposure" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ColorSpace" | "CompositeImage" | "CompressedBitsPerPixel" | "Contrast" | "Copyright" | "CreateDate" | "CustomRendered" | "DateTimeOriginal" | "DefaultCropOrigin" | "DefaultCropSize" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "ExposureTime" | "FileSource" | "Flash" | "FlashEnergy" | "FNumber" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "Gamma" | "GPSAltitude" | "GPSAltitudeRef" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitude" | "GPSDestLatitudeRef" | "GPSDestLongitude" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSDOP" | "GPSHPositioningError" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSSpeed" | "GPSSpeedRef" | "GPSStatus" | "GPSTimeStamp" | "GPSVersionID" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageTitle" | "InteropIndex" | "InteropVersion" | "ISO" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LensModel" | "LensSerialNumber" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "Make" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model" | "Model2" | "ModifyDate" | "Noise" | "NoiseProfile" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "Orientation" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewDateTime" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "ResolutionUnit" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "Sharpness" | "ShutterSpeedValue" | "Software" | "SonyRawFileType" | "SonyToneCurve" | "SpatialFrequencyResponse" | "SRawType" | "StandardOutputSensitivity" | "StripByteCounts" | "StripOffsets" | "SubfileType" | "SubjectArea" | "SubjectDistance" | "SubjectDistanceRange" | "SubjectLocation" | "SubSecTime" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "ThumbnailImage" | "ThumbnailLength" | "ThumbnailOffset" | "ThumbnailTIFF" | "TileByteCounts" | "TileLength" | "TileOffsets" | "TileWidth" | "TimeZoneOffset" | "TransferFunction" | "UniqueCameraModel" | "UserComment" | "WaterDepth" | "WhiteBalance" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "XResolution" | "YCbCrCoefficients" | "YCbCrPositioning" | "YResolution">;
947
+ export type EXIFTag = StrEnumKeys<typeof EXIFTagsNames>;
931
948
  export interface MetaTags {
932
949
  /** ☆☆☆☆ Example: 1 */
933
950
  BorderID?: number;
@@ -966,12 +983,16 @@ export interface MetaTags {
966
983
  /** ☆☆☆☆ Example: 3 */
967
984
  WatermarkType?: number;
968
985
  }
986
+ export declare const MetaTagsNames: StrEnum<"BorderID" | "BorderLocation" | "BorderName" | "BordersVersion" | "BorderType" | "CameraOwner" | "CaptureConditionsPAR" | "DigitalEffectsName" | "DigitalEffectsType" | "DigitalEffectsVersion" | "EditTagArray" | "FilmGencode" | "FilmProductCode" | "FilmSize" | "ImageSourceEK" | "MetadataNumber" | "ModelAndVersion" | "WatermarkType">;
987
+ export type MetaTag = StrEnumKeys<typeof MetaTagsNames>;
969
988
  export interface PanasonicRawTags {
970
989
  /** ☆☆☆☆ ✔ Example: 1 */
971
990
  DistortionScale?: number;
972
991
  /** ☆☆☆☆ ✔ Example: 7 */
973
992
  NumWBEntries?: number;
974
993
  }
994
+ export declare const PanasonicRawTagsNames: StrEnum<"DistortionScale" | "NumWBEntries">;
995
+ export type PanasonicRawTag = StrEnumKeys<typeof PanasonicRawTagsNames>;
975
996
  /**
976
997
  * @see https://exiftool.org/TagNames/Photoshop.html
977
998
  */
@@ -1011,10 +1032,14 @@ export interface PhotoshopTags {
1011
1032
  /** ☆☆☆☆ ✔ Example: "Adobe Photoshop" */
1012
1033
  WriterName?: string;
1013
1034
  }
1035
+ export declare const PhotoshopTagsNames: StrEnum<"CopyrightFlag" | "DisplayedUnitsX" | "DisplayedUnitsY" | "GlobalAltitude" | "GlobalAngle" | "HasRealMergedData" | "IPTCDigest" | "NumSlices" | "PhotoshopFormat" | "PhotoshopQuality" | "PhotoshopThumbnail" | "PrintPosition" | "PrintScale" | "PrintStyle" | "ReaderName" | "SlicesGroupName" | "WriterName">;
1036
+ export type PhotoshopTag = StrEnumKeys<typeof PhotoshopTagsNames>;
1014
1037
  export interface PrintIMTags {
1015
1038
  /** ★★★☆ ✔ Example: "0300" */
1016
1039
  PrintIMVersion?: string;
1017
1040
  }
1041
+ export declare const PrintIMTagsNames: StrEnum<"PrintIMVersion">;
1042
+ export type PrintIMTag = StrEnumKeys<typeof PrintIMTagsNames>;
1018
1043
  export interface QuickTimeTags {
1019
1044
  /** ☆☆☆☆ ✔ Example: 60 */
1020
1045
  AndroidCaptureFPS?: number;
@@ -1163,7 +1188,7 @@ export interface QuickTimeTags {
1163
1188
  /** ☆☆☆☆ ✔ Example: 10 */
1164
1189
  TextSize?: number;
1165
1190
  /** ☆☆☆☆ ✔ Example: 3 */
1166
- TimeCode?: number;
1191
+ TimecodeTrack?: number;
1167
1192
  /** ☆☆☆☆ ✔ Example: 90000 */
1168
1193
  TimeScale?: number;
1169
1194
  /** ☆☆☆☆ ✔ Example: "2023:06:11 13:30:35" */
@@ -1189,6 +1214,8 @@ export interface QuickTimeTags {
1189
1214
  /** ☆☆☆☆ ✔ Example: "Limited" */
1190
1215
  VideoFullRangeFlag?: string;
1191
1216
  }
1217
+ export declare const QuickTimeTagsNames: StrEnum<"AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "Balance" | "BitDepth" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "Duration" | "EncodedPixelsDimensions" | "FontName" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFrameRate" | "VideoFullRangeFlag">;
1218
+ export type QuickTimeTag = StrEnumKeys<typeof QuickTimeTagsNames>;
1192
1219
  export interface RAFTags {
1193
1220
  /** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.000….001464" */
1194
1221
  ChromaticAberrationParams?: string;
@@ -1215,6 +1242,8 @@ export interface RAFTags {
1215
1242
  /** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
1216
1243
  XTransLayout?: string;
1217
1244
  }
1245
+ export declare const RAFTagsNames: StrEnum<"ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "VignettingParams" | "XTransLayout">;
1246
+ export type RAFTag = StrEnumKeys<typeof RAFTagsNames>;
1218
1247
  export interface RIFFTags {
1219
1248
  /** ☆☆☆☆ ✔ Example: "" */
1220
1249
  AudioCodec?: string;
@@ -1241,6 +1270,8 @@ export interface RIFFTags {
1241
1270
  /** ☆☆☆☆ ✔ Example: 388 */
1242
1271
  VideoFrameCount?: number;
1243
1272
  }
1273
+ export declare const RIFFTagsNames: StrEnum<"AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "FrameCount" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "VideoCodec" | "VideoFrameCount">;
1274
+ export type RIFFTag = StrEnumKeys<typeof RIFFTagsNames>;
1244
1275
  /**
1245
1276
  * @see https://exiftool.org/TagNames/IPTC.html
1246
1277
  */
@@ -1308,10 +1339,14 @@ export interface IPTCTags {
1308
1339
  /** ☆☆☆☆ ✔ Example: "1 (most urgent)" */
1309
1340
  Urgency?: string;
1310
1341
  }
1342
+ export declare const IPTCTagsNames: StrEnum<"ApplicationRecordVersion" | "ObjectName" | "Urgency" | "Category" | "SupplementalCategories" | "SpecialInstructions" | "OriginatingProgram" | "ProgramVersion" | "City" | "OriginalTransmissionReference" | "Headline" | "Credit" | "Source" | "CopyrightNotice" | "Contact" | "Caption-Abstract" | "Prefs" | "CodedCharacterSet" | "DateSent" | "DateTimeCreated" | "Destination" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeNumber" | "EnvelopePriority" | "EnvelopeRecordVersion" | "FileVersion" | "Keywords" | "ServiceIdentifier" | "TimeCreated" | "TimeSent">;
1343
+ export type IPTCTag = StrEnumKeys<typeof IPTCTagsNames>;
1311
1344
  export interface JFIFTags {
1312
1345
  /** ★★★☆ ✔ Example: 1.02 */
1313
1346
  JFIFVersion?: number;
1314
1347
  }
1348
+ export declare const JFIFTagsNames: StrEnum<"JFIFVersion">;
1349
+ export type JFIFTag = StrEnumKeys<typeof JFIFTagsNames>;
1315
1350
  export interface MakerNotesTags {
1316
1351
  /** ☆☆☆☆ ✔ Example: 2 */
1317
1352
  AccelerationTracking?: number;
@@ -1417,7 +1452,7 @@ export interface MakerNotesTags {
1417
1452
  AEWhiteBalance?: string;
1418
1453
  /** ☆☆☆☆ ✔ Example: 0.5 */
1419
1454
  AEXv?: number;
1420
- /** ☆☆☆☆ ✔ Example: 127 */
1455
+ /** ☆☆☆☆ ✔ Example: 2147483600 */
1421
1456
  AFAccelDecelTracking?: number;
1422
1457
  /** ☆☆☆☆ ✔ Example: "Shutter/AF-On" */
1423
1458
  AFActivation?: string;
@@ -1445,6 +1480,8 @@ export interface MakerNotesTags {
1445
1480
  AFAreaSelectionMethod?: string;
1446
1481
  /** ☆☆☆☆ ✔ Example: "AF area selection button" */
1447
1482
  AFAreaSelectMethod?: string;
1483
+ /** ☆☆☆☆ ✔ Example: "n/a" */
1484
+ AFAreaSize?: string;
1448
1485
  /** ☆☆☆☆ ✔ Example: 996 */
1449
1486
  AFAreaWidth?: number;
1450
1487
  /** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
@@ -1465,7 +1502,7 @@ export interface MakerNotesTags {
1465
1502
  AFButtonPressed?: string;
1466
1503
  /** ☆☆☆☆ ✔ Example: 8 */
1467
1504
  AFConfidence?: number;
1468
- /** ☆☆☆☆ ✔ Example: "Case 11" */
1505
+ /** ☆☆☆☆ ✔ Example: "Case 2147483648" */
1469
1506
  AFConfigTool?: string;
1470
1507
  /** ☆☆☆☆ ✔ Example: "Yes" */
1471
1508
  AFCoordinatesAvailable?: string;
@@ -1487,7 +1524,7 @@ export interface MakerNotesTags {
1487
1524
  AFFineTuneIndex?: string;
1488
1525
  /** ☆☆☆☆ ✔ Example: "Off" */
1489
1526
  AFIlluminator?: string;
1490
- /** ☆☆☆☆ ✔ Example: "0401" */
1527
+ /** ☆☆☆☆ ✔ Example: "0402" */
1491
1528
  AFInfo2Version?: string;
1492
1529
  /** ☆☆☆☆ ✔ Example: "90 ms" */
1493
1530
  AFIntegrationTime?: string;
@@ -1565,13 +1602,13 @@ export interface MakerNotesTags {
1565
1602
  AFPointsSpecial?: number;
1566
1603
  /** ☆☆☆☆ ✔ Example: "Top" */
1567
1604
  AFPointsUsed?: string;
1568
- /** ☆☆☆☆ ✔ Example: 0 */
1605
+ /** ☆☆☆☆ ✔ Example: 2147483600 */
1569
1606
  AFPointSwitching?: number;
1570
1607
  /** ☆☆☆☆ ✔ Example: 903 */
1571
1608
  AFPredictor?: number;
1572
1609
  /** ☆☆☆☆ ✔ Example: "Off" */
1573
1610
  AFTracking?: string;
1574
- /** ☆☆☆☆ ✔ Example: 127 */
1611
+ /** ☆☆☆☆ ✔ Example: 2147483600 */
1575
1612
  AFTrackingSensitivity?: number;
1576
1613
  /** ☆☆☆☆ ✔ Example: "79-point" */
1577
1614
  AFType?: string;
@@ -1621,6 +1658,8 @@ export interface MakerNotesTags {
1621
1658
  ApproximateFNumber?: number;
1622
1659
  /** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
1623
1660
  ArtFilter?: string;
1661
+ /** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter…0; 0; 0" */
1662
+ ArtFilterEffect?: string;
1624
1663
  /** ☆☆☆☆ Example: "Unknown (8305)" */
1625
1664
  ArtMode?: string;
1626
1665
  /** ☆☆☆☆ Example: "0 0 0" */
@@ -1813,6 +1852,12 @@ export interface MakerNotesTags {
1813
1852
  BWFilter?: number;
1814
1853
  /** ☆☆☆☆ ✔ Example: "On" */
1815
1854
  BWMode?: string;
1855
+ /** ☆☆☆☆ Example: "7x7" */
1856
+ CAFGridSize?: string;
1857
+ /** ☆☆☆☆ Example: "" */
1858
+ CAFPointsInFocus?: string;
1859
+ /** ☆☆☆☆ Example: "9,10,11,12,13,16,17,18,19,20,23,24,25,26,27" */
1860
+ CAFPointsSelected?: string;
1816
1861
  /** ☆☆☆☆ Example: "Starting calibration file for SD14F13_Rev3; S/N C75_00001…8:16:34" */
1817
1862
  Calibration?: string;
1818
1863
  /** ☆☆☆☆ Example: "2216/02/28 03:49:48" */
@@ -1881,8 +1926,6 @@ export interface MakerNotesTags {
1881
1926
  ChromaticAberrationSetting?: string;
1882
1927
  /** ☆☆☆☆ Example: "+0.500" */
1883
1928
  ChrominanceNoiseReduction?: string;
1884
- /** ☆☆☆☆ ✔ Example: "San Francisco" */
1885
- City2?: string;
1886
1929
  /** ☆☆☆☆ ✔ Example: 4 */
1887
1930
  Clarity?: number;
1888
1931
  /** ☆☆☆☆ Example: "Off" */
@@ -1931,7 +1974,7 @@ export interface MakerNotesTags {
1931
1974
  ColorControl?: string;
1932
1975
  /** ☆☆☆☆ ✔ Example: "Color 0; 0; 29; Strength 0; -4; 3" */
1933
1976
  ColorCreatorEffect?: string;
1934
- /** ☆☆☆☆ ✔ Example: "9 (60D/1100D)" */
1977
+ /** ☆☆☆☆ ✔ Example: "Unknown (65)" */
1935
1978
  ColorDataVersion?: string;
1936
1979
  /** ☆☆☆☆ ✔ Example: "Warm" */
1937
1980
  ColorEffect?: string;
@@ -1975,7 +2018,7 @@ export interface MakerNotesTags {
1975
2018
  ColorTemperatureSetting?: string;
1976
2019
  /** ☆☆☆☆ ✔ Example: 9826 */
1977
2020
  ColorTempFlash?: number;
1978
- /** ☆☆☆☆ ✔ Example: 4607 */
2021
+ /** ☆☆☆☆ ✔ Example: 5892 */
1979
2022
  ColorTempFluorescent?: number;
1980
2023
  /** ☆☆☆☆ ✔ Example: 8001 */
1981
2024
  ColorTempKelvin?: number;
@@ -1983,7 +2026,7 @@ export interface MakerNotesTags {
1983
2026
  ColorTempMeasured?: number;
1984
2027
  /** ☆☆☆☆ ✔ Example: 7830 */
1985
2028
  ColorTempShade?: number;
1986
- /** ☆☆☆☆ ✔ Example: 3212 */
2029
+ /** ☆☆☆☆ ✔ Example: 5892 */
1987
2030
  ColorTempTungsten?: number;
1988
2031
  /** ☆☆☆☆ Example: 5 */
1989
2032
  ColorTint?: number;
@@ -1991,8 +2034,6 @@ export interface MakerNotesTags {
1991
2034
  ColorTone?: string;
1992
2035
  /** ☆☆☆☆ ✔ Example: 0 */
1993
2036
  ColorToneAuto?: number;
1994
- /** ☆☆☆☆ ✔ Example: 0 */
1995
- ColorToneFaithful?: number;
1996
2037
  /** ☆☆☆☆ ✔ Example: 11 */
1997
2038
  ColorToneLandscape?: number;
1998
2039
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -2061,7 +2102,7 @@ export interface MakerNotesTags {
2061
2102
  ContinuousModeDisplay?: string;
2062
2103
  /** ☆☆☆☆ ✔ Example: "On" */
2063
2104
  ContinuousModeLiveView?: string;
2064
- /** ☆☆☆☆ ✔ Example: "Hi 0; Cont 14; Lo 3; Soft 5; Soft LS 3" */
2105
+ /** ☆☆☆☆ ✔ Example: "Hi 15000; Cont 15000; Lo 5000; Soft 8000; Soft LS 3000" */
2065
2106
  ContinuousShootingSpeed?: string;
2066
2107
  /** ☆☆☆☆ ✔ Example: "Disable; 99 shots" */
2067
2108
  ContinuousShotLimit?: string;
@@ -2083,8 +2124,6 @@ export interface MakerNotesTags {
2083
2124
  ContrastLandscape?: number;
2084
2125
  /** ☆☆☆☆ ✔ Example: "Unknown (19)" */
2085
2126
  ContrastMode?: string;
2086
- /** ☆☆☆☆ ✔ Example: 524288 */
2087
- ContrastMonochrome?: number;
2088
2127
  /** ☆☆☆☆ ✔ Example: 0 */
2089
2128
  ContrastNeutral?: number;
2090
2129
  /** ☆☆☆☆ ✔ Example: 9699328 */
@@ -2187,7 +2226,7 @@ export interface MakerNotesTags {
2187
2226
  DateTimeStamp?: string;
2188
2227
  /** ☆☆☆☆ ✔ Example: "2023:10:17 14:59:23" */
2189
2228
  DateTimeUTC?: ExifDateTime | string;
2190
- /** ☆☆☆☆ ✔ Example: "Yes" */
2229
+ /** ★☆☆☆ ✔ Example: "Yes" */
2191
2230
  DaylightSavings?: string;
2192
2231
  /** ☆☆☆☆ Example: "Unknown (27471)" */
2193
2232
  DECPosition?: string;
@@ -2215,10 +2254,6 @@ export interface MakerNotesTags {
2215
2254
  DigitalGain?: number;
2216
2255
  /** ☆☆☆☆ ✔ Example: "Off" */
2217
2256
  DigitalICE?: string;
2218
- /** ☆☆☆☆ ✔ Example: "Standard" */
2219
- DigitalLensOptimizer?: string;
2220
- /** ☆☆☆☆ ✔ Example: "On" */
2221
- DigitalLensOptimizerSetting?: string;
2222
2257
  /** ★★★☆ ✔ Example: "undef.0" */
2223
2258
  DigitalZoom?: string;
2224
2259
  /** ☆☆☆☆ ✔ Example: 897 */
@@ -2251,8 +2286,6 @@ export interface MakerNotesTags {
2251
2286
  DriveSpeed?: string;
2252
2287
  /** ☆☆☆☆ ✔ Example: "100.00.00.00" */
2253
2288
  DSPFirmwareVersion?: string;
2254
- /** ☆☆☆☆ ✔ Example: "Off" */
2255
- DualPixelRaw?: string;
2256
2289
  /** ☆☆☆☆ ✔ Example: "(Binary data 1024 bytes, use -b option to extract)" */
2257
2290
  DustRemovalData?: BinaryField | string;
2258
2291
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -2374,8 +2407,6 @@ export interface MakerNotesTags {
2374
2407
  /** ☆☆☆☆ ✔ Example: 0 */
2375
2408
  ExtenderFirmwareVersion?: number;
2376
2409
  /** ☆☆☆☆ ✔ Example: "" */
2377
- ExtenderModel?: string;
2378
- /** ☆☆☆☆ ✔ Example: "" */
2379
2410
  ExtenderSerialNumber?: string;
2380
2411
  /** ☆☆☆☆ ✔ Example: "On" */
2381
2412
  ExternalFlash?: string;
@@ -2655,13 +2686,13 @@ export interface MakerNotesTags {
2655
2686
  FocusBracket?: number;
2656
2687
  /** ☆☆☆☆ ✔ Example: 0 */
2657
2688
  FocusBracketStepSize?: number;
2658
- /** ★☆☆☆ ✔ Example: "Single" */
2689
+ /** ★★☆☆ ✔ Example: "Single" */
2659
2690
  FocusContinuous?: string;
2660
2691
  /** ☆☆☆☆ ✔ Example: "Enable" */
2661
2692
  FocusDisplayAIServoAndMF?: string;
2662
2693
  /** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
2663
2694
  FocusDistanceRange?: string;
2664
- /** ☆☆☆☆ ✔ Example: "475x476" */
2695
+ /** ☆☆☆☆ ✔ Example: "948x714" */
2665
2696
  FocusFrameSize?: string;
2666
2697
  /** ☆☆☆☆ ✔ Example: "Focus Hold" */
2667
2698
  FocusHoldButton?: string;
@@ -2821,9 +2852,9 @@ export interface MakerNotesTags {
2821
2852
  HDRSetting?: string;
2822
2853
  /** ☆☆☆☆ ✔ Example: "n/a" */
2823
2854
  HDRSmoothing?: string;
2824
- /** ☆☆☆☆ Example: 53248 */
2855
+ /** ☆☆☆☆Example: 53248 */
2825
2856
  HiddenDataLength?: number;
2826
- /** ☆☆☆☆ Example: 7995392 */
2857
+ /** ☆☆☆☆Example: 7995392 */
2827
2858
  HiddenDataOffset?: number;
2828
2859
  /** ☆☆☆☆ ✔ Example: "Off" */
2829
2860
  HighFrameRate?: string;
@@ -3147,7 +3178,7 @@ export interface MakerNotesTags {
3147
3178
  LightValuePeriphery?: number;
3148
3179
  /** ☆☆☆☆ ✔ Example: "No Restrictions" */
3149
3180
  LimitAFAreaModeSelection?: string;
3150
- /** ☆☆☆☆ ✔ Example: 12735 */
3181
+ /** ☆☆☆☆ ✔ Example: 175 */
3151
3182
  LinearityUpperMargin?: number;
3152
3183
  /** ☆☆☆☆ Example: "Off" */
3153
3184
  LinkAEToAFPoint?: string;
@@ -3311,7 +3342,7 @@ export interface MakerNotesTags {
3311
3342
  MiniatureFilterParameter?: number;
3312
3343
  /** ☆☆☆☆ ✔ Example: 0 */
3313
3344
  MiniatureFilterPosition?: number;
3314
- /** ☆☆☆☆ ✔ Example: 200 */
3345
+ /** ☆☆☆☆ ✔ Example: 80 */
3315
3346
  MinimumISO?: number;
3316
3347
  /** ☆☆☆☆ Example: "2004:07:05" */
3317
3348
  MinoltaDate?: ExifDate | string;
@@ -3366,6 +3397,8 @@ export interface MakerNotesTags {
3366
3397
  /** ☆☆☆☆ ✔ Example: "(none)" */
3367
3398
  MonochromeColor?: string;
3368
3399
  /** ☆☆☆☆ ✔ Example: "Off" */
3400
+ MonochromeFilterEffect?: string;
3401
+ /** ☆☆☆☆ ✔ Example: "Off" */
3369
3402
  MonochromeGrainEffect?: string;
3370
3403
  /** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
3371
3404
  MonochromeProfileSettings?: string;
@@ -3381,7 +3414,7 @@ export interface MakerNotesTags {
3381
3414
  MotionSensitivity?: number;
3382
3415
  /** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
3383
3416
  MovieAELockButtonAssignment?: string;
3384
- /** ☆☆☆☆ ✔ Example: "Single" */
3417
+ /** ☆☆☆☆ ✔ Example: "Wide (S)" */
3385
3418
  MovieAFAreaMode?: string;
3386
3419
  /** ☆☆☆☆ ✔ Example: "4 (Normal)" */
3387
3420
  MovieAFTrackingSensitivity?: string;
@@ -3443,7 +3476,7 @@ export interface MakerNotesTags {
3443
3476
  MultiFrameNoiseReduction?: string;
3444
3477
  /** ☆☆☆☆ ✔ Example: "Normal" */
3445
3478
  MultiFrameNREffect?: string;
3446
- /** ☆☆☆☆ ✔ Example: "On (quick control dial)" */
3479
+ /** ☆☆☆☆ ✔ Example: "Unknown (66)" */
3447
3480
  MultiFunctionLock?: string;
3448
3481
  /** ☆☆☆☆ ✔ Example: "On (2 frames); 1" */
3449
3482
  MultipleExposureMode?: string;
@@ -3465,7 +3498,7 @@ export interface MakerNotesTags {
3465
3498
  NEFBitDepth?: string;
3466
3499
  /** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
3467
3500
  NEFCompression?: string;
3468
- /** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
3501
+ /** ☆☆☆☆ ✔ Example: "(Binary data 46 bytes, use -b option to extract)" */
3469
3502
  NEFLinearizationTable?: BinaryField | string;
3470
3503
  /** ☆☆☆☆ Example: "Off (Auto)" */
3471
3504
  NeutralDensityFilter?: string;
@@ -3493,6 +3526,8 @@ export interface MakerNotesTags {
3493
3526
  NumberOfFocusPoints?: string;
3494
3527
  /** ☆☆☆☆ ✔ Example: 32 */
3495
3528
  NumberOffsets?: number;
3529
+ /** ☆☆☆☆ Example: 49 */
3530
+ NumCAFPoints?: number;
3496
3531
  /** ☆☆☆☆ ✔ Example: 3 */
3497
3532
  NumFaceElements?: number;
3498
3533
  /** ☆☆☆☆ ✔ Example: 65535 */
@@ -3543,7 +3578,7 @@ export interface MakerNotesTags {
3543
3578
  PaintingFilter?: string;
3544
3579
  /** ☆☆☆☆ ✔ Example: "2023:01:19 22:32:42.04" */
3545
3580
  PanasonicDateTime?: ExifDateTime | string;
3546
- /** ☆☆☆☆ ✔ Example: "0421" */
3581
+ /** ☆☆☆☆ ✔ Example: "0425" */
3547
3582
  PanasonicExifVersion?: string;
3548
3583
  /** ☆☆☆☆ ✔ Example: 5584 */
3549
3584
  PanasonicImageHeight?: number;
@@ -3903,8 +3938,6 @@ export interface MakerNotesTags {
3903
3938
  SaturationAdj?: number;
3904
3939
  /** ☆☆☆☆ ✔ Example: 0 */
3905
3940
  SaturationAuto?: number;
3906
- /** ☆☆☆☆ ✔ Example: 655360 */
3907
- SaturationFaithful?: number;
3908
3941
  /** ☆☆☆☆ ✔ Example: 8650752 */
3909
3942
  SaturationLandscape?: number;
3910
3943
  /** ☆☆☆☆ ✔ Example: 6619136 */
@@ -4049,8 +4082,6 @@ export interface MakerNotesTags {
4049
4082
  SharpnessFrequency?: string;
4050
4083
  /** ☆☆☆☆ ✔ Example: 4 */
4051
4084
  SharpnessLandscape?: number;
4052
- /** ☆☆☆☆ ✔ Example: 3 */
4053
- SharpnessMonochrome?: number;
4054
4085
  /** ☆☆☆☆ ✔ Example: 0 */
4055
4086
  SharpnessNeutral?: number;
4056
4087
  /** ☆☆☆☆ ✔ Example: 2752758 */
@@ -4073,7 +4104,7 @@ export interface MakerNotesTags {
4073
4104
  ShortOwnerName?: string;
4074
4105
  /** ☆☆☆☆ ✔ Example: "Enable" */
4075
4106
  ShortReleaseTimeLag?: string;
4076
- /** ☆☆☆☆ ✔ Example: "0809" */
4107
+ /** ☆☆☆☆ ✔ Example: "0811" */
4077
4108
  ShotInfoVersion?: string;
4078
4109
  /** ☆☆☆☆ ✔ Example: 9 */
4079
4110
  ShotNumberSincePowerUp?: number;
@@ -4163,7 +4194,7 @@ export interface MakerNotesTags {
4163
4194
  SonyMaxApertureValue?: number;
4164
4195
  /** ☆☆☆☆ ✔ Example: 34 */
4165
4196
  SonyMinAperture?: number;
4166
- /** ☆☆☆☆ ✔ Example: "ZV-E10" */
4197
+ /** ☆☆☆☆ ✔ Example: "ZV-E10M2" */
4167
4198
  SonyModelID?: string;
4168
4199
  /** ☆☆☆☆ ✔ Example: "Fine" */
4169
4200
  SonyQuality?: string;
@@ -4297,7 +4328,7 @@ export interface MakerNotesTags {
4297
4328
  TimerRecording?: string;
4298
4329
  /** ☆☆☆☆ ✔ Example: "01:48:53.63" */
4299
4330
  TimeSincePowerOn?: ExifTime | string;
4300
- /** ☆☆☆☆ ✔ Example: "2023:10:13 04:33:41" */
4331
+ /** ☆☆☆☆ ✔ Example: "2025:03:24 14:44:20" */
4301
4332
  TimeStamp?: ExifDateTime | string;
4302
4333
  /** ★☆☆☆ ✔ Example: "-09:00" */
4303
4334
  TimeZone?: string;
@@ -4313,7 +4344,7 @@ export interface MakerNotesTags {
4313
4344
  ToneCurve?: string;
4314
4345
  /** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
4315
4346
  ToneCurveMatching?: BinaryField | string;
4316
- /** ☆☆☆☆ ✔ Example: "(Binary data 1505 bytes, use -b option to extract)" */
4347
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
4317
4348
  ToneCurveTable?: BinaryField | string;
4318
4349
  /** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
4319
4350
  ToneLevel?: string;
@@ -4403,7 +4434,7 @@ export interface MakerNotesTags {
4403
4434
  Vignetting?: string;
4404
4435
  /** ☆☆☆☆ ✔ Example: "n/a" */
4405
4436
  VignettingCorrection?: string;
4406
- /** ☆☆☆☆ ✔ Example: "36 -17446 -19682 0 15496 -19605 -10627 -28672 187 27452 -… 99 121" */
4437
+ /** ☆☆☆☆ ✔ Example: "64 224 480 800 1184 1600 2048 2528 3008 3520 3872 4512 56…0 0 0 0" */
4407
4438
  VignettingCorrParams?: string;
4408
4439
  /** ☆☆☆☆ ✔ Example: 97 */
4409
4440
  VignettingCorrVersion?: number;
@@ -4473,7 +4504,7 @@ export interface MakerNotesTags {
4473
4504
  WhiteBalanceSetting?: string;
4474
4505
  /** ☆☆☆☆ ✔ Example: "Auto" */
4475
4506
  WhiteBalanceSetup?: string;
4476
- /** ☆☆☆☆ ✔ Example: "(Binary data 2201 bytes, use -b option to extract)" */
4507
+ /** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
4477
4508
  WhiteBalanceTable?: BinaryField | string;
4478
4509
  /** ☆☆☆☆ ✔ Example: "Auto" */
4479
4510
  WhiteBalanceTemperature?: string;
@@ -4520,6 +4551,8 @@ export interface MakerNotesTags {
4520
4551
  /** ★★☆☆ ✔ Example: 6000 */
4521
4552
  ZoomTargetWidth?: number;
4522
4553
  }
4554
+ export declare const MakerNotesTagsNames: StrEnum<"AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActualCompensation" | "AddAspectRatioInfo" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFAccelDecelTracking" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectionMethod" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPointSwitching" | "AFPredictor" | "AFTracking" | "AFTrackingSensitivity" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImage" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImage" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CLModeShootingSpeed" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorMode" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashShutterSpeed" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneAFPointsUsed" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalNDFilter" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensDriveWhenAFImpossible" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureControl" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PhotoStyle" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RFLensType" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectionMode" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth">;
4555
+ export type MakerNotesTag = StrEnumKeys<typeof MakerNotesTagsNames>;
4523
4556
  /**
4524
4557
  * @see https://exiftool.org/TagNames/XMP.html
4525
4558
  */
@@ -4746,7 +4779,7 @@ export interface XMPTags {
4746
4779
  HasSettings?: boolean;
4747
4780
  /** ☆☆☆☆ ✔ Example: "(Binary data 23388 bytes, use -b option to extract)" */
4748
4781
  HdrPlusMakernote?: BinaryField | string;
4749
- /** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
4782
+ /** ☆☆☆☆ ✔ Example: "(Binary data 53037 bytes, use -b option to extract)" */
4750
4783
  HDRPMakerNote?: BinaryField | string;
4751
4784
  /** ☆☆☆☆ ✔ Example: ["点像F11"] */
4752
4785
  HierarchicalSubject?: string[];
@@ -5010,6 +5043,8 @@ export interface XMPTags {
5010
5043
  SplitToningShadowHue?: number;
5011
5044
  /** ☆☆☆☆ ✔ Example: 0 */
5012
5045
  SplitToningShadowSaturation?: number;
5046
+ /** ☆☆☆☆ ✔ Example: "Washington" */
5047
+ State?: string;
5013
5048
  /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
5014
5049
  StitchingSoftware?: string;
5015
5050
  /** ☆☆☆☆ ✔ Example: 3 */
@@ -5079,6 +5114,8 @@ export interface XMPTags {
5079
5114
  /** ☆☆☆☆ ✔ Example: "XMP toolkit 3.0-28, framework 1.6" */
5080
5115
  XMPToolkit?: string;
5081
5116
  }
5117
+ export declare const XMPTagsNames: StrEnum<"About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CameraUnit" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Comment" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "Country" | "CountryCode" | "CreationTime" | "Creator" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropBottom" | "CropConstrainToWarp" | "CropLeft" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "CropRight" | "CropTop" | "DateAcquired" | "DateCreated" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DerivedFrom" | "Description" | "DisableAutoCreation" | "DocumentID" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Firmware" | "FlashCompensation" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightYawDegree" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "Format" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HdrPlusMakernote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageLength" | "ImageNumber" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InstanceID" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileEnable" | "LensProfileName" | "LensProfileSetup" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "LuminanceSmoothing" | "MakerNote" | "Marked" | "Mask" | "MetadataDate" | "MicroVideo" | "MicroVideoOffset" | "MicroVideoPresentationTimestampUs" | "MicroVideoVersion" | "Mime" | "MobileCountryCode" | "MobileNetworkCode" | "ModificationDate" | "MotionPhoto" | "MotionPhotoPresentationTimestampUs" | "MotionPhotoVersion" | "NativeDigest" | "Near" | "Notes" | "ObjectAreaHeight" | "ObjectAreaWidth" | "ObjectNum" | "ObjectPosX" | "ObjectPosY" | "OriginalCreateDateTime" | "OriginalDocumentID" | "OverrideLookVignette" | "ParametricDarks" | "ParametricHighlights" | "ParametricHighlightSplit" | "ParametricLights" | "ParametricMidtoneSplit" | "ParametricShadows" | "ParametricShadowSplit" | "PersonInImage" | "PerspectiveAspect" | "PerspectiveHorizontal" | "PerspectiveRotate" | "PerspectiveScale" | "PerspectiveUpright" | "PerspectiveVertical" | "PerspectiveX" | "PerspectiveY" | "PhotographicSensitivity" | "PickLabel" | "PipelineVersion" | "PMVersion" | "PortraitVersion" | "PoseHeadingDegrees" | "PosePitchDegrees" | "PoseRollDegrees" | "PostCropVignetteAmount" | "PreservedFileName" | "ProcessVersion" | "Profiles" | "ProgramMode" | "ProjectionType" | "Rating" | "RatingPercent" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionInfo" | "RegionInfoMP" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "State" | "StitchingSoftware" | "StreamType" | "Subject" | "SubsecTime" | "Tag" | "Tagged" | "TagsList" | "Tint" | "Title" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
5118
+ export type XMPTag = StrEnumKeys<typeof XMPTagsNames>;
5082
5119
  /**
5083
5120
  * This is a partial list of fields returned by {@link ExifTool.read}.
5084
5121
  *
@@ -5094,10 +5131,15 @@ export interface XMPTags {
5094
5131
  * - a checkmark if the tag is used by popular devices (like iPhones), and
5095
5132
  * - an example value, JSON stringified.
5096
5133
  *
5097
- * Autogenerated by "npm run mktags" by ExifTool 13.25 on Tue Mar 11 2025.
5098
- * 2761 unique tags were found in 10128 photo and video files.
5134
+ * Autogenerated by "npm run mktags" by ExifTool 13.30 on Thu May 22 2025.
5135
+ * 2767 unique tags were found in 10138 photo and video files.
5099
5136
  *
5100
5137
  * @see https://exiftool.org/TagNames/
5101
5138
  */
5102
- export interface Tags extends APPTags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCApplicationRecordTags, IPTCTags, ImageDataHashTag, JFIFTags, JPEGTags, JSONTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
5139
+ export interface Tags extends APPTags, CompositeTags, EXIFTags, ExifToolTags, ExifToolVendoredTags, FileTags, FlashPixTags, GeolocationTags, ICCProfileTags, IPTCApplicationRecordTags, IPTCTags, ImageDataHashTag, JFIFTags, JSONTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
5103
5140
  }
5141
+ /**
5142
+ * All tag names combined from all interfaces
5143
+ */
5144
+ export declare const TagNames: StrEnum<"zone" | "AboveColor" | "Again" | "AtmosphericTemperature" | "AutoISOMax" | "AutoISOMin" | "AutoRotation" | "B5100" | "BelowColor" | "Bgain" | "BHighLight" | "BHL" | "Blk0" | "Blk1" | "BMean" | "Boff" | "BSd" | "BSD" | "BStrobe" | "CameraModel" | "CameraPartNumber" | "CameraSerialNumber" | "CameraSoftware" | "Case" | "CBal" | "Color" | "COLOR1" | "COLOR2" | "COLOR3" | "COLOR4" | "ColorTransform" | "Compass" | "ContTake" | "CreatorSoftware" | "DateTimeGenerated" | "DCTEncodeVersion" | "DeviceName" | "DiagonalFieldOfView" | "DigitalZoomOn" | "EmbeddedImage" | "EmbeddedImageHeight" | "EmbeddedImageType" | "EmbeddedImageWidth" | "Emissivity" | "EXP1" | "EXP2" | "EXP3" | "ExposRatio" | "Exposure" | "ExposureType" | "FieldOfView" | "FilterModel" | "FilterPartNumber" | "FilterSerialNumber" | "FinalRatio" | "FlashTime" | "FMean" | "Fnumber" | "FocusDistance" | "FocusPos" | "FocusStepCount" | "FrameRate" | "Gain" | "GBgain" | "GBoff" | "GHighLight" | "GHL" | "GMean" | "GPSTrack" | "GPSTrackRef" | "GPSValid" | "GRgain" | "GRoff" | "GSd" | "GSD" | "HDRGainCurve" | "HDRGainCurveSize" | "ID" | "IRWindowTemperature" | "IRWindowTransmission" | "Isotherm1Color" | "Isotherm2Color" | "JPEG1" | "LensPartNumber" | "LensProjection" | "LightS" | "Mean" | "Meas1Label" | "Meas1Params" | "Meas1Type" | "Meas2Label" | "Meas2Params" | "Meas2Type" | "MediaUniqueID" | "MetadataVersion" | "MotorPos" | "Offset" | "OffsetX" | "OffsetY" | "OverflowColor" | "Palette" | "PaletteColors" | "PaletteFileName" | "PaletteMethod" | "PaletteName" | "PaletteStretch" | "Param0" | "PhotoResolution" | "PicLen" | "Protect" | "Protune" | "R5100" | "Rate" | "RawThermalImage" | "RawThermalImageHeight" | "RawThermalImageType" | "RawThermalImageWidth" | "RawValueMedian" | "RawValueRange" | "RawValueRangeMax" | "RawValueRangeMin" | "Real2IR" | "ReflectedApparentTemperature" | "RelativeHumidity" | "Resolution" | "REV" | "Rgain" | "RHighLight" | "RHL" | "RMean" | "Roff" | "RSd" | "RSD" | "RStrobe" | "S0" | "SpotMeter" | "StrobeTime" | "T0" | "TagB" | "TagQ" | "TagR" | "TagS" | "ThmLen" | "UnderflowColor" | "Version" | "YLevel" | "YTarget" | "Zoom" | "ZoomPos" | "AdvancedSceneMode" | "Aperture" | "AutoFocus" | "AvgBitrate" | "BlueBalance" | "CFAPattern" | "CircleOfConfusion" | "ConditionalFEC" | "ContrastDetectAF" | "DigitalCreationDateTime" | "DOF" | "DriveMode" | "ExtenderStatus" | "FlashType" | "FocalLength35efl" | "FOV" | "GPSDateTime" | "GPSPosition" | "HyperfocalDistance" | "ImageSize" | "Lens" | "Lens35efl" | "LensID" | "LightValue" | "Megapixels" | "OriginalDecisionData" | "PeakSpectralSensitivity" | "PhaseDetectAF" | "PreviewImage" | "RedBalance" | "RedEyeReduction" | "RicohPitch" | "RicohRoll" | "Rotation" | "RunTimeSincePowerUp" | "ScaleFactor35efl" | "ShootingMode" | "ShutterCurtainHack" | "ShutterSpeed" | "SubSecCreateDate" | "SubSecDateTimeOriginal" | "SubSecMediaCreateDate" | "SubSecModifyDate" | "Acceleration" | "AntiAliasStrength" | "ApertureValue" | "Artist" | "AsShotNeutral" | "BaselineExposure" | "BlackLevel" | "BlackLevelBlue" | "BlackLevelGreen" | "BlackLevelRed" | "BlackLevelRepeatDim" | "BrightnessValue" | "CameraElevationAngle" | "CFAPlaneColor" | "CFARepeatPatternDim" | "ChromaticAberrationCorrection" | "ColorSpace" | "CompositeImage" | "CompressedBitsPerPixel" | "Contrast" | "Copyright" | "CreateDate" | "CustomRendered" | "DateTimeOriginal" | "DefaultCropOrigin" | "DefaultCropSize" | "DeviceSettingDescription" | "DigitalZoomRatio" | "DNGBackwardVersion" | "DNGVersion" | "DocumentName" | "ExifImageHeight" | "ExifImageWidth" | "ExposureIndex" | "ExposureMode" | "ExposureProgram" | "ExposureTime" | "FileSource" | "Flash" | "FlashEnergy" | "FNumber" | "FocalLength" | "FocalLengthIn35mmFormat" | "FocalPlaneResolutionUnit" | "FocalPlaneXResolution" | "FocalPlaneYResolution" | "GainControl" | "Gamma" | "GPSAltitude" | "GPSAltitudeRef" | "GPSAreaInformation" | "GPSDateStamp" | "GPSDestBearing" | "GPSDestBearingRef" | "GPSDestDistance" | "GPSDestDistanceRef" | "GPSDestLatitude" | "GPSDestLatitudeRef" | "GPSDestLongitude" | "GPSDestLongitudeRef" | "GPSDifferential" | "GPSDOP" | "GPSHPositioningError" | "GPSImgDirection" | "GPSImgDirectionRef" | "GPSLatitude" | "GPSLatitudeRef" | "GPSLongitude" | "GPSLongitudeRef" | "GPSMapDatum" | "GPSMeasureMode" | "GPSProcessingMethod" | "GPSSatellites" | "GPSSpeed" | "GPSSpeedRef" | "GPSStatus" | "GPSTimeStamp" | "GPSVersionID" | "HighISOMultiplierBlue" | "HighISOMultiplierGreen" | "HighISOMultiplierRed" | "HostComputer" | "ImageDescription" | "ImageTitle" | "InteropIndex" | "InteropVersion" | "ISO" | "ISOSpeed" | "JpgFromRaw" | "JpgFromRawLength" | "JpgFromRawStart" | "LensInfo" | "LensMake" | "LensModel" | "LensSerialNumber" | "LightSource" | "LinearityLimitBlue" | "LinearityLimitGreen" | "LinearityLimitRed" | "Make" | "MakerNoteSamsung1a" | "MakerNoteUnknownBinary" | "MakerNoteUnknownText" | "MaxApertureValue" | "MeteringMode" | "Model" | "Model2" | "ModifyDate" | "Noise" | "NoiseProfile" | "NoiseReductionParams" | "OffsetSchema" | "OffsetTime" | "OffsetTimeDigitized" | "OffsetTimeOriginal" | "Orientation" | "OtherImage" | "OtherImageLength" | "OtherImageStart" | "Padding" | "PageName" | "PanasonicRawVersion" | "Photographer" | "PhotometricInterpretation" | "PlanarConfiguration" | "Pressure" | "PreviewDateTime" | "PreviewTIFF" | "PrimaryChromaticities" | "ProcessingSoftware" | "RawDataOffset" | "RawDataUniqueID" | "RawFormat" | "RawImageSegmentation" | "RecommendedExposureIndex" | "ReferenceBlackWhite" | "RelatedImageFileFormat" | "RelatedImageHeight" | "RelatedImageWidth" | "RelatedSoundFile" | "ResolutionUnit" | "RowsPerStrip" | "SamplesPerPixel" | "Saturation" | "SceneCaptureType" | "SceneType" | "SensingMethod" | "SensitivityType" | "Sharpness" | "ShutterSpeedValue" | "Software" | "SonyRawFileType" | "SonyToneCurve" | "SpatialFrequencyResponse" | "SRawType" | "StandardOutputSensitivity" | "StripByteCounts" | "StripOffsets" | "SubfileType" | "SubjectArea" | "SubjectDistance" | "SubjectDistanceRange" | "SubjectLocation" | "SubSecTime" | "SubSecTimeDigitized" | "SubSecTimeOriginal" | "ThumbnailImage" | "ThumbnailLength" | "ThumbnailOffset" | "ThumbnailTIFF" | "TileByteCounts" | "TileLength" | "TileOffsets" | "TileWidth" | "TimeZoneOffset" | "TransferFunction" | "UniqueCameraModel" | "UserComment" | "WaterDepth" | "WhiteBalance" | "WhiteLevel" | "WhitePoint" | "XiaomiModel" | "XPAuthor" | "XPComment" | "XPKeywords" | "XPSubject" | "XPTitle" | "XResolution" | "YCbCrCoefficients" | "YCbCrPositioning" | "YResolution" | "Error" | "ExifToolVersion" | "SourceFile" | "Warning" | "tz" | "tzSource" | "zoneSource" | "errors" | "warnings" | "BitsPerSample" | "BMPVersion" | "ColorComponents" | "CurrentIPTCDigest" | "Directory" | "EncodingProcess" | "ExifByteOrder" | "FileAccessDate" | "FileCreateDate" | "FileInodeChangeDate" | "FileModifyDate" | "FileName" | "FilePermissions" | "FileSize" | "FileType" | "FileTypeExtension" | "ImageDataMD5" | "ImageHeight" | "ImageWidth" | "MIMEType" | "NumColors" | "NumImportantColors" | "PixelsPerMeterX" | "PixelsPerMeterY" | "Planes" | "YCbCrSubSampling" | "AudioStream" | "CodePage" | "CreatingApplication" | "ExtensionClassID" | "ExtensionCreateDate" | "ExtensionDescription" | "ExtensionModifyDate" | "ExtensionName" | "ExtensionPersistence" | "ScreenNail" | "UsedExtensionNumbers" | "GeolocationBearing" | "GeolocationCity" | "GeolocationCountry" | "GeolocationCountryCode" | "GeolocationDistance" | "GeolocationFeatureCode" | "GeolocationFeatureType" | "GeolocationPopulation" | "GeolocationPosition" | "GeolocationRegion" | "GeolocationSubregion" | "GeolocationTimeZone" | "GeolocationWarning" | "ColorSpaceData" | "ConnectionSpaceIlluminant" | "DeviceAttributes" | "DeviceManufacturer" | "DeviceMfgDesc" | "DeviceModel" | "DeviceModelDesc" | "Luminance" | "ProfileDescription" | "ApplicationRecordVersion" | "ObjectTypeReference" | "ObjectAttributeReference" | "ObjectName" | "EditStatus" | "EditorialUpDate" | "Urgency" | "SubjectReference" | "Category" | "SupplementalCategories" | "FixtureIdentifier" | "ContentLocationCode" | "ContentLocationName" | "ReleaseDate" | "ReleaseTime" | "ExpirationDate" | "ExpirationTime" | "SpecialInstructions" | "ActionAdvised" | "ReferenceService" | "ReferenceDate" | "ReferenceNumber" | "OriginatingProgram" | "ProgramVersion" | "ObjectCycle" | "By-line" | "By-lineTitle" | "City" | "Sub-location" | "Province-State" | "Country-PrimaryLocationCode" | "Country-PrimaryLocationName" | "OriginalTransmissionReference" | "Headline" | "Credit" | "Source" | "CopyrightNotice" | "Contact" | "Caption-Abstract" | "LocalCaption" | "Writer-Editor" | "ImageType" | "ImageOrientation" | "LanguageIdentifier" | "AudioType" | "AudioSamplingRate" | "AudioSamplingResolution" | "AudioDuration" | "AudioOutcue" | "JobID" | "MasterDocumentID" | "ShortDocumentID" | "UniqueDocumentID" | "OwnerID" | "ObjectPreviewFileFormat" | "ObjectPreviewFileVersion" | "Prefs" | "ClassifyState" | "SimilarityIndex" | "DocumentNotes" | "DocumentHistory" | "ExifCameraInfo" | "CodedCharacterSet" | "DateSent" | "DateTimeCreated" | "Destination" | "DigitalCreationDate" | "DigitalCreationTime" | "EnvelopeNumber" | "EnvelopePriority" | "EnvelopeRecordVersion" | "FileVersion" | "Keywords" | "ServiceIdentifier" | "TimeCreated" | "TimeSent" | "ImageDataHash" | "JFIFVersion" | "AIScene" | "FilterId" | "Hdr" | "Mirror" | "OpMode" | "ZoomMultiple" | "DependentImage1EntryNumber" | "DependentImage2EntryNumber" | "ImageUIDList" | "MPFVersion" | "MPImageFlags" | "MPImageFormat" | "MPImageLength" | "MPImageStart" | "MPImageType" | "NumberOfImages" | "TotalFrames" | "Collections" | "KeywordInfo" | "HierarchicalKeywords" | "AccelerationTracking" | "AccelerationVector" | "Accelerometer" | "AccelerometerX" | "AccelerometerY" | "AccelerometerZ" | "AccessorySerialNumber" | "AccessoryType" | "ActualCompensation" | "AddAspectRatioInfo" | "AddIPTCInformation" | "AddOriginalDecisionData" | "ADJDebugInfo" | "AdjustmentMode" | "ADLBracketingStep" | "ADLBracketingType" | "AdvancedFilter" | "AdvancedSceneType" | "AEAperture" | "AEApertureSteps" | "AEAverage" | "AEBAutoCancel" | "AEBBracketValue" | "AEBracketingSteps" | "AEBSequence" | "AEBSequenceAutoCancel" | "AEBShotCount" | "AEBXv" | "AEDebugInfo" | "AEExposureTime" | "AEHistogramInfo" | "AELButton" | "AELExposureIndicator" | "AELiveViewHistogramInfo" | "AELiveViewLocalHistogram" | "AELocalHistogram" | "AELock" | "AELockButton" | "AELockButtonPlusDials" | "AELockMeterModeAfterFocus" | "AEMaxAperture" | "AEMeteringMode" | "AEMeteringSegments" | "AEMicroadjustment" | "AEMinAperture" | "AEMinExposureTime" | "AEProgramMode" | "AESetting" | "AEStable" | "AETarget" | "AEWhiteBalance" | "AEXv" | "AFAccelDecelTracking" | "AFActivation" | "AFAdjustment" | "AFAndMeteringButtons" | "AFAperture" | "AFAreaHeight" | "AFAreaHeights" | "AFAreaIllumination" | "AFAreaMode" | "AFAreaModeSetting" | "AFAreaPointSize" | "AFAreas" | "AFAreaSelectionMethod" | "AFAreaSelectMethod" | "AFAreaSize" | "AFAreaWidth" | "AFAreaWidths" | "AFAreaXPosition" | "AFAreaYPosition" | "AFAreaZoneSize" | "AFAssist" | "AFAssistBeam" | "AFAssistLamp" | "AFButtonPressed" | "AFConfidence" | "AFConfigTool" | "AFCoordinatesAvailable" | "AFDebugInfo" | "AFDefocus" | "AFDetectionMethod" | "AFDuringLiveView" | "AFFineTune" | "AFFineTuneAdj" | "AFFineTuneAdjTele" | "AFFineTuneIndex" | "AFIlluminator" | "AFInfo2Version" | "AFIntegrationTime" | "AFMeasuredDepth" | "AFMicroAdj" | "AFMicroAdjMode" | "AFMicroAdjRegisteredLenses" | "AFMicroadjustment" | "AFMicroAdjValue" | "AFMode" | "AFModeRestrictions" | "AFOnAELockButtonSwitch" | "AFOnButton" | "AFPerformance" | "AFPoint" | "AFPointActivationArea" | "AFPointAreaExpansion" | "AFPointAtShutterRelease" | "AFPointAutoSelection" | "AFPointBrightness" | "AFPointDetails" | "AFPointDisplayDuringFocus" | "AFPointIllumination" | "AFPointInFocus" | "AFPointMode" | "AFPointPosition" | "AFPointRegistration" | "AFPoints" | "AFPointSel" | "AFPointSelected" | "AFPointSelection" | "AFPointSelectionMethod" | "AFPointSetting" | "AFPointsInFocus" | "AFPointsInFocus1D" | "AFPointsInFocus5D" | "AFPointSpotMetering" | "AFPointsSelected" | "AFPointsSpecial" | "AFPointsUsed" | "AFPointSwitching" | "AFPredictor" | "AFTracking" | "AFTrackingSensitivity" | "AFType" | "AFWithShutter" | "AIServoContinuousShooting" | "AIServoFirstImage" | "AIServoFirstImagePriority" | "AIServoImagePriority" | "AIServoSecondImage" | "AIServoSecondImagePriority" | "AIServoTrackingMethod" | "AIServoTrackingSensitivity" | "AISubjectTrackingMode" | "Altitude" | "AmbienceSelection" | "AmbientTemperature" | "AmbientTemperatureFahrenheit" | "AntiFlicker" | "ApertureLock" | "ApertureRange" | "ApertureRingUse" | "ApertureSetting" | "ApplySettingsToLiveView" | "ApplyShootingMeteringMode" | "ApproximateFNumber" | "ArtFilter" | "ArtFilterEffect" | "ArtMode" | "ArtModeParameters" | "AspectFrame" | "AspectRatio" | "AssignBktButton" | "AssignFuncButton" | "AssignMovieFunc1ButtonPlusDials" | "AssignMovieFunc2Button" | "AssignMoviePreviewButtonPlusDials" | "AssignMovieRecordButton" | "AssignMovieRecordButtonPlusDials" | "AssignMovieSubselector" | "AssignMovieSubselectorPlusDials" | "AssignRemoteFnButton" | "AssistButtonFunction" | "Audio" | "AudioCompression" | "AutoAFPointColorTracking" | "AutoAFPointSelEOSiTRAF" | "AutoAperture" | "AutoBracket" | "AutoBracketing" | "AutoBracketingMode" | "AutoBracketingSet" | "AutoBracketModeM" | "AutoBracketOrder" | "AutoBracketSet" | "AutoDistortionControl" | "AutoDynamicRange" | "AutoExposureBracketing" | "AutoFlashISOSensitivity" | "AutoFP" | "AutoISO" | "AutoISOMinShutterSpeed" | "AutoLightingOptimizer" | "AutoPortraitFramed" | "AutoRotate" | "AuxiliaryLens" | "AvApertureSetting" | "AverageBlackLevel" | "AverageLV" | "AvSettingWithoutLens" | "BabyAge" | "BabyName" | "Barcode" | "BarometerInfoVersion" | "BaseExposureCompensation" | "BaseISO" | "BatteryLevel" | "BatteryOrder" | "BatteryState" | "BatteryTemperature" | "BatteryType" | "BatteryVoltage" | "BayerPattern" | "Beep" | "BeepPitch" | "BeepVolume" | "BestShotMode" | "BlackLevels" | "BlackMaskBottomBorder" | "BlackMaskLeftBorder" | "BlackMaskRightBorder" | "BlackMaskTopBorder" | "BlackPoint" | "BleachBypassToning" | "BlueGain" | "BlurControl" | "BlurWarning" | "BoardTemperature" | "BodyBatteryADLoad" | "BodyBatteryADNoLoad" | "BodyBatteryState" | "BodyFirmware" | "BodyFirmwareVersion" | "BodySerialNumber" | "BracketIncrement" | "BracketMode" | "BracketProgram" | "BracketSequence" | "BracketSet" | "BracketSettings" | "BracketShotNumber" | "BracketStep" | "BracketValue" | "Brightness" | "BuildNumber" | "BulbDuration" | "BurstGroupID" | "BurstMode" | "BurstShot" | "BurstSpeed" | "BurstUUID" | "ButtonFunctionControlOff" | "BWFilter" | "BWMode" | "CAFGridSize" | "CAFPointsInFocus" | "CAFPointsSelected" | "Calibration" | "CameraDateTime" | "CameraID" | "CameraISO" | "CameraOrientation" | "CameraParameters" | "CameraPictureStyle" | "CameraPitch" | "CameraRoll" | "CameraSettingsVersion" | "CameraType" | "CameraYaw" | "CanonExposureMode" | "CanonFileDescription" | "CanonFileLength" | "CanonFirmwareVersion" | "CanonFlashMode" | "CanonImageSize" | "CanonImageType" | "CanonModelID" | "CardShutterLock" | "Categories" | "CCDBoardVersion" | "CCDScanMode" | "CCDSensitivity" | "CCDVersion" | "CenterAFArea" | "CenterFocusPoint" | "CenterWeightedAreaSize" | "CHModeShootingSpeed" | "ChromaticAberrationCorr" | "ChromaticAberrationCorrParams" | "ChromaticAberrationSetting" | "ChrominanceNoiseReduction" | "Clarity" | "ClarityControl" | "ClearRetouch" | "CLModeShootingSpeed" | "CmdDialsApertureSetting" | "CmdDialsChangeMainSub" | "CmdDialsMenuAndPlayback" | "CmdDialsReverseRotation" | "CmdDialsReverseRotExposureComp" | "ColorAdjustment" | "ColorAdjustmentMode" | "ColorBalanceBlue" | "ColorBalanceGreen" | "ColorBalanceRed" | "ColorBalanceVersion" | "ColorBitDepth" | "ColorBW" | "ColorChromeEffect" | "ColorChromeFXBlue" | "ColorCompensationFilter" | "ColorCompensationFilterCustom" | "ColorCompensationFilterSet" | "ColorControl" | "ColorCreatorEffect" | "ColorDataVersion" | "ColorEffect" | "ColorFilter" | "ColorGain" | "ColorHue" | "ColorMatrix" | "ColorMatrixA" | "ColorMatrixB" | "ColorMatrixNumber" | "ColorMode" | "ColorProfileSettings" | "ColorTempAsShot" | "ColorTempAuto" | "ColorTempCloudy" | "ColorTempCustom" | "ColorTempDaylight" | "ColorTemperature" | "ColorTemperatureAuto" | "ColorTemperatureCustom" | "ColorTemperatureSet" | "ColorTemperatureSetting" | "ColorTempFlash" | "ColorTempFluorescent" | "ColorTempKelvin" | "ColorTempMeasured" | "ColorTempShade" | "ColorTempTungsten" | "ColorTint" | "ColorTone" | "ColorToneAuto" | "ColorToneLandscape" | "ColorToneNeutral" | "ColorTonePortrait" | "ColorToneStandard" | "CommandDials" | "CommandDialsApertureSetting" | "CommandDialsChangeMainSub" | "CommandDialsMenuAndPlayback" | "CommandDialsReverseRotation" | "CommanderChannel" | "CommanderGroupAManualOutput" | "CommanderGroupAMode" | "CommanderGroupBManualOutput" | "CommanderGroupBMode" | "CommanderInternalFlash" | "CommanderInternalManualOutput" | "CommanderInternalTTLComp" | "CommanderInternalTTLCompBuiltin" | "CommanderInternalTTLCompGroupA" | "CommanderInternalTTLCompGroupB" | "ComponentBitDepth" | "ComponentVersion" | "CompositionAdjust" | "CompositionAdjustRotation" | "CompositionAdjustX" | "CompositionAdjustY" | "CompressedImageSize" | "CompressionFactor" | "CompressionRatio" | "ContentIdentifier" | "ContinuousBracketing" | "ContinuousDrive" | "ContinuousModeDisplay" | "ContinuousModeLiveView" | "ContinuousShootingSpeed" | "ContinuousShotLimit" | "ContrastAuto" | "ContrastCurve" | "ContrastDetectAFArea" | "ContrastDetectAFInFocus" | "ContrastFaithful" | "ContrastHighlight" | "ContrastHighlightShadowAdj" | "ContrastLandscape" | "ContrastMode" | "ContrastNeutral" | "ContrastPortrait" | "ContrastSetting" | "ContrastShadow" | "ContrastStandard" | "ControlDialSet" | "ControllerBoardVersion" | "ControlMode" | "ControlRingResponse" | "ControlRingRotation" | "ConversionLens" | "Converter" | "CoringFilter" | "CorrelatedColorTemp" | "CPUFirmwareVersion" | "CPUVersions" | "CreativeStyle" | "CreativeStyleSetting" | "CropBottomMargin" | "CropHeight" | "CropHiSpeed" | "CropLeftMargin" | "CropMode" | "CroppedImageHeight" | "CroppedImageLeft" | "CroppedImageTop" | "CroppedImageWidth" | "CropRightMargin" | "CropTopMargin" | "CropWidth" | "CrossProcess" | "CustomControls" | "CustomizeDials" | "CustomPictureStyleFileName" | "CustomSaturation" | "CustomSettingsAllDefault" | "CustomSettingsBank" | "CustomWBBlueLevel" | "CustomWBError" | "CustomWBGreenLevel" | "CustomWBRedLevel" | "CustomWBSetting" | "DarkFocusEnvironment" | "DataDump" | "DataScaling" | "Date" | "DateDisplayFormat" | "DateImprint" | "DateStampMode" | "DateTimeStamp" | "DateTimeUTC" | "DaylightSavings" | "DECPosition" | "DefaultEraseOption" | "DeletedImageCount" | "DestinationCity" | "DestinationCityCode" | "DestinationDST" | "DeviceType" | "DialDirectionTvAv" | "DiffractionCompensation" | "DiffractionCorrection" | "DigitalFilter" | "DigitalGain" | "DigitalICE" | "DigitalZoom" | "DirectoryIndex" | "DirectoryNumber" | "DispButton" | "DisplayAllAFPoints" | "DisplayAperture" | "DistortionControl" | "DistortionCorrection" | "DistortionCorrectionSetting" | "DistortionCorrectionValue" | "DistortionCorrParams" | "DistortionCorrParamsNumber" | "DistortionCorrParamsPresent" | "DriveModeSetting" | "DriveSpeed" | "DSPFirmwareVersion" | "DustRemovalData" | "DXCropAlert" | "DynamicAFArea" | "DynamicAreaAFAssist" | "DynamicAreaAFDisplay" | "DynamicRange" | "DynamicRangeBoost" | "DynamicRangeExpansion" | "DynamicRangeOptimizer" | "DynamicRangeOptimizerBracket" | "DynamicRangeOptimizerLevel" | "DynamicRangeOptimizerMode" | "DynamicRangeOptimizerSetting" | "DynamicRangeSetting" | "EasyExposureComp" | "EasyExposureCompensation" | "EasyMode" | "EffectiveLV" | "EffectiveMaxAperture" | "ElectronicFrontCurtainShutter" | "EnergySavingMode" | "Enhancement" | "Enhancer" | "EpsonImageHeight" | "EpsonImageWidth" | "EpsonSoftware" | "EquipmentVersion" | "ETTLII" | "EventNumber" | "EVSteps" | "EVStepSize" | "ExitPupilPosition" | "ExposureBracketingIndicatorLast" | "ExposureBracketShotNumber" | "ExposureBracketStepSize" | "ExposureBracketValue" | "ExposureCompAutoCancel" | "ExposureCompensationMode" | "ExposureCompensationSet" | "ExposureCompensationSetting" | "ExposureCompStepSize" | "ExposureControlStep" | "ExposureControlStepSize" | "ExposureCount" | "ExposureDelayMode" | "ExposureDifference" | "ExposureIndicator" | "ExposureLevelIncrements" | "ExposureModeInManual" | "ExposureShift" | "ExposureStandardAdjustment" | "ExposureTuning" | "ExposureWarning" | "EXRAuto" | "EXRMode" | "ExtendedMenuBanks" | "ExtendedShutterSpeeds" | "ExtendedWBDetect" | "Extender" | "ExtenderFirmwareVersion" | "ExtenderSerialNumber" | "ExternalFlash" | "ExternalFlashBounce" | "ExternalFlashCompensation" | "ExternalFlashExposureComp" | "ExternalFlashFirmware" | "ExternalFlashFlags" | "ExternalFlashGuideNumber" | "ExternalFlashGValue" | "ExternalFlashMode" | "ExternalFlashReadyState" | "ExternalFlashStatus" | "ExternalFlashZoom" | "ExternalFlashZoomOverride" | "ExternalSensorBrightnessValue" | "ExtraInfoVersion" | "EyeDetection" | "EyeStartAF" | "FaceDetect" | "FaceDetectArea" | "FaceDetectFrameCrop" | "FaceDetectFrameSize" | "FaceDetection" | "FaceElementPositions" | "FaceElementSelected" | "FaceElementTypes" | "FaceInfoLength" | "FaceInfoOffset" | "FaceName" | "FacePosition" | "FacePositions" | "FacesDetected" | "FacesRecognized" | "FaceWidth" | "Fade" | "FEMicroadjustment" | "FileFormat" | "FileIndex" | "FileInfoVersion" | "FileNumber" | "FileNumberMemory" | "FileNumberSequence" | "FillFlashAutoReduction" | "FilmGrainEffect" | "FilmMode" | "FilmType" | "FilterEffect" | "FilterEffectAuto" | "FinderDisplayDuringExposure" | "FineSharpness" | "FineTuneOptCenterWeighted" | "FineTuneOptHighlightWeighted" | "FineTuneOptMatrixMetering" | "FineTuneOptSpotMetering" | "FirmwareDate" | "FirmwareName" | "FirmwareRevision" | "FirmwareVersion" | "FisheyeFilter" | "FlashAction" | "FlashActionExternal" | "FlashActivity" | "FlashBatteryLevel" | "FlashBias" | "FlashBits" | "FlashButtonFunction" | "FlashChargeLevel" | "FlashColorFilter" | "FlashCommanderMode" | "FlashControl" | "FlashControlMode" | "FlashCurtain" | "FlashDefault" | "FlashDevice" | "FlashDistance" | "FlashExposureBracketValue" | "FlashExposureComp" | "FlashExposureCompArea" | "FlashExposureCompSet" | "FlashExposureIndicator" | "FlashExposureIndicatorLast" | "FlashExposureIndicatorNext" | "FlashExposureLock" | "FlashFired" | "FlashFiring" | "FlashFirmwareVersion" | "FlashFocalLength" | "FlashFunction" | "FlashGNDistance" | "FlashGroupACompensation" | "FlashGroupAControlMode" | "FlashGroupBCompensation" | "FlashGroupBControlMode" | "FlashGroupCCompensation" | "FlashGroupCControlMode" | "FlashGuideNumber" | "FlashIlluminationPattern" | "FlashInfoVersion" | "FlashIntensity" | "FlashLevel" | "FlashMasterControlMode" | "FlashMetering" | "FlashMeteringMode" | "FlashMeteringSegments" | "FlashMode" | "FlashModel" | "FlashOptions" | "FlashOutput" | "FlashRemoteControl" | "FlashSerialNumber" | "FlashSetting" | "FlashShutterSpeed" | "FlashSource" | "FlashStatus" | "FlashStatusExternal" | "FlashSyncMode" | "FlashSyncSpeed" | "FlashSyncSpeedAv" | "FlashThreshold" | "FlashWarning" | "FlexibleSpotPosition" | "FlickAdvanceDirection" | "FlickerReduce" | "FlickerReduction" | "FlickerReductionIndicator" | "FlickerReductionShooting" | "FlightDegree" | "FlightSpeed" | "FocalLengthTeleZoom" | "FocalPlaneAFPointArea" | "FocalPlaneAFPointsUsed" | "FocalPlaneDiagonal" | "FocalPlaneXSize" | "FocalPlaneYSize" | "FocalType" | "FocalUnits" | "FocusArea" | "FocusAreaSelection" | "FocusBracket" | "FocusBracketStepSize" | "FocusContinuous" | "FocusDisplayAIServoAndMF" | "FocusDistanceRange" | "FocusFrameSize" | "FocusHoldButton" | "FocusInfoVersion" | "FocusingScreen" | "FocusLocation" | "FocusLocked" | "FocusMode" | "FocusModeSetting" | "FocusModeSwitch" | "FocusPeakingHighlightColor" | "FocusPeakingLevel" | "FocusPixel" | "FocusPointPersistence" | "FocusPointSchema" | "FocusPointSelectionSpeed" | "FocusPointWrap" | "FocusPosition" | "FocusPositionHorizontal" | "FocusPositionVertical" | "FocusProcess" | "FocusRange" | "FocusRangeIndex" | "FocusResult" | "FocusRingRotation" | "FocusSetting" | "FocusShiftExposureLock" | "FocusShiftInterval" | "FocusShiftNumberShots" | "FocusShiftShooting" | "FocusShiftStepWidth" | "FocusStatus" | "FocusStepInfinity" | "FocusStepNear" | "FocusTrackingLockOn" | "FocusWarning" | "FolderName" | "FolderNumber" | "FrameNumber" | "FramingGridDisplay" | "FreeBytes" | "FreeMemoryCardImages" | "FujiFlashMode" | "FujiModel" | "FullImageSize" | "FullPressSnap" | "Func1Button" | "Func1ButtonPlusDials" | "Func2Button" | "Func3Button" | "FuncButton" | "FuncButtonPlusDials" | "FunctionButton" | "GainBase" | "GEImageSize" | "GEMake" | "GEModel" | "GimbalDegree" | "Gradation" | "GrainEffectRoughness" | "GrainEffectSize" | "GrainyBWFilter" | "GreenGain" | "GridDisplay" | "GripBatteryADLoad" | "GripBatteryADNoLoad" | "GripBatteryState" | "GroupAreaAFIllumination" | "HDMIBitDepth" | "HDMIExternalRecorder" | "HDMIOutputRange" | "HDMIOutputResolution" | "HDR" | "HDREffect" | "HDRGain" | "HDRHeadroom" | "HDRImageType" | "HDRInfoVersion" | "HDRLevel" | "HDRSetting" | "HDRSmoothing" | "HiddenDataLength" | "HiddenDataOffset" | "HighFrameRate" | "HighISONoiseReduction" | "Highlight" | "Highlights" | "HighlightShadow" | "HighlightTone" | "HighlightTonePriority" | "HighlightWarning" | "HighLowKeyAdj" | "HighSpeedSync" | "Histogram" | "HometownCity" | "HometownCityCode" | "HometownDST" | "HostSoftwareExportVersion" | "HostSoftwareRendering" | "Hue" | "HueAdjust" | "HueAdjustment" | "HyperlapsDebugInfo" | "Illumination" | "ImageAdjustment" | "ImageArea" | "ImageAuthentication" | "ImageBoundary" | "ImageCaptureType" | "ImageCount" | "ImageDataSize" | "ImageEditCount" | "ImageEditing" | "ImageEffects" | "ImageGeneration" | "ImageIDNumber" | "ImageOptimization" | "ImageProcessing" | "ImageProcessingVersion" | "ImageQuality" | "ImageReview" | "ImageReviewMonitorOffTime" | "ImageReviewTime" | "ImageRotated" | "ImageSizeRAW" | "ImageStabilization" | "ImageStabilizationSetting" | "ImageStyle" | "ImageTemperatureMax" | "ImageTemperatureMin" | "ImageTone" | "ImageUniqueID" | "InfoButtonWhenShooting" | "InfraredIlluminator" | "InitialAFPointAIServoAF" | "InitialAFPointInServo" | "InitialZoomLiveView" | "InitialZoomSetting" | "InstantPlaybackSetup" | "InstantPlaybackTime" | "IntelligentAuto" | "IntelligentContrast" | "IntelligentExposure" | "IntelligentResolution" | "InternalFlash" | "InternalFlashMode" | "InternalFlashStrength" | "InternalFlashTable" | "InternalNDFilter" | "InternalSerialNumber" | "IntervalDurationHours" | "IntervalDurationMinutes" | "IntervalDurationSeconds" | "IntervalExposureSmoothing" | "IntervalLength" | "IntervalMode" | "IntervalNumber" | "IntervalPriority" | "Intervals" | "IntervalShooting" | "ISO2" | "ISOAuto" | "ISOAutoFlashLimit" | "ISOAutoHiLimit" | "ISOAutoMax" | "ISOAutoMin" | "ISOAutoMinSpeed" | "ISOAutoShutterTime" | "ISODisplay" | "ISOExpansion" | "ISOFloor" | "ISOSelected" | "ISOSelection" | "ISOSensitivityStep" | "ISOSetting" | "ISOSpeedExpansion" | "ISOSpeedIncrements" | "ISOSpeedRange" | "ISOStepSize" | "ISOValue" | "JPEGQuality" | "JPGCompression" | "JpgRecordedPixels" | "KeepExposure" | "KeystoneCompensation" | "KeystoneDirection" | "KeystoneValue" | "KodakImageHeight" | "KodakImageWidth" | "KodakInfoType" | "KodakMake" | "KodakMaker" | "KodakModel" | "KodakVersion" | "Language" | "LastFileNumber" | "LateralChromaticAberration" | "LCDDisplayAtPowerOn" | "LCDDisplayReturnToShoot" | "LCDIllumination" | "LCDIlluminationDuringBulb" | "LCDPanels" | "LensApertureRange" | "LensControlRing" | "LensDataVersion" | "LensDistortionParams" | "LensDriveNoAF" | "LensDriveWhenAFImpossible" | "LensFirmware" | "LensFirmwareVersion" | "LensFocalLength" | "LensFocalRange" | "LensFocusFunctionButtons" | "LensFormat" | "LensFStops" | "LensFunc1Button" | "LensFunc2Button" | "LensIDNumber" | "LensMaxApertureRange" | "LensModulationOptimizer" | "LensMount" | "LensMountType" | "LensPositionAbsolute" | "LensProperties" | "LensShading" | "LensShutterLock" | "LensSpec" | "LensSpecFeatures" | "LensTemperature" | "LensType" | "LensType2" | "LensType3" | "LensTypeMake" | "LensTypeModel" | "LensZoomPosition" | "LevelIndicator" | "LevelOrientation" | "LightCondition" | "LightingMode" | "LightSourceSpecial" | "LightSwitch" | "LightValueCenter" | "LightValuePeriphery" | "LimitAFAreaModeSelection" | "LinearityUpperMargin" | "LinkAEToAFPoint" | "LivePhotoVideoIndex" | "LiveView" | "LiveViewAF" | "LiveViewAFAreaMode" | "LiveViewAFMethod" | "LiveViewAFMode" | "LiveViewButtonOptions" | "LiveViewExposureSimulation" | "LiveViewFocusMode" | "LiveViewMetering" | "LiveViewMonitorOffTime" | "LiveViewShooting" | "LocalLocationName" | "Location" | "LocationInfoVersion" | "LocationName" | "LockMicrophoneButton" | "LongExposureNoiseReduction" | "LongExposureNRUsed" | "LowLightAF" | "LuminanceNoiseAmplitude" | "LuminanceNoiseReduction" | "LVShootingAreaDisplay" | "M16CVersion" | "Macro" | "MacroLED" | "MacroMode" | "MagicFilter" | "MagnifiedView" | "MainDialExposureComp" | "MakerNoteOffset" | "MakerNoteType" | "MakerNoteVersion" | "ManometerPressure" | "ManometerReading" | "ManualAFPointSelectPattern" | "ManualAFPointSelPattern" | "ManualFlash" | "ManualFlashOutput" | "ManualFlashStrength" | "ManualFocusDistance" | "ManualFocusPointIllumination" | "ManualFocusRingInAFMode" | "ManualTv" | "ManufactureDate" | "MasterGain" | "MatrixMetering" | "MaxAperture" | "MaxApertureAtMaxFocal" | "MaxApertureAtMinFocal" | "MaxContinuousRelease" | "MaxFaces" | "MaxFocalLength" | "MCCData" | "MCUVersion" | "MeasuredEV" | "MeasuredLV" | "MeasuredRGGB" | "MeasuredRGGBData" | "MechanicalShutterCount" | "MemoAudioQuality" | "MemoryCardConfiguration" | "MemoryCardNumber" | "MenuButtonDisplayPosition" | "MenuButtonReturn" | "MenuMonitorOffTime" | "MergedImages" | "MetaVersion" | "Metering" | "MeteringOffScaleIndicator" | "MeteringTime" | "MeterMode" | "MidRangeSharpness" | "MinAperture" | "MinFocalLength" | "MinFocusDistance" | "MiniatureFilter" | "MiniatureFilterOrientation" | "MiniatureFilterParameter" | "MiniatureFilterPosition" | "MinimumISO" | "MinoltaDate" | "MinoltaImageSize" | "MinoltaModelID" | "MinoltaQuality" | "MinoltaTime" | "MirrorLockup" | "ModeDialPosition" | "ModelingFlash" | "ModelReleaseYear" | "ModifiedColorTemp" | "ModifiedDigitalGain" | "ModifiedParamFlag" | "ModifiedPictureStyle" | "ModifiedSaturation" | "ModifiedSensorBlueLevel" | "ModifiedSensorRedLevel" | "ModifiedSharpness" | "ModifiedSharpnessFreq" | "ModifiedToneCurve" | "ModifiedWhiteBalance" | "ModifiedWhiteBalanceBlue" | "ModifiedWhiteBalanceRed" | "MonitorBrightness" | "MonitorDisplayOff" | "MonitorOffTime" | "MonochromeColor" | "MonochromeFilterEffect" | "MonochromeGrainEffect" | "MonochromeProfileSettings" | "MonochromeToning" | "MonochromeVignetting" | "MonthDayCreated" | "MoonPhase" | "MotionSensitivity" | "MovieAELockButtonAssignment" | "MovieAFAreaMode" | "MovieAFTrackingSensitivity" | "MovieFlickerReduction" | "MovieFunc1Button" | "MovieFunc2Button" | "MovieFunc3Button" | "MovieFunctionButton" | "MovieFunctionButtonPlusDials" | "MovieHighlightDisplayPattern" | "MovieHighlightDisplayThreshold" | "MovieISOAutoControlManualMode" | "MovieISOAutoHiLimit" | "MovieLensControlRing" | "MovieMultiSelector" | "MoviePreviewButton" | "MoviePreviewButtonPlusDials" | "MovieShutterButton" | "MovieSubSelectorAssignment" | "MovieSubSelectorAssignmentPlusDials" | "MovieType" | "MovieWhiteBalanceSameAsPhoto" | "MultiControllerWhileMetering" | "MultiExposure" | "MultiExposureAutoGain" | "MultiExposureControl" | "MultiExposureMode" | "MultiExposureOverlayMode" | "MultiExposureShots" | "MultiExposureVersion" | "MultiFrameNoiseReduction" | "MultiFrameNREffect" | "MultiFunctionLock" | "MultipleExposureMode" | "MultipleExposureSet" | "MultiSelector" | "MultiSelectorLiveView" | "MultiSelectorPlaybackMode" | "MultiSelectorShootMode" | "MyColorMode" | "NDFilter" | "NEFBitDepth" | "NEFCompression" | "NEFLinearizationTable" | "NeutralDensityFilter" | "NikonCaptureVersion" | "NikonImageSize" | "NikonMeteringMode" | "NoiseFilter" | "NoiseReduction" | "NoiseReductionStrength" | "NoMemoryCard" | "NominalMaxAperture" | "NominalMinAperture" | "NormalWhiteLevel" | "NumberOfFocusPoints" | "NumberOffsets" | "NumCAFPoints" | "NumFaceElements" | "NumFacePositions" | "ObjectDistance" | "OISMode" | "OKButton" | "OlympusImageHeight" | "OlympusImageWidth" | "OneTouchWB" | "OpticalVR" | "OpticalZoom" | "OpticalZoomCode" | "OpticalZoomMode" | "OpticalZoomOn" | "OrderNumber" | "OrientationLinkedAF" | "OrientationLinkedAFPoint" | "OriginalDirectory" | "OriginalFileName" | "OriginalImageHeight" | "OriginalImageWidth" | "OtherInfo" | "OutputLUT" | "OwnerName" | "PaintingFilter" | "PanasonicDateTime" | "PanasonicExifVersion" | "PanasonicImageHeight" | "PanasonicImageWidth" | "PanoramaAngle" | "PanoramaCropBottom" | "PanoramaCropLeft" | "PanoramaCropRight" | "PanoramaCropTop" | "PanoramaDirection" | "PanoramaFrameHeight" | "PanoramaFrameWidth" | "PanoramaFullHeight" | "PanoramaFullWidth" | "PanoramaMode" | "PanoramaSize3D" | "PanoramaSourceHeight" | "PanoramaSourceWidth" | "PentaxImageSize" | "PentaxModelID" | "PentaxModelType" | "PentaxVersion" | "PerChannelBlackLevel" | "PeripheralIlluminationCorr" | "PeripheralLighting" | "PeripheralLightingSetting" | "PeripheralLightingValue" | "PhotoEffect" | "PhotoIdentifier" | "PhotoInfoPlayback" | "PhotosAppFeatureFlags" | "PhotoShootingMenuBank" | "PhotoShootingMenuBankImageArea" | "PhotoStyle" | "PictureControlAdjust" | "PictureControlBase" | "PictureControlName" | "PictureControlQuickAdjust" | "PictureControlVersion" | "PictureEffect" | "PictureFinish" | "PictureMode" | "PictureModeBWFilter" | "PictureModeContrast" | "PictureModeEffect" | "PictureModeSaturation" | "PictureModeSharpness" | "PictureModeTone" | "PictureProfile" | "PictureStyle" | "PictureStylePC" | "PictureStyleUserDef" | "Pitch" | "PitchAngle" | "PixelAspectRatio" | "PixelShiftInfo" | "PixelShiftResolution" | "PixelShiftShooting" | "PlaybackMenusTime" | "PlaybackMonitorOffTime" | "PlaybackZoom" | "PlayDisplay" | "POILevel" | "PopupFlash" | "PortraitImpressionBalance" | "PortraitRefiner" | "PostFocusMerging" | "PostReleaseBurstLength" | "PowerSource" | "PowerUpTime" | "PreAF" | "PreCaptureFrames" | "PreReleaseBurstLength" | "PresetWhiteBalance" | "PreviewButton" | "PreviewButtonPlusDials" | "PreviewImageBorders" | "PreviewImageHeight" | "PreviewImageLength" | "PreviewImageSize" | "PreviewImageStart" | "PreviewImageValid" | "PreviewImageWidth" | "PreviewQuality" | "PrimaryAFPoint" | "PrimarySlot" | "PrioritySetupShutterRelease" | "ProductionCode" | "ProgramISO" | "ProgramLine" | "ProgramShift" | "Quality" | "QuickControlDialInMeter" | "QuickShot" | "RangeFinder" | "RawAndJpgRecording" | "RawDataByteOrder" | "RawDataCFAPattern" | "RawDataLength" | "RawDevArtFilter" | "RawDevAutoGradation" | "RawDevColorSpace" | "RawDevContrastValue" | "RawDevEditStatus" | "RawDevelopmentProcess" | "RawDevEngine" | "RawDevExposureBiasValue" | "RawDevGradation" | "RawDevGrayPoint" | "RawDevMemoryColorEmphasis" | "RawDevNoiseReduction" | "RawDevPictureMode" | "RawDevPMContrast" | "RawDevPMNoiseFilter" | "RawDevPMPictureTone" | "RawDevPMSaturation" | "RawDevPMSharpness" | "RawDevSaturationEmphasis" | "RawDevSettings" | "RawDevSharpnessValue" | "RawDevVersion" | "RawDevWBFineAdjustment" | "RawDevWhiteBalance" | "RawDevWhiteBalanceValue" | "RAWFileType" | "RawImageCenter" | "RawImageHeight" | "RawImageWidth" | "RawJpgQuality" | "RawJpgSize" | "RawMeasuredRGGB" | "RearDisplay" | "RecordDisplay" | "RecordID" | "RecordingFormat" | "RecordingMode" | "RecordMode" | "RecordShutterRelease" | "RedEyeRemoval" | "RedGain" | "ReleaseButtonToUseDial" | "ReleaseMode" | "RemoteFuncButton" | "RemoteOnDuration" | "RepeatingFlashCount" | "RepeatingFlashOutput" | "RepeatingFlashOutputExternal" | "RepeatingFlashRate" | "Resaved" | "ResolutionMode" | "RestrictDriveModes" | "RetouchHistory" | "RetouchInfoVersion" | "RetouchNEFProcessing" | "RetractLensOnPowerOff" | "ReverseExposureCompDial" | "ReverseFocusRing" | "ReverseIndicators" | "ReverseShutterSpeedAperture" | "RFLensMFFocusRingSensitivity" | "RFLensType" | "RicohDate" | "RicohImageHeight" | "RicohImageWidth" | "RicohMake" | "RicohModel" | "Roll" | "RollAngle" | "ROMOperationMode" | "RunTimeEpoch" | "RunTimeFlags" | "RunTimeScale" | "RunTimeValue" | "SafetyShift" | "SafetyShiftInAvOrTv" | "SameExposureForNewAperture" | "SamsungModelID" | "SanyoQuality" | "SanyoThumbnail" | "SaturationAdj" | "SaturationAuto" | "SaturationLandscape" | "SaturationNeutral" | "SaturationPortrait" | "SaturationSetting" | "SaturationStandard" | "SaveFocus" | "ScanImageEnhancer" | "SceneAssist" | "SceneDetect" | "SceneMode" | "SceneModeUsed" | "SceneRecognition" | "SceneSelect" | "ScreenTips" | "SecondarySlotFunction" | "SelectableAFPoint" | "SelectAFAreaSelectionMode" | "SelectAFAreaSelectMode" | "SelfTimer" | "SelfTimerInterval" | "SelfTimerShotCount" | "SelfTimerShotInterval" | "SelfTimerTime" | "SemanticStyle" | "SemanticStylePreset" | "SemanticStyleRenderingVer" | "SensitivityAdjust" | "SensitivitySteps" | "Sensor" | "SensorBitDepth" | "SensorBlueLevel" | "SensorBottomBorder" | "SensorCalibration" | "SensorCleaning" | "SensorFullHeight" | "SensorFullWidth" | "SensorHeight" | "SensorID" | "SensorLeftBorder" | "SensorPixelSize" | "SensorRedLevel" | "SensorRightBorder" | "SensorSize" | "SensorTemperature" | "SensorTopBorder" | "SensorType" | "SensorWidth" | "Sequence" | "SequenceFileNumber" | "SequenceImageNumber" | "SequenceLength" | "SequenceNumber" | "SequenceShotInterval" | "SequentialShot" | "SerialNumber" | "SerialNumberFormat" | "SetButtonCrossKeysFunc" | "SetButtonWhenShooting" | "SetFunctionWhenShooting" | "ShadingCompensation" | "Shadow" | "ShadowCorrection" | "Shadows" | "ShadowTone" | "ShakeReduction" | "Sharpening" | "SharpnessAuto" | "SharpnessFactor" | "SharpnessFaithful" | "SharpnessFreqTable" | "SharpnessFrequency" | "SharpnessLandscape" | "SharpnessNeutral" | "SharpnessPortrait" | "SharpnessRange" | "SharpnessSetting" | "SharpnessStandard" | "SharpnessTable" | "ShootingInfoDisplay" | "ShootingInfoMonitorOffTime" | "ShootingModeSetting" | "ShortOwnerName" | "ShortReleaseTimeLag" | "ShotInfoVersion" | "ShotNumberSincePowerUp" | "ShotsPerInterval" | "Shutter" | "ShutterAELButton" | "ShutterButtonAFOnButton" | "ShutterCount" | "ShutterCount2" | "ShutterCount3" | "ShutterCurtainSync" | "ShutterMode" | "ShutterReleaseMethod" | "ShutterReleaseNoCFCard" | "ShutterReleaseTiming" | "ShutterReleaseWithoutLens" | "ShutterSpeedLock" | "ShutterSpeedRange" | "ShutterSpeedSetting" | "ShutterType" | "SignalToNoiseRatio" | "SilentPhotography" | "SingleFrame" | "SingleFrameBracketing" | "SkinToneCorrection" | "SlaveFlashMeteringSegments" | "SlowShutter" | "SlowSync" | "SmartAlbumColor" | "SmileShutter" | "SmileShutterMode" | "SoftFocusFilter" | "SoftSkinEffect" | "SonyDateTime" | "SonyDateTime2" | "SonyExposureTime" | "SonyFNumber" | "SonyImageHeight" | "SonyImageHeightMax" | "SonyImageSize" | "SonyImageWidth" | "SonyImageWidthMax" | "SonyISO" | "SonyMaxAperture" | "SonyMaxApertureValue" | "SonyMinAperture" | "SonyModelID" | "SonyQuality" | "SonyTimeMinSec" | "SourceDirectoryIndex" | "SourceFileIndex" | "SpecialEffectLevel" | "SpecialEffectMode" | "SpecialEffectSetting" | "SpecialMode" | "SpecularWhiteLevel" | "SpeedX" | "SpeedY" | "SpeedZ" | "SpotFocusPointX" | "SpotFocusPointY" | "SpotMeteringMode" | "SpotMeterLinkToAFPoint" | "SRActive" | "SRAWQuality" | "SRFocalLength" | "SRHalfPressTime" | "SRResult" | "StackedImage" | "StandbyMonitorOffTime" | "StandbyTimer" | "StartMovieShooting" | "StopsAboveBaseISO" | "StoreByOrientation" | "SubDialFrameAdvance" | "SubjectDetection" | "SubjectDetectionAreaMF" | "SubjectMotion" | "SubjectProgram" | "SubjectToDetect" | "SubSelector" | "SubSelectorAssignment" | "SubSelectorCenter" | "SubSelectorPlusDials" | "SuperimposedDisplay" | "SuperMacro" | "SvISOSetting" | "SweepPanoramaDirection" | "SweepPanoramaFieldOfView" | "SweepPanoramaSize" | "SwitchToRegisteredAFPoint" | "SyncReleaseMode" | "TargetAperture" | "TargetCompressionRatio" | "TargetDistanceSetting" | "TargetExposureTime" | "TargetImageType" | "Teleconverter" | "TextEncoding" | "TextStamp" | "ThumbnailFileName" | "ThumbnailHeight" | "ThumbnailImageValidArea" | "ThumbnailWidth" | "TiffMeteringImage" | "TiffMeteringImageHeight" | "TiffMeteringImageWidth" | "Time" | "TimeLapseShotNumber" | "TimerFunctionButton" | "TimerLength" | "TimerRecording" | "TimeSincePowerOn" | "TimeStamp" | "TimeZone" | "TimeZoneCity" | "TimeZoneCode" | "TimeZoneInfo" | "ToneComp" | "ToneCurve" | "ToneCurveMatching" | "ToneCurveTable" | "ToneLevel" | "ToningEffect" | "ToningEffectAuto" | "ToningSaturation" | "TotalZoom" | "TouchAE" | "ToyCameraFilter" | "Transform" | "TrashButtonFunction" | "TravelDay" | "TriggerMode" | "TvExposureTimeSetting" | "UniqueID" | "UnknownNumber" | "UnsharpMaskFineness" | "UnsharpMaskThreshold" | "UsableMeteringModes" | "UsableShootingModes" | "USBPowerDelivery" | "UserLabel" | "UserProfile" | "USMLensElectronicMF" | "ValidBits" | "VariableLowPassFilter" | "VariProgram" | "VerticalAFOnButton" | "VerticalFuncButton" | "VerticalFuncButtonPlusDials" | "VerticalMovieAFOnButton" | "VerticalMovieFuncButton" | "VerticalMultiSelector" | "VFDisplayIllumination" | "VibrationReduction" | "VideoBurstMode" | "VideoBurstResolution" | "VideoPreburst" | "ViewfinderDisplay" | "ViewfinderWarning" | "ViewfinderWarnings" | "ViewInfoDuringExposure" | "ViewingMode" | "VignetteControl" | "Vignetting" | "VignettingCorrection" | "VignettingCorrParams" | "VignettingCorrVersion" | "VoiceMemo" | "VRDOffset" | "VRInfoVersion" | "VRMode" | "VRType" | "WatercolorFilter" | "WBBlueLevel" | "WBBracketingSteps" | "WBBracketMode" | "WBBracketShotNumber" | "WBBracketValueAB" | "WBBracketValueGM" | "WBButtonPlaybackMode" | "WBGreenLevel" | "WBMediaImageSizeSetting" | "WBMode" | "WBRedLevel" | "WBShiftAB" | "WBShiftCreativeControl" | "WBShiftGM" | "WBShiftIntelligentAuto" | "WhiteBalanceAutoAdjustment" | "WhiteBalanceBias" | "WhiteBalanceBlue" | "WhiteBalanceBracket" | "WhiteBalanceBracketing" | "WhiteBalanceFineTune" | "WhiteBalanceMatching" | "WhiteBalanceMode" | "WhiteBalanceRed" | "WhiteBalanceSet" | "WhiteBalanceSetting" | "WhiteBalanceSetup" | "WhiteBalanceTable" | "WhiteBalanceTemperature" | "WhiteBoard" | "WideAdapter" | "WideFocusZone" | "WideRange" | "WorldTimeLocation" | "X3FillLight" | "Xidiri" | "Yaw" | "YawAngle" | "YearCreated" | "ZoneMatching" | "ZoneMatchingMode" | "ZoneMatchingOn" | "ZoneMatchingValue" | "ZoomedPreviewImage" | "ZoomedPreviewLength" | "ZoomedPreviewSize" | "ZoomedPreviewStart" | "ZoomSourceWidth" | "ZoomStepCount" | "ZoomTargetWidth" | "BorderID" | "BorderLocation" | "BorderName" | "BordersVersion" | "BorderType" | "CameraOwner" | "CaptureConditionsPAR" | "DigitalEffectsName" | "DigitalEffectsType" | "DigitalEffectsVersion" | "EditTagArray" | "FilmGencode" | "FilmProductCode" | "FilmSize" | "ImageSourceEK" | "MetadataNumber" | "ModelAndVersion" | "WatermarkType" | "DistortionScale" | "NumWBEntries" | "CopyrightFlag" | "DisplayedUnitsX" | "DisplayedUnitsY" | "GlobalAltitude" | "GlobalAngle" | "HasRealMergedData" | "IPTCDigest" | "NumSlices" | "PhotoshopFormat" | "PhotoshopQuality" | "PhotoshopThumbnail" | "PrintPosition" | "PrintScale" | "PrintStyle" | "ReaderName" | "SlicesGroupName" | "WriterName" | "PrintIMVersion" | "AndroidCaptureFPS" | "AndroidVersion" | "AndroidVideoTemporalLayersCount" | "AudioBitsPerSample" | "AudioChannels" | "AudioFormat" | "AudioSampleRate" | "AudioVendorID" | "Author" | "BackgroundColor" | "Balance" | "BitDepth" | "ChapterListTrackID" | "CleanApertureDimensions" | "ColorPrimaries" | "ColorProfiles" | "CompatibleBrands" | "CompressorID" | "CompressorName" | "ContentDescribes" | "CreationDate" | "CurrentTime" | "Duration" | "EncodedPixelsDimensions" | "FontName" | "GenBalance" | "GenFlags" | "GenGraphicsMode" | "GenMediaVersion" | "GenOpColor" | "GPSCoordinates" | "GraphicsMode" | "HandlerClass" | "HandlerDescription" | "HandlerType" | "HandlerVendorID" | "LocationAccuracyHorizontal" | "MajorBrand" | "MatrixCoefficients" | "MatrixStructure" | "MediaCreateDate" | "MediaDataOffset" | "MediaDataSize" | "MediaDuration" | "MediaHeaderVersion" | "MediaLanguageCode" | "MediaModifyDate" | "MediaTimeScale" | "MediaUID" | "MetaFormat" | "MinorVersion" | "MovieHeaderVersion" | "NextTrackID" | "OpColor" | "OtherFormat" | "PlaybackFrameRate" | "PlayMode" | "PosterTime" | "PreferredRate" | "PreferredVolume" | "PreviewDuration" | "PreviewTime" | "ProductionApertureDimensions" | "PurchaseFileFormat" | "SelectionDuration" | "SelectionTime" | "SerialNumberHash" | "SourceImageHeight" | "SourceImageWidth" | "TextColor" | "TextFace" | "TextFont" | "TextSize" | "TimecodeTrack" | "TimeScale" | "TrackCreateDate" | "TrackDuration" | "TrackHeaderVersion" | "TrackID" | "TrackLayer" | "TrackModifyDate" | "TrackVolume" | "TransferCharacteristics" | "VendorID" | "VideoFrameRate" | "VideoFullRangeFlag" | "ChromaticAberrationParams" | "FujiLayout" | "GeometricDistortionParams" | "RAFCompression" | "RawExposureBias" | "RawImageCroppedSize" | "RawImageCropTopLeft" | "RawImageFullHeight" | "RawImageFullSize" | "RawImageFullWidth" | "VignettingParams" | "XTransLayout" | "AudioCodec" | "AudioSampleCount" | "AvgBytesPerSec" | "Encoding" | "FrameCount" | "MaxDataRate" | "NumChannels" | "SampleRate" | "SampleSize" | "StreamCount" | "VideoCodec" | "VideoFrameCount" | "About" | "AbsoluteAltitude" | "Album" | "AlreadyApplied" | "ApproximateFocusDistance" | "AsrClimaxDuration" | "AsrClimaxScene" | "AsrIsMacroRange" | "AsrSceneCondition" | "AsrSceneMode" | "AutoLateralCA" | "BandName" | "BlueHue" | "BlueSaturation" | "BurstID" | "BurstPrimary" | "CameraBurstID" | "CameraFacing" | "CameraModelID" | "CameraProfile" | "CameraProfileDigest" | "Cameras" | "CameraUnit" | "CamReverse" | "CaptureMode" | "CaptureSoftware" | "CatalogSets" | "CellGlobalID" | "CellR" | "CellTowerID" | "CentralTemperature" | "CentralWavelength" | "Changes" | "CircularGradientBasedCorrections" | "ColorClass" | "ColorLabel" | "Colorlabels" | "ColorNoiseReduction" | "ColorNoiseReductionDetail" | "ColorNoiseReductionSmoothness" | "Comment" | "Container" | "ContainerDirectory" | "ConvertToGrayscale" | "Country" | "CountryCode" | "CreationTime" | "Creator" | "CreatorAppID" | "CreatorContactInfo" | "CreatorOpenWithUIOptions" | "Creatortool" | "CreatorTool" | "CropAngle" | "CropBottom" | "CropConstrainToWarp" | "CropLeft" | "CroppedAreaImageHeightPixels" | "CroppedAreaImageWidthPixels" | "CroppedAreaLeftPixels" | "CroppedAreaTopPixels" | "CropRight" | "CropTop" | "DateAcquired" | "DateCreated" | "DateTime" | "DateTimeDigitized" | "DateUTC" | "DefringeGreenAmount" | "DefringeGreenHueHi" | "DefringeGreenHueLo" | "DefringePurpleAmount" | "DefringePurpleHueHi" | "DefringePurpleHueLo" | "Dehaze" | "DerivedFrom" | "Description" | "DisableAutoCreation" | "DocumentID" | "Face" | "FaceNum" | "FaceSelectedIndex" | "Far" | "Firmware" | "FlashCompensation" | "FlashManufacturer" | "FlashPixVersion" | "FlightPitchDegree" | "FlightRollDegree" | "FlightYawDegree" | "FocusAreaHeight" | "FocusAreaNum" | "FocusAreaWidth" | "FocusIsLensMoving" | "FocusPosX" | "FocusPosY" | "FocusState" | "Format" | "FullPanoHeightPixels" | "FullPanoWidthPixels" | "GimbalPitchDegree" | "GimbalReverse" | "GimbalRollDegree" | "GimbalYawDegree" | "GrainAmount" | "GreenHue" | "GreenSaturation" | "HasCrop" | "HasExtendedXMP" | "HasSettings" | "HdrPlusMakernote" | "HDRPMakerNote" | "HierarchicalSubject" | "History" | "HueAdjustmentAqua" | "HueAdjustmentBlue" | "HueAdjustmentGreen" | "HueAdjustmentMagenta" | "HueAdjustmentOrange" | "HueAdjustmentPurple" | "HueAdjustmentRed" | "HueAdjustmentYellow" | "ICCProfileName" | "ImageLength" | "ImageNumber" | "InitialViewHeadingDegrees" | "InitialViewPitchDegrees" | "InitialViewRollDegrees" | "InstanceID" | "InteroperabilityIndex" | "InteroperabilityVersion" | "IsBokehActive" | "IsHDRActive" | "IsNightModeActive" | "Label" | "LastKeywordXMP" | "LegacyIPTCDigest" | "LensFacing" | "LensManualDistortionAmount" | "LensManufacturer" | "LensProfileEnable" | "LensProfileName" | "LensProfileSetup" | "LocationAreaCode" | "Look" | "LuminanceAdjustmentAqua" | "LuminanceAdjustmentBlue" | "LuminanceAdjustmentGreen" | "LuminanceAdjustmentMagenta" | "LuminanceAdjustmentOrange" | "LuminanceAdjustmentPurple" | "LuminanceAdjustmentRed" | "LuminanceAdjustmentYellow" | "LuminanceSmoothing" | "MakerNote" | "Marked" | "Mask" | "MetadataDate" | "MicroVideo" | "MicroVideoOffset" | "MicroVideoPresentationTimestampUs" | "MicroVideoVersion" | "Mime" | "MobileCountryCode" | "MobileNetworkCode" | "ModificationDate" | "MotionPhoto" | "MotionPhotoPresentationTimestampUs" | "MotionPhotoVersion" | "NativeDigest" | "Near" | "Notes" | "ObjectAreaHeight" | "ObjectAreaWidth" | "ObjectNum" | "ObjectPosX" | "ObjectPosY" | "OriginalCreateDateTime" | "OriginalDocumentID" | "OverrideLookVignette" | "ParametricDarks" | "ParametricHighlights" | "ParametricHighlightSplit" | "ParametricLights" | "ParametricMidtoneSplit" | "ParametricShadows" | "ParametricShadowSplit" | "PersonInImage" | "PerspectiveAspect" | "PerspectiveHorizontal" | "PerspectiveRotate" | "PerspectiveScale" | "PerspectiveUpright" | "PerspectiveVertical" | "PerspectiveX" | "PerspectiveY" | "PhotographicSensitivity" | "PickLabel" | "PipelineVersion" | "PMVersion" | "PortraitVersion" | "PoseHeadingDegrees" | "PosePitchDegrees" | "PoseRollDegrees" | "PostCropVignetteAmount" | "PreservedFileName" | "ProcessVersion" | "Profiles" | "ProgramMode" | "ProjectionType" | "Rating" | "RatingPercent" | "RawFileName" | "RedHue" | "RedSaturation" | "RegionInfo" | "RegionInfoMP" | "RegistryID" | "RelativeAltitude" | "Rights" | "SaturationAdjustmentAqua" | "SaturationAdjustmentBlue" | "SaturationAdjustmentGreen" | "SaturationAdjustmentMagenta" | "SaturationAdjustmentOrange" | "SaturationAdjustmentPurple" | "SaturationAdjustmentRed" | "SaturationAdjustmentYellow" | "Scene" | "SceneDetectResultConfidences" | "SceneDetectResultIds" | "SelfData" | "ShadowTint" | "SharpenDetail" | "SharpenEdgeMasking" | "SharpenRadius" | "SourcePhotosCount" | "SpecialTypeID" | "SplitToningBalance" | "SplitToningHighlightHue" | "SplitToningHighlightSaturation" | "SplitToningShadowHue" | "SplitToningShadowSaturation" | "State" | "StitchingSoftware" | "StreamType" | "Subject" | "SubsecTime" | "Tag" | "Tagged" | "TagsList" | "Tint" | "Title" | "TlinearGain" | "ToneCurveBlue" | "ToneCurveGreen" | "ToneCurveName" | "ToneCurvePV2012Blue" | "ToneCurvePV2012Green" | "ToneCurvePV2012Red" | "ToneCurveRed" | "ToneMapStrength" | "UprightCenterMode" | "UprightCenterNormX" | "UprightCenterNormY" | "UprightFocalLength35mm" | "UprightFocalMode" | "UprightFourSegmentsCount" | "UprightPreview" | "UprightTransformCount" | "UprightVersion" | "UsePanoramaViewer" | "Versions" | "Vibrance" | "VignetteAmount" | "WavelengthFWHM" | "XMPMeta" | "XMPToolkit">;
5145
+ export type TagName = StrEnumKeys<typeof TagNames>;