exiftool-vendored 23.6.0 → 24.0.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 (62) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/dist/BinaryExtractionTask.js +3 -3
  3. package/dist/BinaryExtractionTask.js.map +1 -1
  4. package/dist/BinaryToBufferTask.js +2 -2
  5. package/dist/BinaryToBufferTask.js.map +1 -1
  6. package/dist/DefaultExifToolOptions.js +0 -3
  7. package/dist/DefaultExifToolOptions.js.map +1 -1
  8. package/dist/DefaultMaxProcs.js +1 -1
  9. package/dist/DefaultMaxProcs.js.map +1 -1
  10. package/dist/Defined.d.ts +4 -0
  11. package/dist/Defined.js +3 -0
  12. package/dist/Defined.js.map +1 -0
  13. package/dist/ErrorsAndWarnings.d.ts +19 -0
  14. package/dist/ErrorsAndWarnings.js +13 -0
  15. package/dist/ErrorsAndWarnings.js.map +1 -0
  16. package/dist/ExifDate.d.ts +2 -0
  17. package/dist/ExifDate.js +2 -0
  18. package/dist/ExifDate.js.map +1 -1
  19. package/dist/ExifTool.d.ts +10 -42
  20. package/dist/ExifTool.js +9 -12
  21. package/dist/ExifTool.js.map +1 -1
  22. package/dist/ExifToolOptions.d.ts +0 -11
  23. package/dist/ExifToolOptions.js.map +1 -1
  24. package/dist/ExifToolTask.d.ts +2 -3
  25. package/dist/ExifToolTask.js +26 -18
  26. package/dist/ExifToolTask.js.map +1 -1
  27. package/dist/File.js +2 -2
  28. package/dist/File.js.map +1 -1
  29. package/dist/FindExiftool.js +2 -2
  30. package/dist/FindExiftool.js.map +1 -1
  31. package/dist/{IgnorableError.d.ts → IsWarning.d.ts} +1 -1
  32. package/dist/{IgnorableError.js → IsWarning.js} +11 -7
  33. package/dist/IsWarning.js.map +1 -0
  34. package/dist/IsWin32.js +1 -1
  35. package/dist/IsWin32.js.map +1 -1
  36. package/dist/MWGTags.d.ts +27 -0
  37. package/dist/MWGTags.js +3 -0
  38. package/dist/MWGTags.js.map +1 -0
  39. package/dist/RawTags.d.ts +2 -1
  40. package/dist/ReadRawTask.js +7 -2
  41. package/dist/ReadRawTask.js.map +1 -1
  42. package/dist/ReadTask.js +10 -5
  43. package/dist/ReadTask.js.map +1 -1
  44. package/dist/RewriteAllTagsTask.js +1 -1
  45. package/dist/RewriteAllTagsTask.js.map +1 -1
  46. package/dist/ShortcutTags.d.ts +12 -0
  47. package/dist/ShortcutTags.js +6 -0
  48. package/dist/ShortcutTags.js.map +1 -0
  49. package/dist/Sidecars.js +2 -2
  50. package/dist/Sidecars.js.map +1 -1
  51. package/dist/String.d.ts +5 -0
  52. package/dist/String.js +16 -1
  53. package/dist/String.js.map +1 -1
  54. package/dist/Tags.d.ts +857 -333
  55. package/dist/Timezones.d.ts +1 -1
  56. package/dist/Timezones.js.map +1 -1
  57. package/dist/WriteTags.d.ts +33 -1
  58. package/dist/WriteTask.d.ts +27 -3
  59. package/dist/WriteTask.js +38 -24
  60. package/dist/WriteTask.js.map +1 -1
  61. package/package.json +8 -8
  62. package/dist/IgnorableError.js.map +0 -1
package/dist/Tags.d.ts CHANGED
@@ -1,10 +1,12 @@
1
1
  import { ApplicationRecordTags } from "./ApplicationRecordTags";
2
2
  import { BinaryField } from "./BinaryField";
3
+ import { ErrorsAndWarnings } from "./ErrorsAndWarnings";
3
4
  import { ExifDate } from "./ExifDate";
4
5
  import { ExifDateTime } from "./ExifDateTime";
5
6
  import { ExifTime } from "./ExifTime";
6
7
  import { ICCProfileTags } from "./ICCProfileTags";
7
8
  import { ImageDataHashTag } from "./ImageDataHashTag";
9
+ import { MWGCollectionsTags, MWGKeywordTags } from "./MWGTags";
8
10
  import { ResourceEvent } from "./ResourceEvent";
9
11
  import { Struct } from "./Struct";
10
12
  import { Version } from "./Version";
@@ -19,23 +21,19 @@ export interface ExifToolTags {
19
21
  export interface FileTags {
20
22
  /** ☆☆☆☆ ✔ Example: "Windows V3" */
21
23
  BMPVersion?: string;
22
- /** ☆☆☆☆ ✔ Example: 24 */
23
- BitDepth?: number;
24
24
  /** ★★★★ ✔ Example: 8 */
25
25
  BitsPerSample?: number;
26
26
  /** ★★★★ ✔ Example: 3 */
27
27
  ColorComponents?: number;
28
- /** ☆☆☆☆ ✔ Example: "This is a comment." */
29
- Comment?: string;
30
- /** ☆☆☆☆ ✔ Example: "MJPG" */
31
- Compression?: string;
32
28
  /** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
33
29
  CurrentIPTCDigest?: string;
34
30
  /** ★★★★ ✔ Example: "/home/username/pictures" */
35
31
  Directory?: string;
36
32
  /** ★★★★ ✔ Example: "Progressive DCT, Huffman coding" */
37
33
  EncodingProcess?: string;
38
- /** ★★★★ ✔ Example: "2023:12:01 13:30:30-08:00" */
34
+ /** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
35
+ ExifByteOrder?: string;
36
+ /** ★★★★ ✔ Example: "2023:12:08 12:16:47-08:00" */
39
37
  FileAccessDate?: ExifDateTime | string;
40
38
  /** ★★★★ ✔ Example: "2023:11:20 12:27:22-08:00" */
41
39
  FileInodeChangeDate?: ExifDateTime | string;
@@ -53,11 +51,9 @@ export interface FileTags {
53
51
  FileTypeExtension?: string;
54
52
  /** ☆☆☆☆ Example: */
55
53
  ImageDataMD5?: string;
56
- /** ★★★★ ✔ Example: 8 */
54
+ /** ★★★★ ✔ Example: 960 */
57
55
  ImageHeight?: number;
58
- /** ☆☆☆☆ ✔ Example: 230400 */
59
- ImageLength?: number;
60
- /** ★★★★ ✔ Example: 8256 */
56
+ /** ★★★★ ✔ Example: 96 */
61
57
  ImageWidth?: number;
62
58
  /** ★★★★ ✔ Example: "video/x-msvideo" */
63
59
  MIMEType?: string;
@@ -71,8 +67,6 @@ export interface FileTags {
71
67
  PixelsPerMeterY?: number;
72
68
  /** ☆☆☆☆ ✔ Example: 1 */
73
69
  Planes?: number;
74
- /** ☆☆☆☆ ✔ Example: "(Binary data 315546 bytes, use -b option to extract)" */
75
- PreviewImage?: BinaryField;
76
70
  /** ★★★★ ✔ Example: "YCbCr4:4:4 (1 1)" */
77
71
  YCbCrSubSampling?: string;
78
72
  }
@@ -85,8 +79,6 @@ export interface CompositeTags {
85
79
  AutoFocus?: string;
86
80
  /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
87
81
  AvgBitrate?: string;
88
- /** ★★☆☆ ✔ Example: 4.914063 */
89
- BlueBalance?: number;
90
82
  /** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
91
83
  CFAPattern?: string;
92
84
  /** ★★★★ ✔ Example: "1.030 mm" */
@@ -95,84 +87,52 @@ export interface CompositeTags {
95
87
  ConditionalFEC?: number;
96
88
  /** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
97
89
  DOF?: string;
98
- /** ☆☆☆☆ Example: "2006:12:19" */
99
- DateCreated?: ExifDateTime | string;
100
- /** ☆☆☆☆ ✔ Example: "2022:10:25 11:21:56-07:00" */
101
- DateTimeCreated?: ExifDateTime | string;
102
- /** ☆☆☆☆ ✔ Example: "2017:02:20 18:06:40+00:00" */
103
- DateTimeOriginal?: ExifDateTime | string;
104
90
  /** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
105
91
  DigitalCreationDateTime?: ExifDateTime | string;
106
- /** ☆☆☆☆ ✔ Example: "4.00x" */
107
- DigitalZoom?: string;
108
- /** ★★☆☆ ✔ Example: "Single-frame Shooting" */
92
+ /** ★★☆☆ ✔ Example: "Unknown (3152)" */
109
93
  DriveMode?: string;
110
- /** ☆☆☆☆ ✔ Example: 25.866408 */
111
- Duration?: number;
112
94
  /** ☆☆☆☆ ✔ Example: "Not attached" */
113
95
  ExtenderStatus?: string;
114
96
  /** ★★★★ ✔ Example: "97.7 deg" */
115
97
  FOV?: string;
116
- /** ☆☆☆☆ ✔ Example: "Off, Did not fire" */
117
- Flash?: string;
118
- /** ☆☆☆☆ ✔ Example: "External" */
98
+ /** ☆☆☆☆ ✔ Example: "Optional,TTL" */
119
99
  FlashType?: string;
120
- /** ☆☆☆☆ ✔ Example: "inf" */
121
- FocusDistance?: string;
122
- /** ☆☆☆☆ ✔ Example: 99.8 */
123
- GPSAltitude?: number;
124
- /** ☆☆☆☆ ✔ Example: "Above Sea Level" */
125
- GPSAltitudeRef?: string;
100
+ /** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
101
+ FocalLength35efl?: string;
126
102
  /** ☆☆☆☆ ✔ Example: "2023:10:06 18:50:33Z" */
127
103
  GPSDateTime?: ExifDateTime | string;
128
- /** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
129
- GPSDestLatitude?: string;
130
- /** ☆☆☆☆ ✔ Example: "80 deg 23' 16.31" W" */
131
- GPSDestLongitude?: string;
132
- /** ☆☆☆☆ ✔ Example: 48.857748 */
133
- GPSLatitude?: number;
134
- /** ☆☆☆☆ ✔ Example: "North" */
135
- GPSLatitudeRef?: string;
136
- /** ☆☆☆☆ ✔ Example: 2.2918888 */
137
- GPSLongitude?: number;
138
- /** ☆☆☆☆ ✔ Example: "West" */
139
- GPSLongitudeRef?: string;
140
104
  /** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
141
105
  GPSPosition?: string;
142
106
  /** ★★★★ ✔ Example: "Inf m" */
143
107
  HyperfocalDistance?: string;
144
- /** ★★☆☆ ✔ Example: 993 */
145
- ISO?: number;
146
108
  /** ★★★★ ✔ Example: "8x8" */
147
109
  ImageSize?: string;
148
- /** ★★☆☆ ✔ Example: "9.2 - 92.0 mm" */
110
+ /** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
149
111
  Lens?: string;
150
112
  /** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
151
113
  Lens35efl?: string;
152
114
  /** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
153
115
  LensID?: string;
154
- /** ☆☆☆☆ ✔ Example: "85mm f/1.8 G" */
155
- LensSpec?: string;
156
- /** ☆☆☆☆ ✔ Example: "Olympus Zuiko Digital ED 50mm F2.0 Macro" */
157
- LensType?: string;
116
+ /** ★★★★ ✔ Example: 9.9 */
117
+ LightValue?: number;
158
118
  /** ★★★★ ✔ Example: 9.5 */
159
119
  Megapixels?: number;
160
120
  /** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
161
121
  OriginalDecisionData?: BinaryField | string;
162
122
  /** ☆☆☆☆ Example: "9.9 um" */
163
123
  PeakSpectralSensitivity?: string;
164
- /** ☆☆☆☆ ✔ Example: "816x459" */
165
- PreviewImageSize?: string;
166
- /** ★★☆☆ ✔ Example: 3.706667 */
167
- RedBalance?: number;
124
+ /** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
125
+ PreviewImage?: BinaryField;
168
126
  /** ☆☆☆☆ ✔ Example: "On" */
169
127
  RedEyeReduction?: string;
170
128
  /** ☆☆☆☆ Example: 11.2 */
171
129
  RicohPitch?: number;
172
130
  /** ☆☆☆☆ Example: 1.59 */
173
131
  RicohRoll?: number;
174
- /** ☆☆☆☆ ✔ Example: 90 */
132
+ /** ★☆☆☆ ✔ Example: "Unknown (0)" */
175
133
  Rotation?: number;
134
+ /** ☆☆☆☆ ✔ Example: "9:30:01" */
135
+ RunTimeSincePowerUp?: string;
176
136
  /** ★★★★ ✔ Example: 9.9 */
177
137
  ScaleFactor35efl?: number;
178
138
  /** ★★☆☆ ✔ Example: "Unknown (83)" */
@@ -201,7 +161,7 @@ export interface APP1Tags {
201
161
  CameraModel?: string;
202
162
  /** ☆☆☆☆ Example: "_______________" */
203
163
  CameraPartNumber?: string;
204
- /** ☆☆☆☆ Example: 8340330 */
164
+ /** ☆☆☆☆Example: 8340330 */
205
165
  CameraSerialNumber?: number;
206
166
  /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
207
167
  CameraSoftware?: string;
@@ -209,7 +169,7 @@ export interface APP1Tags {
209
169
  CreatorSoftware?: string;
210
170
  /** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
211
171
  DateTimeGenerated?: ExifDateTime | string;
212
- /** ☆☆☆☆ Example: "(Binary data 1011393 bytes, use -b option to extract)" */
172
+ /** ☆☆☆☆ Example: "(Binary data 275008 bytes, use -b option to extract)" */
213
173
  EmbeddedImage?: BinaryField | string;
214
174
  /** ☆☆☆☆ Example: 960 */
215
175
  EmbeddedImageHeight?: number;
@@ -217,8 +177,6 @@ export interface APP1Tags {
217
177
  EmbeddedImageType?: string;
218
178
  /** ☆☆☆☆ Example: 640 */
219
179
  EmbeddedImageWidth?: number;
220
- /** ☆☆☆☆ Example: 1 */
221
- Emissivity?: number;
222
180
  /** ☆☆☆☆ Example: "46.1 deg" */
223
181
  FieldOfView?: string;
224
182
  /** ☆☆☆☆ Example: "NOF" */
@@ -227,30 +185,18 @@ export interface APP1Tags {
227
185
  FilterPartNumber?: string;
228
186
  /** ☆☆☆☆ Example: "00000000" */
229
187
  FilterSerialNumber?: string;
230
- /** ☆☆☆☆ Example: 9149 */
188
+ /** ☆☆☆☆Example: "inf" */
189
+ FocusDistance?: string;
190
+ /** ☆☆☆☆ ✔ Example: 98 */
231
191
  FocusStepCount?: number;
232
- /** ☆☆☆☆ Example: 9 */
192
+ /** ☆☆☆☆Example: 9 */
233
193
  FrameRate?: number;
234
- /** ☆☆☆☆ Example: 1.9 */
235
- GPSDOP?: number;
236
- /** ☆☆☆☆ Example: 94 */
237
- GPSImgDirection?: number;
238
- /** ☆☆☆☆ Example: "Magnetic North" */
239
- GPSImgDirectionRef?: string;
240
- /** ☆☆☆☆ Example: "WGS84" */
241
- GPSMapDatum?: string;
242
- /** ☆☆☆☆ Example: 20.56 */
243
- GPSSpeed?: number;
244
- /** ☆☆☆☆ Example: "km/h" */
245
- GPSSpeedRef?: string;
246
- /** ☆☆☆☆ Example: 88.01 */
194
+ /** ☆☆☆☆Example: 88.01 */
247
195
  GPSTrack?: number;
248
- /** ☆☆☆☆ Example: "True North" */
196
+ /** ☆☆☆☆Example: "True North" */
249
197
  GPSTrackRef?: string;
250
198
  /** ☆☆☆☆ Example: "Yes" */
251
199
  GPSValid?: string;
252
- /** ☆☆☆☆ Example: "2.2.0.0" */
253
- GPSVersionID?: string;
254
200
  /** ☆☆☆☆ Example: "7.4 C" */
255
201
  IRWindowTemperature?: string;
256
202
  /** ☆☆☆☆ Example: 1 */
@@ -259,12 +205,8 @@ export interface APP1Tags {
259
205
  Isotherm1Color?: string;
260
206
  /** ☆☆☆☆ Example: "92 115 209" */
261
207
  Isotherm2Color?: string;
262
- /** ☆☆☆☆ Example: "N/A" */
263
- LensModel?: string;
264
208
  /** ☆☆☆☆ Example: "T199104" */
265
209
  LensPartNumber?: string;
266
- /** ☆☆☆☆ Example: "No Lens" */
267
- LensSerialNumber?: string;
268
210
  /** ☆☆☆☆ Example: 1 */
269
211
  Meas1Label?: number;
270
212
  /** ☆☆☆☆ Example: "80 60" */
@@ -277,8 +219,6 @@ export interface APP1Tags {
277
219
  Meas2Params?: string;
278
220
  /** ☆☆☆☆ Example: "Spot" */
279
221
  Meas2Type?: string;
280
- /** ☆☆☆☆ Example: "9.70 m" */
281
- ObjectDistance?: string;
282
222
  /** ☆☆☆☆ Example: "+98" */
283
223
  OffsetX?: string;
284
224
  /** ☆☆☆☆ Example: "+51" */
@@ -319,8 +259,6 @@ export interface APP1Tags {
319
259
  Real2IR?: number;
320
260
  /** ☆☆☆☆ Example: "26.7 C" */
321
261
  ReflectedApparentTemperature?: string;
322
- /** ☆☆☆☆ Example: "80.0 %" */
323
- RelativeHumidity?: string;
324
262
  /** ☆☆☆☆ Example: "41 110 240" */
325
263
  UnderflowColor?: string;
326
264
  }
@@ -341,8 +279,6 @@ export interface APP12Tags {
341
279
  BSd?: number;
342
280
  /** ☆☆☆☆ Example: 1908 */
343
281
  BStrobe?: number;
344
- /** ☆☆☆☆ Example: 0 */
345
- Balance?: number;
346
282
  /** ☆☆☆☆ Example: 2438 */
347
283
  Bgain?: number;
348
284
  /** ☆☆☆☆ Example: 33 */
@@ -361,14 +297,12 @@ export interface APP12Tags {
361
297
  COLOR3?: number;
362
298
  /** ☆☆☆☆ ✔ Example: 5 */
363
299
  COLOR4?: number;
364
- /** ☆☆☆☆ ✔ Example: "SR83" */
365
- CameraType?: string;
366
300
  /** ☆☆☆☆ Example: 2 */
367
301
  Case?: number;
368
302
  /** ☆☆☆☆ Example: 1 */
369
303
  Color?: number;
370
- /** ☆☆☆☆ ✔ Example: 1 */
371
- ColorMode?: number;
304
+ /** ★★☆☆ ✔ Example: "n/a" */
305
+ ColorMode?: string;
372
306
  /** ☆☆☆☆ ✔ Example: 0 */
373
307
  ContTake?: number;
374
308
  /** ☆☆☆☆ ✔ Example: 8501 */
@@ -381,24 +315,14 @@ export interface APP12Tags {
381
315
  ExposRatio?: number;
382
316
  /** ☆☆☆☆ Example: 3687 */
383
317
  Exposure?: number;
384
- /** ☆☆☆☆ ✔ Example: 0 */
385
- ExposureCompensation?: number;
386
- /** ☆☆☆☆ ✔ Example: "1/8" */
387
- ExposureTime?: string;
388
318
  /** ☆☆☆☆ Example: 192 */
389
319
  FMean?: number;
390
- /** ☆☆☆☆ ✔ Example: 8 */
391
- FNumber?: number;
392
320
  /** ☆☆☆☆ Example: 1 */
393
321
  FinalRatio?: number;
394
- /** ☆☆☆☆ Example: "v2.2.16" */
395
- FirmwareVersion?: string;
396
322
  /** ☆☆☆☆ Example: 640 */
397
323
  FlashTime?: number;
398
324
  /** ☆☆☆☆ ✔ Example: "F2.8" */
399
325
  Fnumber?: string;
400
- /** ☆☆☆☆ Example: 2 */
401
- FocusMode?: number;
402
326
  /** ☆☆☆☆ Example: 136 */
403
327
  FocusPos?: number;
404
328
  /** ☆☆☆☆ Example: 2152 */
@@ -421,16 +345,12 @@ export interface APP12Tags {
421
345
  GSd?: number;
422
346
  /** ☆☆☆☆ Example: 85 */
423
347
  Gain?: number;
424
- /** ☆☆☆☆ Example: 0 */
425
- Gamma?: number;
426
348
  /** ☆☆☆☆ ✔ Example: "PDR-M60" */
427
349
  ID?: string;
428
350
  /** ☆☆☆☆ ✔ Example: 696880 */
429
351
  JPEG1?: number;
430
352
  /** ☆☆☆☆ ✔ Example: 0 */
431
353
  LightS?: number;
432
- /** ☆☆☆☆ ✔ Example: "Off" */
433
- Macro?: string;
434
354
  /** ☆☆☆☆ Example: " 10.6" */
435
355
  Mean?: string;
436
356
  /** ☆☆☆☆ Example: 26 */
@@ -441,8 +361,6 @@ export interface APP12Tags {
441
361
  PicLen?: number;
442
362
  /** ☆☆☆☆ ✔ Example: 0 */
443
363
  Protect?: number;
444
- /** ☆☆☆☆ Example: 97 */
445
- Quality?: number;
446
364
  /** ☆☆☆☆ Example: 6929 */
447
365
  R5100?: number;
448
366
  /** ☆☆☆☆ ✔ Example: "DCPT" */
@@ -467,8 +385,6 @@ export interface APP12Tags {
467
385
  Roff?: number;
468
386
  /** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
469
387
  S0?: string;
470
- /** ☆☆☆☆ ✔ Example: "#00000001" */
471
- SerialNumber?: string;
472
388
  /** ☆☆☆☆ Example: 0 */
473
389
  StrobeTime?: number;
474
390
  /** ☆☆☆☆ ✔ Example: "bd1,1,5,2beec,b5,ec15" */
@@ -483,7 +399,7 @@ export interface APP12Tags {
483
399
  TagS?: string;
484
400
  /** ☆☆☆☆ ✔ Example: 4016 */
485
401
  ThmLen?: number;
486
- /** ☆☆☆☆ ✔ Example: "vf0-3c" */
402
+ /** ★☆☆☆ ✔ Example: "vf0-3c" */
487
403
  Version?: string;
488
404
  /** ☆☆☆☆ Example: 4054 */
489
405
  YLevel?: number;
@@ -501,22 +417,44 @@ export interface APP14Tags {
501
417
  DCTEncodeVersion?: number;
502
418
  }
503
419
  export interface APP4Tags {
504
- /** ☆☆☆☆ ✔ Example: 976 */
505
- PreviewImageHeight?: number;
506
- /** ☆☆☆☆Example: 816 */
507
- PreviewImageWidth?: number;
508
- /** ☆☆☆☆Example: 95 */
509
- PreviewQuality?: number;
420
+ /** ☆☆☆☆ ✔ Example: "40 C" */
421
+ AmbientTemperature?: string;
422
+ /** ☆☆☆☆ Example: 1 */
423
+ Emissivity?: number;
424
+ /** ☆☆☆☆ Example: "80.0 %" */
425
+ RelativeHumidity?: string;
510
426
  }
511
427
  export interface APP5Tags {
512
- /** ☆☆☆☆ Example: "E" */
428
+ /** ☆☆☆☆ Example: 45 */
513
429
  Compass?: string;
514
430
  }
431
+ export interface APP6Tags {
432
+ /** ☆☆☆☆ ✔ Example: 800 */
433
+ AutoISOMax?: number;
434
+ /** ☆☆☆☆ ✔ Example: 3200 */
435
+ AutoISOMin?: number;
436
+ /** ☆☆☆☆ ✔ Example: "Up" */
437
+ AutoRotation?: string;
438
+ /** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
439
+ DeviceName?: string;
440
+ /** ☆☆☆☆ ✔ Example: "On (Manual)" */
441
+ HDRSetting?: string;
442
+ /** ☆☆☆☆ ✔ Example: "AUTO" */
443
+ MaximumShutterAngle?: string;
444
+ /** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
445
+ MediaUniqueID?: string;
446
+ /** ☆☆☆☆ ✔ Example: "7.6.4" */
447
+ MetadataVersion?: string;
448
+ /** ☆☆☆☆ ✔ Example: "12MP_W" */
449
+ PhotoResolution?: string;
450
+ /** ☆☆☆☆ ✔ Example: "On" */
451
+ ProTune?: string;
452
+ /** ☆☆☆☆ ✔ Example: "4_1SEC" */
453
+ Rate?: string;
454
+ }
515
455
  export interface EXIFTags {
516
456
  /** ☆☆☆☆ ✔ Example: 978279 */
517
457
  Acceleration?: number;
518
- /** ☆☆☆☆ ✔ Example: "22.6 C" */
519
- AmbientTemperature?: string;
520
458
  /** ☆☆☆☆ ✔ Example: "2.225585938 1 2.039794922" */
521
459
  AnalogBalance?: string;
522
460
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -525,12 +463,14 @@ export interface EXIFTags {
525
463
  ApertureValue?: number;
526
464
  /** ★☆☆☆ ✔ Example: "Arturo DeImage" */
527
465
  Artist?: string;
466
+ /** ☆☆☆☆ ✔ Example: "1 1 1" */
467
+ AsShotNeutral?: string;
528
468
  /** ☆☆☆☆ ✔ Example: 3.0021124 */
529
469
  BaselineExposure?: number;
530
470
  /** ☆☆☆☆ ✔ Example: 1.5 */
531
471
  BaselineSharpness?: number;
532
- /** ☆☆☆☆ ✔ Example: 528 */
533
- BlackLevel?: number;
472
+ /** ☆☆☆☆ ✔ Example: "94 95 93 93" */
473
+ BlackLevel?: string;
534
474
  /** ☆☆☆☆ ✔ Example: 130 */
535
475
  BlackLevelBlue?: number;
536
476
  /** ☆☆☆☆ ✔ Example: 130 */
@@ -539,52 +479,76 @@ export interface EXIFTags {
539
479
  BlackLevelRed?: number;
540
480
  /** ☆☆☆☆ ✔ Example: "1 1" */
541
481
  BlackLevelRepeatDim?: string;
542
- /** ★★☆☆ ✔ Example: 9.9919505 */
482
+ /** ★★★☆ ✔ Example: 9.9919505 */
543
483
  BrightnessValue?: number;
544
484
  /** ☆☆☆☆ ✔ Example: "Red,Green,Blue" */
545
485
  CFAPlaneColor?: string;
546
486
  /** ☆☆☆☆ ✔ Example: "2 2" */
547
487
  CFARepeatPatternDim?: string;
548
- /** ☆☆☆☆ ✔ Example: "32 2048 1920 1792 1664 1664 1536 1408 1280 1152 1024 896 …96 1280" */
549
- ChromaticAberrationCorrParams?: string;
550
- /** ☆☆☆☆ ✔ Example: "Off" */
488
+ /** ☆☆☆☆ ✔ Example: "On" */
551
489
  ChromaticAberrationCorrection?: string;
490
+ /** ★★★★ ✔ Example: "sRGB" */
491
+ ColorSpace?: string;
492
+ /** ★★★★ ✔ Example: "Y, Cr, Cb, -" */
493
+ ComponentsConfiguration?: string;
552
494
  /** ☆☆☆☆ ✔ Example: "Unknown" */
553
495
  CompositeImage?: string;
554
496
  /** ★★★★ ✔ Example: 90 */
555
497
  CompressedBitsPerPixel?: number;
556
- /** ★★★☆ ✔ Example: "Unknown (99)" */
498
+ /** ★★★★ ✔ Example: "Unknown (1536)" */
499
+ Compression?: string;
500
+ /** ★★★★ ✔ Example: "n/a" */
557
501
  Contrast?: string;
558
502
  /** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
559
503
  Copyright?: string;
560
504
  /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
561
505
  CreateDate?: ExifDateTime | string;
506
+ /** ★★★★ ✔ Example: "Unknown (Custom process)" */
507
+ CustomRendered?: string;
562
508
  /** ☆☆☆☆ ✔ Example: "1.3.0.0" */
563
509
  DNGBackwardVersion?: string;
564
510
  /** ☆☆☆☆ ✔ Example: "1.6.0.0" */
565
511
  DNGVersion?: string;
512
+ /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
513
+ DateTimeOriginal?: ExifDateTime | string;
566
514
  /** ☆☆☆☆ ✔ Example: "None" */
567
515
  DefaultBlackRender?: string;
568
516
  /** ☆☆☆☆ ✔ Example: "8 8" */
569
517
  DefaultCropOrigin?: string;
570
518
  /** ☆☆☆☆ ✔ Example: "8272 6200" */
571
519
  DefaultCropSize?: string;
572
- /** ☆☆☆☆ ✔ Example: "(Binary data 0 bytes, use -b option to extract)" */
520
+ /** ☆☆☆☆ ✔ Example: "(Binary data 4 bytes, use -b option to extract)" */
573
521
  DeviceSettingDescription?: BinaryField | string;
574
522
  /** ★★★☆ ✔ Example: 8.1319764 */
575
523
  DigitalZoomRatio?: number;
576
- /** ☆☆☆☆ ✔ Example: "16 3 -3 -16 -35 -62 -94 -135 -178 -226 -274 -326 -377 -42…23 -564" */
577
- DistortionCorrParams?: string;
578
- /** ☆☆☆☆ ✔ Example: "No correction params available" */
579
- DistortionCorrection?: string;
580
524
  /** ☆☆☆☆ Example: "" */
581
525
  DocumentName?: string;
582
526
  /** ★★★★ ✔ Example: 990 */
583
527
  ExifImageHeight?: number;
584
528
  /** ★★★★ ✔ Example: 999 */
585
529
  ExifImageWidth?: number;
530
+ /** ★★★★ ✔ Example: "Version 2.2" */
531
+ ExifVersion?: string;
532
+ /** ★★★★ ✔ Example: 1 */
533
+ ExposureCompensation?: number;
534
+ /** ★☆☆☆ ✔ Example: 83 */
535
+ ExposureIndex?: number;
536
+ /** ★★★★ ✔ Example: "Unknown (Auto exposure)" */
537
+ ExposureMode?: string;
538
+ /** ★★★★ ✔ Example: "iAuto+" */
539
+ ExposureProgram?: string;
540
+ /** ★★★★ ✔ Example: "inf" */
541
+ ExposureTime?: string;
542
+ /** ★★★★ ✔ Example: 90 */
543
+ FNumber?: number;
544
+ /** ★★★★ ✔ Example: "Unknown (DSC)" */
545
+ FileSource?: string;
546
+ /** ★★★★ ✔ Example: "Unknown (0xffff)" */
547
+ Flash?: string;
586
548
  /** ☆☆☆☆ ✔ Example: 54 */
587
549
  FlashEnergy?: number;
550
+ /** ★★★★ ✔ Example: "?" */
551
+ FlashpixVersion?: string;
588
552
  /** ★★★★ ✔ Example: "99.7 mm" */
589
553
  FocalLength?: string;
590
554
  /** ★★★☆ ✔ Example: "9920 mm" */
@@ -595,8 +559,14 @@ export interface EXIFTags {
595
559
  FocalPlaneXResolution?: number;
596
560
  /** ★★★☆ ✔ Example: 9846.1538 */
597
561
  FocalPlaneYResolution?: number;
562
+ /** ★☆☆☆ ✔ Example: 99.8 */
563
+ GPSAltitude?: number;
564
+ /** ☆☆☆☆ ✔ Example: "Unknown (Sea level reference)" */
565
+ GPSAltitudeRef?: string;
598
566
  /** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
599
567
  GPSAreaInformation?: string;
568
+ /** ☆☆☆☆ ✔ Example: 9 */
569
+ GPSDOP?: number;
600
570
  /** ☆☆☆☆ ✔ Example: "2023:10:06" */
601
571
  GPSDateStamp?: ExifDate | string;
602
572
  /** ☆☆☆☆ ✔ Example: 86.180049 */
@@ -605,24 +575,54 @@ export interface EXIFTags {
605
575
  GPSDestBearingRef?: string;
606
576
  /** ☆☆☆☆ ✔ Example: 0.030120052 */
607
577
  GPSDestDistance?: number;
578
+ /** ☆☆☆☆ ✔ Example: "Kilometers" */
579
+ GPSDestDistanceRef?: string;
580
+ /** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
581
+ GPSDestLatitude?: string;
608
582
  /** ☆☆☆☆ ✔ Example: "North" */
609
583
  GPSDestLatitudeRef?: string;
584
+ /** ☆☆☆☆ ✔ Example: "80 deg 23' 16.31" W" */
585
+ GPSDestLongitude?: string;
610
586
  /** ☆☆☆☆ ✔ Example: "West" */
611
587
  GPSDestLongitudeRef?: string;
612
588
  /** ☆☆☆☆ ✔ Example: "No Correction" */
613
589
  GPSDifferential?: string;
614
590
  /** ☆☆☆☆ ✔ Example: "8.937059922 m" */
615
591
  GPSHPositioningError?: string;
592
+ /** ☆☆☆☆ ✔ Example: 94.800416 */
593
+ GPSImgDirection?: number;
594
+ /** ☆☆☆☆ ✔ Example: "Unknown ()" */
595
+ GPSImgDirectionRef?: string;
596
+ /** ★☆☆☆ ✔ Example: 48.857748 */
597
+ GPSLatitude?: number;
598
+ /** ☆☆☆☆ ✔ Example: "Unknown ()" */
599
+ GPSLatitudeRef?: string;
600
+ /** ★☆☆☆ ✔ Example: 2.2918888 */
601
+ GPSLongitude?: number;
602
+ /** ☆☆☆☆ ✔ Example: "West" */
603
+ GPSLongitudeRef?: string;
604
+ /** ☆☆☆☆ ✔ Example: "WGS84" */
605
+ GPSMapDatum?: string;
606
+ /** ☆☆☆☆ ✔ Example: "Unknown ()" */
607
+ GPSMeasureMode?: string;
616
608
  /** ☆☆☆☆ ✔ Example: "gps" */
617
609
  GPSProcessingMethod?: string;
618
610
  /** ☆☆☆☆ ✔ Example: "??B??" */
619
611
  GPSSatellites?: string;
612
+ /** ☆☆☆☆ ✔ Example: 5 */
613
+ GPSSpeed?: number;
614
+ /** ☆☆☆☆ ✔ Example: "knots" */
615
+ GPSSpeedRef?: string;
620
616
  /** ☆☆☆☆ ✔ Example: "Unknown ()" */
621
617
  GPSStatus?: string;
622
618
  /** ☆☆☆☆ ✔ Example: "23:59:41.001" */
623
619
  GPSTimeStamp?: ExifTime | string;
620
+ /** ★☆☆☆ ✔ Example: "50.51.48.48" */
621
+ GPSVersionID?: string;
624
622
  /** ★★★☆ ✔ Example: "Unknown (8176)" */
625
623
  GainControl?: string;
624
+ /** ☆☆☆☆ ✔ Example: 2.4921875 */
625
+ Gamma?: number;
626
626
  /** ☆☆☆☆ ✔ Example: 1 */
627
627
  HighISOMultiplierBlue?: number;
628
628
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -631,14 +631,16 @@ export interface EXIFTags {
631
631
  HighISOMultiplierRed?: number;
632
632
  /** ☆☆☆☆ ✔ Example: "iPhone 13 Pro Max" */
633
633
  HostComputer?: string;
634
- /** ☆☆☆☆ ✔ Example: 598 */
634
+ /** ★★★★ ✔ Example: 993 */
635
+ ISO?: number;
636
+ /** ☆☆☆☆ ✔ Example: 80 */
635
637
  ISOSpeed?: number;
636
638
  /** ★★★☆ ✔ Example: "untitled" */
637
639
  ImageDescription?: string;
638
- /** ☆☆☆☆ ✔ Example: 43991 */
639
- ImageNumber?: number;
640
- /** ☆☆☆☆ ✔ Example: "fa5fdfee65f3a6e05fe7d4692b9112a7" */
641
- ImageUniqueID?: string;
640
+ /** ★★★★ ✔ Example: "Unknown ([None])" */
641
+ InteropIndex?: string;
642
+ /** ★★★★ ✔ Example: "undef undef undef" */
643
+ InteropVersion?: string;
642
644
  /** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
643
645
  JpgFromRaw?: BinaryField;
644
646
  /** ☆☆☆☆ ✔ Example: 845574 */
@@ -649,6 +651,10 @@ export interface EXIFTags {
649
651
  LensInfo?: string;
650
652
  /** ☆☆☆☆ ✔ Example: "ZEISS" */
651
653
  LensMake?: string;
654
+ /** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
655
+ LensModel?: string;
656
+ /** ★☆☆☆ ✔ Example: "xB?" */
657
+ LensSerialNumber?: string;
652
658
  /** ★★★★ ✔ Example: "White Fluorescent" */
653
659
  LightSource?: string;
654
660
  /** ☆☆☆☆ ✔ Example: 4095 */
@@ -667,6 +673,10 @@ export interface EXIFTags {
667
673
  MakerNoteUnknownBinary?: BinaryField | string;
668
674
  /** ☆☆☆☆ ✔ Example: "}:-" */
669
675
  MakerNoteUnknownText?: string;
676
+ /** ★★★★ ✔ Example: 9.1 */
677
+ MaxApertureValue?: number;
678
+ /** ★★★★ ✔ Example: "Unknown (Center-weighted average)" */
679
+ MeteringMode?: string;
670
680
  /** ★★★★ ✔ Example: "x530" */
671
681
  Model?: string;
672
682
  /** ☆☆☆☆ ✔ Example: "K520C-01044" */
@@ -697,8 +707,6 @@ export interface EXIFTags {
697
707
  OtherImageLength?: number;
698
708
  /** ☆☆☆☆ ✔ Example: 755 */
699
709
  OtherImageStart?: number;
700
- /** ☆☆☆☆ ✔ Example: "Itsa Myowna" */
701
- OwnerName?: string;
702
710
  /** ☆☆☆☆ ✔ Example: "(Binary data 2060 bytes, use -b option to extract)" */
703
711
  Padding?: BinaryField | string;
704
712
  /** ☆☆☆☆ ✔ Example: "Reflective" */
@@ -715,10 +723,6 @@ export interface EXIFTags {
715
723
  Pressure?: number;
716
724
  /** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
717
725
  PreviewDateTime?: ExifDateTime | string;
718
- /** ☆☆☆☆ ✔ Example: 895146 */
719
- PreviewImageLength?: number;
720
- /** ☆☆☆☆ ✔ Example: 9996 */
721
- PreviewImageStart?: number;
722
726
  /** ☆☆☆☆ ✔ Example: "(Binary data 4665816 bytes, use -b option to extract)" */
723
727
  PreviewTIFF?: BinaryField | string;
724
728
  /** ☆☆☆☆ ✔ Example: "0.64 0.33 0.3 0.6 0.15 0.06" */
@@ -731,10 +735,6 @@ export interface EXIFTags {
731
735
  ProfileName?: string;
732
736
  /** ☆☆☆☆ ✔ Example: "(Binary data 7195 bytes, use -b option to extract)" */
733
737
  ProfileToneCurve?: BinaryField | string;
734
- /** ☆☆☆☆ ✔ Example: 3 */
735
- Rating?: number;
736
- /** ☆☆☆☆ ✔ Example: 50 */
737
- RatingPercent?: number;
738
738
  /** ☆☆☆☆ ✔ Example: 928768 */
739
739
  RawDataOffset?: number;
740
740
  /** ☆☆☆☆ ✔ Example: "30353330394431333030303032383242" */
@@ -747,44 +747,44 @@ export interface EXIFTags {
747
747
  RecommendedExposureIndex?: number;
748
748
  /** ☆☆☆☆ ✔ Example: "0 255 128 255 128 255" */
749
749
  ReferenceBlackWhite?: string;
750
+ /** ☆☆☆☆ Example: "JPEG Exif Ver 2.2" */
751
+ RelatedImageFileFormat?: string;
750
752
  /** ★★☆☆ ✔ Example: 960 */
751
753
  RelatedImageHeight?: number;
752
754
  /** ★★☆☆ ✔ Example: 800 */
753
755
  RelatedImageWidth?: number;
754
756
  /** ☆☆☆☆ ✔ Example: "xxx.avi" */
755
757
  RelatedSoundFile?: string;
758
+ /** ★★★★ ✔ Example: "inches" */
759
+ ResolutionUnit?: string;
756
760
  /** ☆☆☆☆ ✔ Example: 96 */
757
761
  RowsPerStrip?: number;
758
762
  /** ☆☆☆☆ ✔ Example: 4 */
759
763
  SRawType?: number;
760
764
  /** ☆☆☆☆ ✔ Example: 3 */
761
765
  SamplesPerPixel?: number;
762
- /** ★★★☆ ✔ Example: "Unknown (8)" */
766
+ /** ★★★★ ✔ Example: "n/a" */
763
767
  Saturation?: string;
764
- /** ★★★★ ✔ Example: "Unknown (9)" */
768
+ /** ★★★★ ✔ Example: "Unknown (Standard)" */
769
+ SceneCaptureType?: string;
770
+ /** ★★★★ ✔ Example: "Unknown (Directly photographed)" */
765
771
  SceneType?: string;
766
772
  /** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
767
773
  SemanticName?: string;
768
- /** ★★★☆ ✔ Example: "Unknown (74)" */
774
+ /** ★★★☆ ✔ Example: "Unknown (One-chip color area sensor)" */
769
775
  SensingMethod?: string;
770
776
  /** ★★☆☆ ✔ Example: "Unknown" */
771
777
  SensitivityType?: string;
772
- /** ☆☆☆☆ ✔ Example: 3464 */
773
- SensorBottomBorder?: number;
774
- /** ☆☆☆☆ ✔ Example: 3472 */
775
- SensorHeight?: number;
776
- /** ☆☆☆☆ ✔ Example: 8 */
777
- SensorLeftBorder?: number;
778
- /** ☆☆☆☆ ✔ Example: 4616 */
779
- SensorRightBorder?: number;
780
- /** ☆☆☆☆ ✔ Example: 8 */
781
- SensorTopBorder?: number;
782
- /** ☆☆☆☆ ✔ Example: 4816 */
783
- SensorWidth?: number;
784
- /** ★★★☆ ✔ Example: "Unknown (7824)" */
778
+ /** ★★★★ ✔ Example: "n/a" */
785
779
  Sharpness?: string;
786
780
  /** ★★★☆ ✔ Example: "1/999963365" */
787
781
  ShutterSpeedValue?: string;
782
+ /** ★★★★ ✔ Example: "https://PhotoStructure.com/" */
783
+ Software?: string;
784
+ /** ☆☆☆☆ ✔ Example: "Sony Uncompressed 12-bit RAW" */
785
+ SonyRawFileType?: string;
786
+ /** ☆☆☆☆ ✔ Example: "8000 10400 12900 14100" */
787
+ SonyToneCurve?: string;
788
788
  /** ☆☆☆☆ ✔ Example: 668058300 */
789
789
  SpatialFrequencyResponse?: number;
790
790
  /** ☆☆☆☆ ✔ Example: 800 */
@@ -797,49 +797,49 @@ export interface EXIFTags {
797
797
  SubSecTime?: number;
798
798
  /** ★☆☆☆ ✔ Example: 996 */
799
799
  SubSecTimeDigitized?: number;
800
+ /** ★☆☆☆ ✔ Example: 999 */
801
+ SubSecTimeOriginal?: number;
800
802
  /** ☆☆☆☆ ✔ Example: "Semantic Mask" */
801
803
  SubfileType?: string;
802
804
  /** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
803
805
  SubjectArea?: string;
804
806
  /** ☆☆☆☆ ✔ Example: "99.99 m" */
805
807
  SubjectDistance?: string;
806
- /** ★★★☆ ✔ Example: "Unknown (4400)" */
808
+ /** ★★★☆ ✔ Example: "Unknown (Macro)" */
807
809
  SubjectDistanceRange?: string;
808
- /** ★★★★ ✔ Example: "(Binary data 39781 bytes, use -b option to extract)" */
810
+ /** ☆☆☆☆ ✔ Example: 1 */
811
+ SubjectLocation?: number;
812
+ /** ★★★★ ✔ Example: "(Binary data 10202 bytes, use -b option to extract)" */
809
813
  ThumbnailImage?: BinaryField;
814
+ /** ★★★★ ✔ Example: 9998 */
815
+ ThumbnailLength?: number;
816
+ /** ★★★★ ✔ Example: 998 */
817
+ ThumbnailOffset?: number;
810
818
  /** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
811
819
  ThumbnailTIFF?: BinaryField;
812
820
  /** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
813
821
  TileByteCounts?: BinaryField | string;
814
822
  /** ☆☆☆☆ ✔ Example: 512 */
815
823
  TileLength?: number;
816
- /** ☆☆☆☆ ✔ Example: "(Binary data 507 bytes, use -b option to extract)" */
824
+ /** ☆☆☆☆ ✔ Example: "(Binary data 508 bytes, use -b option to extract)" */
817
825
  TileOffsets?: BinaryField | string;
818
826
  /** ☆☆☆☆ ✔ Example: 512 */
819
827
  TileWidth?: number;
820
828
  /** ☆☆☆☆ ✔ Example: 1 */
821
829
  TimeZoneOffset?: number | string;
822
- /** ☆☆☆☆ Example: 0 */
823
- Title?: string;
824
830
  /** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
825
831
  TransferFunction?: BinaryField | string;
826
832
  /** ☆☆☆☆ ✔ Example: "motorola XT1254" */
827
833
  UniqueCameraModel?: string;
828
834
  /** ★★★☆ ✔ Example: "This is a comment." */
829
835
  UserComment?: string;
830
- /** ☆☆☆☆ ✔ Example: "16 0 32 144 336 592 912 1280 1712 2208 2736 3312 3920 454…72 6544" */
831
- VignettingCorrParams?: string;
832
- /** ☆☆☆☆ ✔ Example: "Off" */
833
- VignettingCorrection?: string;
834
- /** ☆☆☆☆ ✔ Example: 538 */
835
- WBBlueLevel?: number;
836
- /** ☆☆☆☆ ✔ Example: 265 */
837
- WBGreenLevel?: number;
838
- /** ☆☆☆☆ ✔ Example: 737 */
839
- WBRedLevel?: number;
840
836
  /** ☆☆☆☆ ✔ Example: 0.1 */
841
837
  WaterDepth?: number;
842
- /** ☆☆☆☆ ✔ Example: "0.4234 0.399" */
838
+ /** ★★★★ ✔ Example: "White Preset" */
839
+ WhiteBalance?: string;
840
+ /** ☆☆☆☆ ✔ Example: 65535 */
841
+ WhiteLevel?: number;
842
+ /** ☆☆☆☆ ✔ Example: "9696 8192 8192 7136" */
843
843
  WhitePoint?: string;
844
844
  /** ☆☆☆☆ ✔ Example: "Norm De Plume" */
845
845
  XPAuthor?: string;
@@ -851,34 +851,14 @@ export interface EXIFTags {
851
851
  XPSubject?: string;
852
852
  /** ☆☆☆☆ ✔ Example: "楆慮敤琠牡敤攠汉慨䈠汥Ⅱ" */
853
853
  XPTitle?: string;
854
+ /** ★★★★ ✔ Example: 99 */
855
+ XResolution?: number;
854
856
  /** ☆☆☆☆ ✔ Example: "0.299 0.587 0.114" */
855
857
  YCbCrCoefficients?: string;
856
- }
857
- export interface APP6Tags {
858
- /** ☆☆☆☆ ✔ Example: 800 */
859
- AutoISOMax?: number;
860
- /** ☆☆☆☆ ✔ Example: 3200 */
861
- AutoISOMin?: number;
862
- /** ☆☆☆☆ ✔ Example: "Up" */
863
- AutoRotation?: string;
864
- /** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
865
- DeviceName?: string;
866
- /** ☆☆☆☆ ✔ Example: "OFF" */
867
- HDRSetting?: string;
868
- /** ☆☆☆☆ ✔ Example: "AUTO" */
869
- MaximumShutterAngle?: string;
870
- /** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
871
- MediaUniqueID?: string;
872
- /** ☆☆☆☆ ✔ Example: "7.6.4" */
873
- MetadataVersion?: string;
874
- /** ☆☆☆☆ ✔ Example: "12MP_W" */
875
- PhotoResolution?: string;
876
- /** ☆☆☆☆ ✔ Example: "On" */
877
- ProTune?: string;
878
- /** ☆☆☆☆ ✔ Example: "4_1SEC" */
879
- Rate?: string;
880
- /** ☆☆☆☆ ✔ Example: "AUTO" */
881
- WhiteBalance?: string;
858
+ /** ★★★★ ✔ Example: "Unknown (512)" */
859
+ YCbCrPositioning?: string;
860
+ /** ★★★★ ✔ Example: 99 */
861
+ YResolution?: number;
882
862
  }
883
863
  export interface FlashPixTags {
884
864
  /** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
@@ -904,64 +884,6 @@ export interface FlashPixTags {
904
884
  /** ☆☆☆☆ ✔ Example: 1 */
905
885
  UsedExtensionNumbers?: number;
906
886
  }
907
- export interface IPTCTags {
908
- /** ☆☆☆☆ ✔ Example: 4 */
909
- ApplicationRecordVersion?: number;
910
- /** ☆☆☆☆ Example: */
911
- "Caption-Abstract"?: string;
912
- /** ☆☆☆☆ ✔ Example: "" */
913
- Category?: string;
914
- /** ☆☆☆☆ ✔ Example: "Seattle" */
915
- City?: string;
916
- /** ☆☆☆☆ ✔ Example: "UTF8" */
917
- CodedCharacterSet?: string;
918
- /** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
919
- Contact?: string;
920
- /** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
921
- Credit?: string;
922
- /** ☆☆☆☆ ✔ Example: "" */
923
- DateSent?: string;
924
- /** ☆☆☆☆ ✔ Example: "" */
925
- Destination?: string;
926
- /** ☆☆☆☆ ✔ Example: "2021:03:16" */
927
- DigitalCreationDate?: ExifDate | string;
928
- /** ☆☆☆☆ ✔ Example: "20:25:15" */
929
- DigitalCreationTime?: ExifTime | string;
930
- /** ☆☆☆☆ ✔ Example: "" */
931
- EnvelopeNumber?: string;
932
- /** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
933
- EnvelopePriority?: string;
934
- /** ☆☆☆☆ ✔ Example: "Tagged Image File Format (Adobe/Aldus Image data)" */
935
- FileFormat?: string;
936
- /** ☆☆☆☆ ✔ Example: 2 */
937
- FileVersion?: number;
938
- /** ☆☆☆☆ ✔ Example: "" */
939
- Headline?: string;
940
- /** ☆☆☆☆ ✔ Example: ["red","car"] */
941
- Keywords?: string | string[];
942
- /** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
943
- ObjectName?: string;
944
- /** ☆☆☆☆ ✔ Example: "" */
945
- OriginalTransmissionReference?: string;
946
- /** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
947
- Prefs?: string;
948
- /** ☆☆☆☆ ✔ Example: "4.13.0" */
949
- ProgramVersion?: string;
950
- /** ☆☆☆☆ ✔ Example: "" */
951
- ServiceIdentifier?: string;
952
- /** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
953
- Source?: string;
954
- /** ☆☆☆☆ ✔ Example: "" */
955
- SpecialInstructions?: string;
956
- /** ☆☆☆☆ ✔ Example: "" */
957
- SupplementalCategories?: string;
958
- /** ☆☆☆☆ ✔ Example: "23:47:07+01:00" */
959
- TimeCreated?: ExifTime | string;
960
- /** ☆☆☆☆ ✔ Example: "" */
961
- TimeSent?: string;
962
- /** ☆☆☆☆ ✔ Example: "0 (reserved)" */
963
- Urgency?: string;
964
- }
965
887
  export interface MPFTags {
966
888
  /** ★★☆☆ ✔ Example: 9697 */
967
889
  DependentImage1EntryNumber?: number;
@@ -1015,8 +937,6 @@ export interface MetaTags {
1015
937
  FilmProductCode?: number;
1016
938
  /** ☆☆☆☆ Example: 1 */
1017
939
  FilmSize?: number;
1018
- /** ☆☆☆☆ Example: 16 */
1019
- FrameNumber?: number;
1020
940
  /** ☆☆☆☆ Example: 6 */
1021
941
  ImageSourceEK?: number;
1022
942
  /** ☆☆☆☆ ✔ Example: "0110" */
@@ -1032,6 +952,72 @@ export interface PanasonicRawTags {
1032
952
  /** ☆☆☆☆ ✔ Example: 7 */
1033
953
  NumWBEntries?: number;
1034
954
  }
955
+ export interface IPTCTags {
956
+ /** ☆☆☆☆ ✔ Example: 4 */
957
+ ApplicationRecordVersion?: number;
958
+ /** ☆☆☆☆ Example: */
959
+ "Caption-Abstract"?: string;
960
+ /** ☆☆☆☆ ✔ Example: "Other" */
961
+ Category?: string;
962
+ /** ☆☆☆☆ ✔ Example: "TEDDINGTON" */
963
+ City?: string;
964
+ /** ☆☆☆☆ ✔ Example: "UTF8" */
965
+ CodedCharacterSet?: string;
966
+ /** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
967
+ Contact?: string;
968
+ /** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
969
+ CopyrightNotice?: string;
970
+ /** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
971
+ Credit?: string;
972
+ /** ☆☆☆☆ ✔ Example: "" */
973
+ DateSent?: string;
974
+ /** ☆☆☆☆ ✔ Example: "2022:10:25 11:21:56-07:00" */
975
+ DateTimeCreated?: ExifDateTime | string;
976
+ /** ☆☆☆☆ ✔ Example: "" */
977
+ Destination?: string;
978
+ /** ☆☆☆☆ ✔ Example: "2021:03:16" */
979
+ DigitalCreationDate?: ExifDate | string;
980
+ /** ☆☆☆☆ ✔ Example: "20:25:15" */
981
+ DigitalCreationTime?: ExifTime | string;
982
+ /** ☆☆☆☆ ✔ Example: "" */
983
+ EnvelopeNumber?: string;
984
+ /** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
985
+ EnvelopePriority?: string;
986
+ /** ☆☆☆☆ ✔ Example: 4 */
987
+ EnvelopeRecordVersion?: number;
988
+ /** ☆☆☆☆ ✔ Example: "X3F" */
989
+ FileFormat?: string;
990
+ /** ☆☆☆☆ ✔ Example: 2 */
991
+ FileVersion?: number;
992
+ /** ☆☆☆☆ ✔ Example: "" */
993
+ Headline?: string;
994
+ /** ☆☆☆☆ ✔ Example: ["red","car"] */
995
+ Keywords?: string | string[];
996
+ /** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
997
+ ObjectName?: string;
998
+ /** ☆☆☆☆ ✔ Example: "" */
999
+ OriginalTransmissionReference?: string;
1000
+ /** ☆☆☆☆ ✔ Example: "digiKam" */
1001
+ OriginatingProgram?: string;
1002
+ /** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
1003
+ Prefs?: string;
1004
+ /** ☆☆☆☆ ✔ Example: "4.13.0" */
1005
+ ProgramVersion?: string;
1006
+ /** ☆☆☆☆ ✔ Example: "" */
1007
+ ServiceIdentifier?: string;
1008
+ /** ☆☆☆☆ ✔ Example: "Renee Lanette Sims" */
1009
+ Source?: string;
1010
+ /** ☆☆☆☆ ✔ Example: "" */
1011
+ SpecialInstructions?: string;
1012
+ /** ☆☆☆☆ ✔ Example: "" */
1013
+ SupplementalCategories?: string;
1014
+ /** ☆☆☆☆ ✔ Example: "23:59:46.92" */
1015
+ TimeCreated?: ExifTime | string;
1016
+ /** ☆☆☆☆ ✔ Example: "" */
1017
+ TimeSent?: string;
1018
+ /** ☆☆☆☆ ✔ Example: "1 (most urgent)" */
1019
+ Urgency?: string;
1020
+ }
1035
1021
  export interface PhotoshopTags {
1036
1022
  /** ☆☆☆☆ ✔ Example: true */
1037
1023
  CopyrightFlag?: boolean;
@@ -1039,20 +1025,34 @@ export interface PhotoshopTags {
1039
1025
  DisplayedUnitsX?: string;
1040
1026
  /** ☆☆☆☆ ✔ Example: "inches" */
1041
1027
  DisplayedUnitsY?: string;
1028
+ /** ☆☆☆☆ ✔ Example: 30 */
1029
+ GlobalAltitude?: number;
1030
+ /** ☆☆☆☆ ✔ Example: 90 */
1031
+ GlobalAngle?: number;
1032
+ /** ☆☆☆☆ ✔ Example: "Yes" */
1033
+ HasRealMergedData?: string;
1042
1034
  /** ☆☆☆☆ ✔ Example: "fd826cdf97ac15335b426a20d23c1041" */
1043
1035
  IPTCDigest?: string;
1036
+ /** ☆☆☆☆ ✔ Example: 1 */
1037
+ NumSlices?: number;
1044
1038
  /** ☆☆☆☆ ✔ Example: "Standard" */
1045
1039
  PhotoshopFormat?: string;
1046
1040
  /** ☆☆☆☆ ✔ Example: 9 */
1047
1041
  PhotoshopQuality?: number;
1048
1042
  /** ☆☆☆☆ ✔ Example: "(Binary data 5768 bytes, use -b option to extract)" */
1049
1043
  PhotoshopThumbnail?: BinaryField | string;
1044
+ /** ☆☆☆☆ ✔ Example: "0 0" */
1045
+ PrintPosition?: string;
1050
1046
  /** ☆☆☆☆ ✔ Example: 1 */
1051
- PixelAspectRatio?: number;
1052
- /** ☆☆☆☆ ✔ Example: 72 */
1053
- XResolution?: number;
1054
- /** ☆☆☆☆ ✔ Example: 72 */
1055
- YResolution?: number;
1047
+ PrintScale?: number;
1048
+ /** ☆☆☆☆ ✔ Example: "Centered" */
1049
+ PrintStyle?: string;
1050
+ /** ☆☆☆☆ ✔ Example: "Adobe Photoshop CS" */
1051
+ ReaderName?: string;
1052
+ /** ☆☆☆☆ ✔ Example: "panasonic_lumix_dmc_lx15_02" */
1053
+ SlicesGroupName?: string;
1054
+ /** ☆☆☆☆ ✔ Example: "Adobe Photoshop" */
1055
+ WriterName?: string;
1056
1056
  }
1057
1057
  export interface PrintIMTags {
1058
1058
  /** ★★★☆ ✔ Example: "0300" */
@@ -1080,6 +1080,10 @@ export interface QuickTimeTags {
1080
1080
  /** ☆☆☆☆ ✔ Example: "65535 65535 65535" */
1081
1081
  BackgroundColor?: string;
1082
1082
  /** ☆☆☆☆ ✔ Example: 0 */
1083
+ Balance?: number;
1084
+ /** ☆☆☆☆ ✔ Example: 8 */
1085
+ BitDepth?: number;
1086
+ /** ☆☆☆☆ ✔ Example: 0 */
1083
1087
  ChapterListTrackID?: number;
1084
1088
  /** ☆☆☆☆ ✔ Example: "3840x2160" */
1085
1089
  CleanApertureDimensions?: string;
@@ -1099,12 +1103,24 @@ export interface QuickTimeTags {
1099
1103
  CreationDate?: ExifDateTime | string;
1100
1104
  /** ☆☆☆☆ ✔ Example: "0 s" */
1101
1105
  CurrentTime?: string;
1106
+ /** ☆☆☆☆ ✔ Example: 9.5095 */
1107
+ Duration?: number;
1102
1108
  /** ☆☆☆☆ ✔ Example: "3840x2160" */
1103
1109
  EncodedPixelsDimensions?: string;
1104
1110
  /** ☆☆☆☆ ✔ Example: "Helvetica" */
1105
1111
  FontName?: string;
1106
1112
  /** ☆☆☆☆ ✔ Example: "51 deg 6' 13.32" N, 0 deg 52' 23.52" W, 99.22 m Above Sea Level" */
1107
1113
  GPSCoordinates?: string;
1114
+ /** ☆☆☆☆ ✔ Example: 0 */
1115
+ GenBalance?: number;
1116
+ /** ☆☆☆☆ ✔ Example: "0 0 0" */
1117
+ GenFlags?: string;
1118
+ /** ☆☆☆☆ ✔ Example: "ditherCopy" */
1119
+ GenGraphicsMode?: string;
1120
+ /** ☆☆☆☆ ✔ Example: 0 */
1121
+ GenMediaVersion?: number;
1122
+ /** ☆☆☆☆ ✔ Example: "32768 32768 32768" */
1123
+ GenOpColor?: string;
1108
1124
  /** ☆☆☆☆ ✔ Example: "srcCopy" */
1109
1125
  GraphicsMode?: string;
1110
1126
  /** ☆☆☆☆ ✔ Example: "Data Handler" */
@@ -1113,6 +1129,8 @@ export interface QuickTimeTags {
1113
1129
  HandlerDescription?: string;
1114
1130
  /** ☆☆☆☆ ✔ Example: "Metadata Tags" */
1115
1131
  HandlerType?: string;
1132
+ /** ☆☆☆☆ ✔ Example: "Panasonic" */
1133
+ HandlerVendorID?: string;
1116
1134
  /** ☆☆☆☆ ✔ Example: 4.798027 */
1117
1135
  LocationAccuracyHorizontal?: number;
1118
1136
  /** ☆☆☆☆ ✔ Example: "MP4 v2 [ISO 14496-14]" */
@@ -1131,6 +1149,8 @@ export interface QuickTimeTags {
1131
1149
  MediaDuration?: number;
1132
1150
  /** ☆☆☆☆ ✔ Example: 0 */
1133
1151
  MediaHeaderVersion?: number;
1152
+ /** ☆☆☆☆ ✔ Example: "und" */
1153
+ MediaLanguageCode?: string;
1134
1154
  /** ☆☆☆☆ ✔ Example: "2023:06:11 13:30:46" */
1135
1155
  MediaModifyDate?: ExifDateTime | string;
1136
1156
  /** ☆☆☆☆ ✔ Example: 8000 */
@@ -1171,8 +1191,6 @@ export interface QuickTimeTags {
1171
1191
  SelectionTime?: string;
1172
1192
  /** ☆☆☆☆ ✔ Example: "43333139313032343731363032300000" */
1173
1193
  SerialNumberHash?: string;
1174
- /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
1175
- Software?: string;
1176
1194
  /** ☆☆☆☆ ✔ Example: 720 */
1177
1195
  SourceImageHeight?: number;
1178
1196
  /** ☆☆☆☆ ✔ Example: 640 */
@@ -1207,18 +1225,30 @@ export interface QuickTimeTags {
1207
1225
  TransferCharacteristics?: string;
1208
1226
  /** ☆☆☆☆ ✔ Example: "Panasonic" */
1209
1227
  VendorID?: string;
1210
- /** ☆☆☆☆ ✔ Example: 60 */
1211
- VideoFrameRate?: number;
1228
+ /** ☆☆☆☆ ✔ Example: "n/a" */
1229
+ VideoFrameRate?: string;
1212
1230
  /** ☆☆☆☆ ✔ Example: 0 */
1213
1231
  VideoFullRangeFlag?: number;
1214
1232
  }
1215
1233
  export interface RAFTags {
1234
+ /** ☆☆☆☆ ✔ 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" */
1235
+ ChromaticAberrationParams?: string;
1236
+ /** ☆☆☆☆ ✔ Example: "12 12 12 12" */
1237
+ FujiLayout?: string;
1238
+ /** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0…5 0.488" */
1239
+ GeometricDistortionParams?: string;
1216
1240
  /** ☆☆☆☆ ✔ Example: -1.7 */
1217
1241
  RawExposureBias?: number;
1218
1242
  /** ☆☆☆☆ ✔ Example: "6 16" */
1219
1243
  RawImageCropTopLeft?: string;
1244
+ /** ☆☆☆☆ ✔ Example: "4896x3264" */
1245
+ RawImageCroppedSize?: string;
1246
+ /** ☆☆☆☆ ✔ Example: 3296 */
1247
+ RawImageFullHeight?: number;
1220
1248
  /** ☆☆☆☆ ✔ Example: "5120x3288" */
1221
1249
  RawImageFullSize?: string;
1250
+ /** ☆☆☆☆ ✔ Example: 5120 */
1251
+ RawImageFullWidth?: number;
1222
1252
  /** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100 9…3 94.11" */
1223
1253
  VignettingParams?: string;
1224
1254
  /** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
@@ -1245,8 +1275,6 @@ export interface RIFFTags {
1245
1275
  SampleSize?: string;
1246
1276
  /** ☆☆☆☆ ✔ Example: 2 */
1247
1277
  StreamCount?: number;
1248
- /** ☆☆☆☆ ✔ Example: "Video" */
1249
- StreamType?: string;
1250
1278
  /** ☆☆☆☆ ✔ Example: "mjpg" */
1251
1279
  VideoCodec?: string;
1252
1280
  /** ☆☆☆☆ ✔ Example: 388 */
@@ -1255,8 +1283,6 @@ export interface RIFFTags {
1255
1283
  export interface JFIFTags {
1256
1284
  /** ★★★☆ ✔ Example: 1.02 */
1257
1285
  JFIFVersion?: number;
1258
- /** ★★★☆ ✔ Example: "inches" */
1259
- ResolutionUnit?: string;
1260
1286
  }
1261
1287
  export interface MakerNotesTags {
1262
1288
  /** ☆☆☆☆ Example: "(Binary data 1024 bytes, use -b option to extract)" */
@@ -1269,10 +1295,18 @@ export interface MakerNotesTags {
1269
1295
  AEAperture?: number;
1270
1296
  /** ☆☆☆☆ ✔ Example: 8 */
1271
1297
  AEApertureSteps?: number;
1298
+ /** ☆☆☆☆ ✔ Example: 51 */
1299
+ AEAverage?: number;
1300
+ /** ☆☆☆☆ ✔ Example: "On" */
1301
+ AEBAutoCancel?: string;
1272
1302
  /** ★★☆☆ ✔ Example: 0 */
1273
1303
  AEBBracketValue?: number;
1304
+ /** ☆☆☆☆ ✔ Example: "0,-,+" */
1305
+ AEBSequence?: string;
1274
1306
  /** ☆☆☆☆ ✔ Example: "0,-,+/Enabled" */
1275
1307
  AEBSequenceAutoCancel?: string;
1308
+ /** ☆☆☆☆ ✔ Example: "7 shots" */
1309
+ AEBShotCount?: string;
1276
1310
  /** ☆☆☆☆ ✔ Example: 0.5 */
1277
1311
  AEBXv?: number;
1278
1312
  /** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
@@ -1315,6 +1349,12 @@ export interface MakerNotesTags {
1315
1349
  AEMinExposureTime?: string;
1316
1350
  /** ☆☆☆☆ ✔ Example: "Sv or Green Mode" */
1317
1351
  AEProgramMode?: string;
1352
+ /** ★☆☆☆ ✔ Example: "Normal AE" */
1353
+ AESetting?: string;
1354
+ /** ☆☆☆☆ ✔ Example: "Yes" */
1355
+ AEStable?: string;
1356
+ /** ☆☆☆☆ ✔ Example: 243 */
1357
+ AETarget?: number;
1318
1358
  /** ☆☆☆☆ Example: "Daylight Fluorescent" */
1319
1359
  AEWhiteBalance?: string;
1320
1360
  /** ☆☆☆☆ ✔ Example: 0.5 */
@@ -1331,6 +1371,8 @@ export interface MakerNotesTags {
1331
1371
  AFAperture?: number;
1332
1372
  /** ☆☆☆☆ ✔ Example: 840 */
1333
1373
  AFAreaHeight?: number;
1374
+ /** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
1375
+ AFAreaHeights?: string;
1334
1376
  /** ☆☆☆☆ ✔ Example: "Auto" */
1335
1377
  AFAreaIllumination?: string;
1336
1378
  /** ★★★☆ ✔ Example: "Zone AF" */
@@ -1345,10 +1387,16 @@ export interface MakerNotesTags {
1345
1387
  AFAreaSelectionMethod?: string;
1346
1388
  /** ☆☆☆☆ ✔ Example: 996 */
1347
1389
  AFAreaWidth?: number;
1390
+ /** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
1391
+ AFAreaWidths?: string;
1348
1392
  /** ☆☆☆☆ ✔ Example: 4388 */
1349
1393
  AFAreaXPosition?: number;
1394
+ /** ★☆☆☆ ✔ Example: "999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
1395
+ AFAreaXPositions?: string;
1350
1396
  /** ☆☆☆☆ ✔ Example: 744 */
1351
1397
  AFAreaYPosition?: number;
1398
+ /** ★☆☆☆ ✔ Example: "950 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
1399
+ AFAreaYPositions?: string;
1352
1400
  /** ☆☆☆☆ ✔ Example: "n/a" */
1353
1401
  AFAreaZoneSize?: string;
1354
1402
  /** ☆☆☆☆ ✔ Example: "none" */
@@ -1361,6 +1409,8 @@ export interface MakerNotesTags {
1361
1409
  AFAssistLamp?: string;
1362
1410
  /** ☆☆☆☆ ✔ Example: "No" */
1363
1411
  AFButtonPressed?: string;
1412
+ /** ☆☆☆☆ ✔ Example: 4 */
1413
+ AFConfidence?: number;
1364
1414
  /** ☆☆☆☆ ✔ Example: "Case 11" */
1365
1415
  AFConfigTool?: string;
1366
1416
  /** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
@@ -1379,10 +1429,16 @@ export interface MakerNotesTags {
1379
1429
  AFFineTuneIndex?: string;
1380
1430
  /** ☆☆☆☆ ✔ Example: "Off" */
1381
1431
  AFIlluminator?: string;
1432
+ /** ★☆☆☆ ✔ Example: 88 */
1433
+ AFImageHeight?: number;
1434
+ /** ★☆☆☆ ✔ Example: 8688 */
1435
+ AFImageWidth?: number;
1382
1436
  /** ☆☆☆☆ ✔ Example: "0400" */
1383
1437
  AFInfo2Version?: string;
1384
1438
  /** ☆☆☆☆ ✔ Example: "90 ms" */
1385
1439
  AFIntegrationTime?: string;
1440
+ /** ☆☆☆☆ ✔ Example: 489 */
1441
+ AFMeasuredDepth?: number;
1386
1442
  /** ☆☆☆☆ ✔ Example: 0 */
1387
1443
  AFMicroAdj?: number;
1388
1444
  /** ☆☆☆☆ ✔ Example: "Unknown (3)" */
@@ -1393,6 +1449,8 @@ export interface MakerNotesTags {
1393
1449
  AFMicroAdjValue?: number;
1394
1450
  /** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
1395
1451
  AFMicroadjustment?: string;
1452
+ /** ★☆☆☆ ✔ Example: "Zone" */
1453
+ AFMode?: string;
1396
1454
  /** ☆☆☆☆ ✔ Example: "Off" */
1397
1455
  AFModeRestrictions?: string;
1398
1456
  /** ☆☆☆☆ ✔ Example: "Enable" */
@@ -1413,6 +1471,8 @@ export interface MakerNotesTags {
1413
1471
  AFPointBrightness?: string;
1414
1472
  /** ☆☆☆☆ ✔ Example: 897 */
1415
1473
  AFPointDetails?: number;
1474
+ /** ☆☆☆☆ ✔ Example: "Selected (pre-AF, focused)" */
1475
+ AFPointDisplayDuringFocus?: string;
1416
1476
  /** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
1417
1477
  AFPointIllumination?: string;
1418
1478
  /** ☆☆☆☆ ✔ Example: "Left (vertical)" */
@@ -1461,6 +1521,8 @@ export interface MakerNotesTags {
1461
1521
  AFType?: string;
1462
1522
  /** ☆☆☆☆ ✔ Example: "On" */
1463
1523
  AFWithShutter?: string;
1524
+ /** ☆☆☆☆ ✔ Example: "Shooting not possible without focus" */
1525
+ AIServoContinuousShooting?: string;
1464
1526
  /** ☆☆☆☆ ✔ Example: "Focus Priority" */
1465
1527
  AIServoFirstImage?: string;
1466
1528
  /** ☆☆☆☆ ✔ Example: "Unknown (2)" */
@@ -1475,22 +1537,40 @@ export interface MakerNotesTags {
1475
1537
  AIServoTrackingMethod?: string;
1476
1538
  /** ☆☆☆☆ ✔ Example: "Standard" */
1477
1539
  AIServoTrackingSensitivity?: string;
1540
+ /** ☆☆☆☆ ✔ Example: "Off; Object Not Found" */
1541
+ AISubjectTrackingMode?: string;
1478
1542
  /** ☆☆☆☆ ✔ Example: 2 */
1479
1543
  AccelerationTracking?: number;
1480
1544
  /** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
1481
1545
  AccelerationVector?: string;
1482
1546
  /** ☆☆☆☆ Example: "358.3 11.2" */
1483
1547
  Accelerometer?: string;
1548
+ /** ☆☆☆☆ ✔ Example: 9 */
1549
+ AccelerometerX?: number;
1550
+ /** ☆☆☆☆ ✔ Example: 80 */
1551
+ AccelerometerY?: number;
1552
+ /** ☆☆☆☆ ✔ Example: 31 */
1553
+ AccelerometerZ?: number;
1554
+ /** ☆☆☆☆ ✔ Example: "00:00" */
1555
+ AccessorySerialNumber?: string;
1556
+ /** ☆☆☆☆ ✔ Example: "NO-ACCESSORY" */
1557
+ AccessoryType?: string;
1484
1558
  /** ☆☆☆☆ Example: "+0.0" */
1485
1559
  ActualCompensation?: string;
1486
1560
  /** ☆☆☆☆ ✔ Example: "Off" */
1487
1561
  AddAspectRatioInfo?: string;
1488
1562
  /** ☆☆☆☆ ✔ Example: "Disable" */
1489
1563
  AddIPTCInformation?: string;
1564
+ /** ☆☆☆☆ ✔ Example: "On" */
1565
+ AddOriginalDecisionData?: string;
1490
1566
  /** ☆☆☆☆ Example: "X3F Setting Mode" */
1491
1567
  AdjustmentMode?: string;
1568
+ /** ☆☆☆☆ ✔ Example: "Toy Camera" */
1569
+ AdvancedFilter?: string;
1492
1570
  /** ☆☆☆☆ ✔ Example: 9 */
1493
1571
  AdvancedSceneType?: number;
1572
+ /** ☆☆☆☆ ✔ Example: "91 m" */
1573
+ Altitude?: string;
1494
1574
  /** ☆☆☆☆ ✔ Example: "Standard" */
1495
1575
  AmbienceSelection?: string;
1496
1576
  /** ☆☆☆☆ Example: "95 F" */
@@ -1511,12 +1591,16 @@ export interface MakerNotesTags {
1511
1591
  ApproximateFNumber?: number;
1512
1592
  /** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
1513
1593
  ArtFilter?: string;
1594
+ /** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter…0; 0; 0" */
1595
+ ArtFilterEffect?: string;
1514
1596
  /** ☆☆☆☆ Example: "Unknown (8305)" */
1515
1597
  ArtMode?: string;
1516
1598
  /** ☆☆☆☆ Example: "0 0 0" */
1517
1599
  ArtModeParameters?: string;
1518
1600
  /** ☆☆☆☆ ✔ Example: "0 192 4607 3263" */
1519
1601
  AspectFrame?: string;
1602
+ /** ★☆☆☆ ✔ Example: "Unknown (942874672)" */
1603
+ AspectRatio?: string;
1520
1604
  /** ☆☆☆☆ ✔ Example: "Auto Bracketing" */
1521
1605
  AssignBktButton?: string;
1522
1606
  /** ☆☆☆☆ ✔ Example: "LCD brightness" */
@@ -1557,12 +1641,16 @@ export interface MakerNotesTags {
1557
1641
  AutoBracketOrder?: string;
1558
1642
  /** ☆☆☆☆ ✔ Example: "Exposure" */
1559
1643
  AutoBracketSet?: string;
1644
+ /** ★☆☆☆ ✔ Example: "On" */
1645
+ AutoBracketing?: string;
1560
1646
  /** ☆☆☆☆ ✔ Example: "Flash/Speed" */
1561
1647
  AutoBracketingMode?: string;
1562
1648
  /** ☆☆☆☆ ✔ Example: "AE Only" */
1563
1649
  AutoBracketingSet?: string;
1564
1650
  /** ☆☆☆☆ ✔ Example: "On" */
1565
1651
  AutoDistortionControl?: string;
1652
+ /** ☆☆☆☆ ✔ Example: "400%" */
1653
+ AutoDynamicRange?: string;
1566
1654
  /** ★★☆☆ ✔ Example: "On" */
1567
1655
  AutoExposureBracketing?: string;
1568
1656
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1577,6 +1665,8 @@ export interface MakerNotesTags {
1577
1665
  AutoLightingOptimizer?: string;
1578
1666
  /** ☆☆☆☆ ✔ Example: "No" */
1579
1667
  AutoPortraitFramed?: string;
1668
+ /** ★☆☆☆ ✔ Example: "Rotate 90 CW" */
1669
+ AutoRotate?: string;
1580
1670
  /** ☆☆☆☆ ✔ Example: "Off" */
1581
1671
  AuxiliaryLens?: string;
1582
1672
  /** ☆☆☆☆ ✔ Example: 6.7 */
@@ -1595,8 +1685,10 @@ export interface MakerNotesTags {
1595
1685
  BabyAge?: string;
1596
1686
  /** ☆☆☆☆ ✔ Example: "" */
1597
1687
  BabyName?: string;
1598
- /** ☆☆☆☆ ✔ Example: "A0E3S7000218RC" */
1688
+ /** ☆☆☆☆ ✔ Example: "R0000148" */
1599
1689
  Barcode?: string;
1690
+ /** ☆☆☆☆ ✔ Example: "0100" */
1691
+ BarometerInfoVersion?: string;
1600
1692
  /** ☆☆☆☆ ✔ Example: 0 */
1601
1693
  BaseExposureCompensation?: number;
1602
1694
  /** ★★☆☆ ✔ Example: 800 */
@@ -1609,6 +1701,8 @@ export interface MakerNotesTags {
1609
1701
  BatteryState?: string;
1610
1702
  /** ☆☆☆☆ ✔ Example: "50.6 C" */
1611
1703
  BatteryTemperature?: string;
1704
+ /** ☆☆☆☆ ✔ Example: "NB-13L" */
1705
+ BatteryType?: string;
1612
1706
  /** ☆☆☆☆ Example: "8.52 V" */
1613
1707
  BatteryVoltage?: string;
1614
1708
  /** ☆☆☆☆ Example: "Unknown (0)" */
@@ -1635,8 +1729,14 @@ export interface MakerNotesTags {
1635
1729
  BlackPoint?: string;
1636
1730
  /** ☆☆☆☆ Example: "n/a" */
1637
1731
  BleachBypassToning?: string;
1732
+ /** ★★☆☆ ✔ Example: 46 */
1733
+ BlueBalance?: number;
1734
+ /** ☆☆☆☆ Example: "5C" */
1735
+ BlueGain?: string;
1638
1736
  /** ☆☆☆☆ Example: "Off; 0; 0; 0" */
1639
1737
  BlurControl?: string;
1738
+ /** ★☆☆☆ ✔ Example: "None" */
1739
+ BlurWarning?: string;
1640
1740
  /** ☆☆☆☆ ✔ Example: "28 C" */
1641
1741
  BoardTemperature?: string;
1642
1742
  /** ☆☆☆☆ ✔ Example: 165 */
@@ -1659,20 +1759,22 @@ export interface MakerNotesTags {
1659
1759
  BracketSequence?: string;
1660
1760
  /** ☆☆☆☆ ✔ Example: "AE/Flash" */
1661
1761
  BracketSet?: string;
1762
+ /** ☆☆☆☆ ✔ Example: "No Bracket" */
1763
+ BracketSettings?: string;
1662
1764
  /** ☆☆☆☆ ✔ Example: 0 */
1663
1765
  BracketShotNumber?: number;
1664
1766
  /** ☆☆☆☆ Example: "Unknown (429458713)" */
1665
1767
  BracketStep?: string;
1666
1768
  /** ☆☆☆☆ ✔ Example: 12 */
1667
1769
  BracketValue?: number;
1668
- /** ☆☆☆☆ ✔ Example: 9.25 */
1669
- Brightness?: number;
1670
1770
  /** ☆☆☆☆ Example: "SU6-7" */
1671
1771
  BuildNumber?: string;
1672
1772
  /** ★★☆☆ ✔ Example: 0 */
1673
1773
  BulbDuration?: number;
1674
1774
  /** ☆☆☆☆ ✔ Example: "Unlimited" */
1675
1775
  BurstMode?: string;
1776
+ /** ☆☆☆☆ Example: 3 */
1777
+ BurstShot?: number;
1676
1778
  /** ☆☆☆☆ ✔ Example: 9 */
1677
1779
  BurstSpeed?: number;
1678
1780
  /** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
@@ -1705,6 +1807,8 @@ export interface MakerNotesTags {
1705
1807
  CameraISO?: string;
1706
1808
  /** ☆☆☆☆ ✔ Example: "Unknown (155)" */
1707
1809
  CameraOrientation?: string;
1810
+ /** ☆☆☆☆ ✔ Example: "(Binary data 8942 bytes, use -b option to extract)" */
1811
+ CameraParameters?: BinaryField | string;
1708
1812
  /** ☆☆☆☆ ✔ Example: "User Defined 3" */
1709
1813
  CameraPictureStyle?: string;
1710
1814
  /** ☆☆☆☆ Example: -90 */
@@ -1713,6 +1817,8 @@ export interface MakerNotesTags {
1713
1817
  CameraRoll?: string;
1714
1818
  /** ☆☆☆☆ ✔ Example: "0100" */
1715
1819
  CameraSettingsVersion?: string;
1820
+ /** ★★☆☆ ✔ Example: "uD800,S800" */
1821
+ CameraType?: string;
1716
1822
  /** ☆☆☆☆ Example: "+90.80" */
1717
1823
  CameraYaw?: string;
1718
1824
  /** ★★☆☆ ✔ Example: "Unknown (-1)" */
@@ -1725,10 +1831,14 @@ export interface MakerNotesTags {
1725
1831
  CanonFirmwareVersion?: string;
1726
1832
  /** ★★☆☆ ✔ Example: "n/a" */
1727
1833
  CanonFlashMode?: string;
1834
+ /** ★☆☆☆ ✔ Example: 768 */
1835
+ CanonImageHeight?: number;
1728
1836
  /** ★★☆☆ ✔ Example: "n/a" */
1729
1837
  CanonImageSize?: string;
1730
1838
  /** ★★☆☆ ✔ Example: "PIC:DC50 JPEG" */
1731
1839
  CanonImageType?: string;
1840
+ /** ★☆☆☆ ✔ Example: 8688 */
1841
+ CanonImageWidth?: number;
1732
1842
  /** ★★☆☆ ✔ Example: "XH A1S" */
1733
1843
  CanonModelID?: string;
1734
1844
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1743,10 +1853,16 @@ export interface MakerNotesTags {
1743
1853
  CenterWeightedAreaSize?: string;
1744
1854
  /** ☆☆☆☆ ✔ Example: "On" */
1745
1855
  ChromaticAberrationCorr?: string;
1856
+ /** ☆☆☆☆ ✔ Example: "9758 13871 16956 16964 14142 9776 30 9502 13101 15416 151…1 15949" */
1857
+ ChromaticAberrationCorrParams?: string;
1746
1858
  /** ☆☆☆☆ ✔ Example: "On" */
1747
1859
  ChromaticAberrationSetting?: string;
1748
1860
  /** ☆☆☆☆ Example: "+0.500" */
1749
1861
  ChrominanceNoiseReduction?: string;
1862
+ /** ☆☆☆☆ ✔ Example: "San Francisco" */
1863
+ City2?: string;
1864
+ /** ☆☆☆☆ ✔ Example: 4 */
1865
+ Clarity?: number;
1750
1866
  /** ☆☆☆☆ Example: "Off" */
1751
1867
  ClarityControl?: string;
1752
1868
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1771,6 +1887,8 @@ export interface MakerNotesTags {
1771
1887
  ColorBalanceGreen?: number;
1772
1888
  /** ☆☆☆☆ Example: 2.4960938 */
1773
1889
  ColorBalanceRed?: number;
1890
+ /** ☆☆☆☆ ✔ Example: "R01," */
1891
+ ColorBalanceVersion?: string;
1774
1892
  /** ☆☆☆☆ ✔ Example: 24 */
1775
1893
  ColorBitDepth?: number;
1776
1894
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1845,6 +1963,16 @@ export interface MakerNotesTags {
1845
1963
  ColorTone?: string;
1846
1964
  /** ☆☆☆☆ ✔ Example: 0 */
1847
1965
  ColorToneAuto?: number;
1966
+ /** ☆☆☆☆ ✔ Example: 0 */
1967
+ ColorToneFaithful?: number;
1968
+ /** ☆☆☆☆ ✔ Example: 11 */
1969
+ ColorToneLandscape?: number;
1970
+ /** ☆☆☆☆ ✔ Example: 0 */
1971
+ ColorToneNeutral?: number;
1972
+ /** ☆☆☆☆ ✔ Example: 0 */
1973
+ ColorTonePortrait?: number;
1974
+ /** ☆☆☆☆ ✔ Example: 15663191 */
1975
+ ColorToneStandard?: number;
1848
1976
  /** ☆☆☆☆ ✔ Example: "Standard (Main Shutter, Sub Aperture)" */
1849
1977
  CommandDials?: string;
1850
1978
  /** ☆☆☆☆ ✔ Example: "Sub-command Dial" */
@@ -1855,6 +1983,22 @@ export interface MakerNotesTags {
1855
1983
  CommandDialsMenuAndPlayback?: string;
1856
1984
  /** ☆☆☆☆ ✔ Example: "No" */
1857
1985
  CommandDialsReverseRotation?: string;
1986
+ /** ☆☆☆☆ ✔ Example: 3 */
1987
+ CommanderChannel?: number;
1988
+ /** ☆☆☆☆ ✔ Example: "Full" */
1989
+ CommanderGroupAManualOutput?: string;
1990
+ /** ☆☆☆☆ ✔ Example: "TTL" */
1991
+ CommanderGroupAMode?: string;
1992
+ /** ☆☆☆☆ ✔ Example: "Full" */
1993
+ CommanderGroupBManualOutput?: string;
1994
+ /** ☆☆☆☆ ✔ Example: "TTL" */
1995
+ CommanderGroupBMode?: string;
1996
+ /** ☆☆☆☆ ✔ Example: "TTL" */
1997
+ CommanderInternalFlash?: string;
1998
+ /** ☆☆☆☆ ✔ Example: "Full" */
1999
+ CommanderInternalManualOutput?: string;
2000
+ /** ☆☆☆☆ ✔ Example: 0 */
2001
+ CommanderInternalTTLComp?: number;
1858
2002
  /** ☆☆☆☆ ✔ Example: -3 */
1859
2003
  CommanderInternalTTLCompBuiltin?: number;
1860
2004
  /** ☆☆☆☆ ✔ Example: -3 */
@@ -1901,16 +2045,30 @@ export interface MakerNotesTags {
1901
2045
  ContrastDetectAF?: string;
1902
2046
  /** ☆☆☆☆ Example: "496 184 48 48" */
1903
2047
  ContrastDetectAFArea?: string;
2048
+ /** ☆☆☆☆ ✔ Example: "Yes" */
2049
+ ContrastDetectAFInFocus?: string;
2050
+ /** ☆☆☆☆ ✔ Example: 6553600 */
2051
+ ContrastFaithful?: number;
1904
2052
  /** ☆☆☆☆ Example: 0 */
1905
2053
  ContrastHighlight?: number;
1906
2054
  /** ☆☆☆☆ Example: "On" */
1907
2055
  ContrastHighlightShadowAdj?: string;
2056
+ /** ☆☆☆☆ ✔ Example: 6553600 */
2057
+ ContrastLandscape?: number;
1908
2058
  /** ☆☆☆☆ ✔ Example: "Unknown (19)" */
1909
2059
  ContrastMode?: string;
2060
+ /** ☆☆☆☆ ✔ Example: 524288 */
2061
+ ContrastMonochrome?: number;
2062
+ /** ☆☆☆☆ ✔ Example: 0 */
2063
+ ContrastNeutral?: number;
2064
+ /** ☆☆☆☆ ✔ Example: 9699328 */
2065
+ ContrastPortrait?: number;
1910
2066
  /** ☆☆☆☆ ✔ Example: "1 (min -5, max 5)" */
1911
2067
  ContrastSetting?: string;
1912
2068
  /** ☆☆☆☆ Example: 0 */
1913
2069
  ContrastShadow?: number;
2070
+ /** ☆☆☆☆ ✔ Example: 12058626 */
2071
+ ContrastStandard?: number;
1914
2072
  /** ☆☆☆☆ ✔ Example: "Shutter Speed" */
1915
2073
  ControlDialSet?: string;
1916
2074
  /** ★★☆☆ ✔ Example: "n/a" */
@@ -1923,12 +2081,10 @@ export interface MakerNotesTags {
1923
2081
  ConversionLens?: string;
1924
2082
  /** ☆☆☆☆ ✔ Example: 0 */
1925
2083
  Converter?: number;
2084
+ /** ☆☆☆☆ ✔ Example: 72 */
2085
+ CoringFilter?: number;
1926
2086
  /** ☆☆☆☆ Example: 6807 */
1927
2087
  CorrelatedColorTemp?: number;
1928
- /** ☆☆☆☆ ✔ Example: "United States" */
1929
- Country?: string;
1930
- /** ☆☆☆☆ ✔ Example: "ENG" */
1931
- CountryCode?: string;
1932
2088
  /** ☆☆☆☆ ✔ Example: "Vivid" */
1933
2089
  CreativeStyle?: string;
1934
2090
  /** ☆☆☆☆ ✔ Example: "Standard" */
@@ -1939,16 +2095,12 @@ export interface MakerNotesTags {
1939
2095
  CropHeight?: number;
1940
2096
  /** ☆☆☆☆ ✔ Example: "Off (7424x4924 cropped to 7424x4924 at pixel 0,0)" */
1941
2097
  CropHiSpeed?: string;
1942
- /** ☆☆☆☆ ✔ Example: "8 0" */
1943
- CropLeft?: string;
1944
2098
  /** ☆☆☆☆ ✔ Example: 8240 */
1945
2099
  CropLeftMargin?: number;
1946
2100
  /** ☆☆☆☆ ✔ Example: "n/a" */
1947
2101
  CropMode?: string;
1948
2102
  /** ☆☆☆☆ ✔ Example: 8240 */
1949
2103
  CropRightMargin?: number;
1950
- /** ☆☆☆☆ ✔ Example: "8 0" */
1951
- CropTop?: string;
1952
2104
  /** ☆☆☆☆ ✔ Example: 8240 */
1953
2105
  CropTopMargin?: number;
1954
2106
  /** ☆☆☆☆ ✔ Example: 5184 */
@@ -1967,8 +2119,6 @@ export interface MakerNotesTags {
1967
2119
  CustomControls?: string;
1968
2120
  /** ☆☆☆☆ ✔ Example: "P-STUDIO" */
1969
2121
  CustomPictureStyleFileName?: string;
1970
- /** ☆☆☆☆ Example: "Scene: NORMAL" */
1971
- CustomRendered?: string;
1972
2122
  /** ☆☆☆☆ ✔ Example: "CS3 (min CS0, max CS4)" */
1973
2123
  CustomSaturation?: string;
1974
2124
  /** ☆☆☆☆ ✔ Example: "No" */
@@ -1987,6 +2137,8 @@ export interface MakerNotesTags {
1987
2137
  CustomWBSetting?: string;
1988
2138
  /** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0…1 1 1 0" */
1989
2139
  CustomizeDials?: string;
2140
+ /** ☆☆☆☆ Example: "Unknown (27471)" */
2141
+ DECPosition?: string;
1990
2142
  /** ☆☆☆☆ ✔ Example: "100.00.00.00" */
1991
2143
  DSPFirmwareVersion?: string;
1992
2144
  /** ☆☆☆☆ ✔ Example: "Yes" */
@@ -2019,8 +2171,12 @@ export interface MakerNotesTags {
2019
2171
  DestinationCityCode?: string;
2020
2172
  /** ☆☆☆☆ ✔ Example: "Yes" */
2021
2173
  DestinationDST?: string;
2174
+ /** ☆☆☆☆ ✔ Example: 100 */
2175
+ DevelopmentDynamicRange?: number;
2022
2176
  /** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
2023
2177
  DeviceType?: string;
2178
+ /** ☆☆☆☆ ✔ Example: "Normal" */
2179
+ DialDirectionTvAv?: string;
2024
2180
  /** ☆☆☆☆ ✔ Example: "On" */
2025
2181
  DiffractionCompensation?: string;
2026
2182
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2031,8 +2187,16 @@ export interface MakerNotesTags {
2031
2187
  DigitalGain?: number;
2032
2188
  /** ☆☆☆☆ ✔ Example: "Off" */
2033
2189
  DigitalICE?: string;
2190
+ /** ☆☆☆☆ ✔ Example: "Stanard" */
2191
+ DigitalLensOptimizer?: string;
2192
+ /** ☆☆☆☆ ✔ Example: "On" */
2193
+ DigitalLensOptimizerSetting?: string;
2194
+ /** ★★★☆ ✔ Example: "undef.0" */
2195
+ DigitalZoom?: string;
2034
2196
  /** ☆☆☆☆ Example: "On" */
2035
2197
  DigitalZoomOn?: string;
2198
+ /** ☆☆☆☆ ✔ Example: 897 */
2199
+ DirectoryIndex?: number;
2036
2200
  /** ☆☆☆☆ ✔ Example: 999 */
2037
2201
  DirectoryNumber?: number;
2038
2202
  /** ☆☆☆☆ ✔ Example: "Enable" */
@@ -2041,8 +2205,14 @@ export interface MakerNotesTags {
2041
2205
  DisplayAperture?: number;
2042
2206
  /** ☆☆☆☆ ✔ Example: "Off" */
2043
2207
  DistortionControl?: string;
2208
+ /** ☆☆☆☆ ✔ Example: "88 0 -136 -288 -480 -696 -944 -1200 -1480 -1752 -2040 0 0 0 0 0" */
2209
+ DistortionCorrParams?: string;
2210
+ /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
2211
+ DistortionCorrParamsNumber?: string;
2044
2212
  /** ☆☆☆☆ ✔ Example: "Yes" */
2045
2213
  DistortionCorrParamsPresent?: string;
2214
+ /** ★☆☆☆ ✔ Example: "Unknown (60)" */
2215
+ DistortionCorrection?: string;
2046
2216
  /** ☆☆☆☆ ✔ Example: "n/a" */
2047
2217
  DistortionCorrectionSetting?: string;
2048
2218
  /** ☆☆☆☆ ✔ Example: 100 */
@@ -2063,6 +2233,8 @@ export interface MakerNotesTags {
2063
2233
  DynamicRange?: string;
2064
2234
  /** ☆☆☆☆ ✔ Example: "Off" */
2065
2235
  DynamicRangeBoost?: string;
2236
+ /** ☆☆☆☆ ✔ Example: "On; Enabled; 0; 0" */
2237
+ DynamicRangeExpansion?: string;
2066
2238
  /** ☆☆☆☆ ✔ Example: "Standard" */
2067
2239
  DynamicRangeOptimizer?: string;
2068
2240
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -2077,6 +2249,8 @@ export interface MakerNotesTags {
2077
2249
  DynamicRangeSetting?: string;
2078
2250
  /** ☆☆☆☆ ✔ Example: "Evaluative" */
2079
2251
  ETTLII?: string;
2252
+ /** ☆☆☆☆ ✔ Example: "1/3 EV" */
2253
+ EVStepSize?: string;
2080
2254
  /** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
2081
2255
  EVSteps?: string;
2082
2256
  /** ☆☆☆☆ ✔ Example: "Manual" */
@@ -2089,10 +2263,14 @@ export interface MakerNotesTags {
2089
2263
  EasyExposureCompensation?: string;
2090
2264
  /** ★★☆☆ ✔ Example: "Unknown (83)" */
2091
2265
  EasyMode?: string;
2266
+ /** ☆☆☆☆ ✔ Example: 9.8 */
2267
+ EffectiveLV?: number;
2092
2268
  /** ☆☆☆☆ ✔ Example: 5.7 */
2093
2269
  EffectiveMaxAperture?: number;
2094
2270
  /** ☆☆☆☆ ✔ Example: "On" */
2095
2271
  ElectronicFrontCurtainShutter?: string;
2272
+ /** ☆☆☆☆ ✔ Example: "On" */
2273
+ EnergySavingMode?: string;
2096
2274
  /** ☆☆☆☆ Example: "Off" */
2097
2275
  Enhancement?: string;
2098
2276
  /** ☆☆☆☆ ✔ Example: 960 */
@@ -2131,6 +2309,8 @@ export interface MakerNotesTags {
2131
2309
  ExposureControlStep?: string;
2132
2310
  /** ☆☆☆☆ ✔ Example: "1/3 EV" */
2133
2311
  ExposureControlStepSize?: string;
2312
+ /** ★☆☆☆ ✔ Example: 1 */
2313
+ ExposureCount?: number;
2134
2314
  /** ☆☆☆☆ ✔ Example: "On" */
2135
2315
  ExposureDelayMode?: string;
2136
2316
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -2141,12 +2321,14 @@ export interface MakerNotesTags {
2141
2321
  ExposureLevelIncrements?: string;
2142
2322
  /** ☆☆☆☆ ✔ Example: "Spot metering" */
2143
2323
  ExposureModeInManual?: string;
2144
- /** ☆☆☆☆ ✔ Example: "iAuto+" */
2145
- ExposureProgram?: string;
2324
+ /** ☆☆☆☆ ✔ Example: 0 */
2325
+ ExposureShift?: number;
2146
2326
  /** ☆☆☆☆ ✔ Example: 0 */
2147
2327
  ExposureStandardAdjustment?: number;
2148
2328
  /** ☆☆☆☆ ✔ Example: 0 */
2149
2329
  ExposureTuning?: number;
2330
+ /** ★☆☆☆ ✔ Example: "Good" */
2331
+ ExposureWarning?: string;
2150
2332
  /** ☆☆☆☆ ✔ Example: "Off" */
2151
2333
  ExtendedShutterSpeeds?: string;
2152
2334
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2173,6 +2355,8 @@ export interface MakerNotesTags {
2173
2355
  ExternalFlashFlags?: string;
2174
2356
  /** ☆☆☆☆ ✔ Example: 0 */
2175
2357
  ExternalFlashGValue?: number;
2358
+ /** ☆☆☆☆ ✔ Example: "n/a" */
2359
+ ExternalFlashGuideNumber?: string;
2176
2360
  /** ☆☆☆☆ ✔ Example: 1 */
2177
2361
  ExternalFlashMode?: number;
2178
2362
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2183,6 +2367,8 @@ export interface MakerNotesTags {
2183
2367
  ExternalFlashZoom?: number;
2184
2368
  /** ☆☆☆☆ ✔ Example: "No" */
2185
2369
  ExternalFlashZoomOverride?: string;
2370
+ /** ☆☆☆☆ Example: 9.14 */
2371
+ ExternalSensorBrightnessValue?: number;
2186
2372
  /** ☆☆☆☆ ✔ Example: "0.2.0.0" */
2187
2373
  ExtraInfoVersion?: string;
2188
2374
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2195,6 +2381,8 @@ export interface MakerNotesTags {
2195
2381
  FaceDetectArea?: BinaryField | string;
2196
2382
  /** ☆☆☆☆ ✔ Example: "0 26 640 428 0 26 640 428 0 0 0 0" */
2197
2383
  FaceDetectFrameCrop?: string;
2384
+ /** ★☆☆☆ ✔ Example: "720 480" */
2385
+ FaceDetectFrameSize?: string;
2198
2386
  /** ☆☆☆☆ ✔ Example: "On" */
2199
2387
  FaceDetection?: string;
2200
2388
  /** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
@@ -2209,8 +2397,14 @@ export interface MakerNotesTags {
2209
2397
  FaceInfoOffset?: number;
2210
2398
  /** ☆☆☆☆ ✔ Example: "" */
2211
2399
  FaceName?: string;
2400
+ /** ☆☆☆☆ Example: "67 23" */
2401
+ FacePosition?: string;
2212
2402
  /** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
2213
2403
  FacePositions?: string;
2404
+ /** ☆☆☆☆ ✔ Example: "On" */
2405
+ FaceRecognition?: string;
2406
+ /** ☆☆☆☆ ✔ Example: 35 */
2407
+ FaceWidth?: number;
2214
2408
  /** ★★★☆ ✔ Example: 65535 */
2215
2409
  FacesDetected?: number;
2216
2410
  /** ☆☆☆☆ ✔ Example: 12336 */
@@ -2227,8 +2421,6 @@ export interface MakerNotesTags {
2227
2421
  FileNumberMemory?: string;
2228
2422
  /** ☆☆☆☆ ✔ Example: "On" */
2229
2423
  FileNumberSequence?: string;
2230
- /** ☆☆☆☆ ✔ Example: "APS_H" */
2231
- FileSource?: string;
2232
2424
  /** ☆☆☆☆ ✔ Example: "Enable" */
2233
2425
  FillFlashAutoReduction?: string;
2234
2426
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -2241,6 +2433,8 @@ export interface MakerNotesTags {
2241
2433
  FilterEffect?: string;
2242
2434
  /** ☆☆☆☆ ✔ Example: "n/a" */
2243
2435
  FilterEffectAuto?: string;
2436
+ /** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
2437
+ FilterEffectMonochrome?: string;
2244
2438
  /** ☆☆☆☆ ✔ Example: "On" */
2245
2439
  FinderDisplayDuringExposure?: string;
2246
2440
  /** ☆☆☆☆ ✔ Example: "On; Normal" */
@@ -2257,6 +2451,10 @@ export interface MakerNotesTags {
2257
2451
  FirmwareDate?: ExifDateTime | string;
2258
2452
  /** ☆☆☆☆ ✔ Example: "NX1_000000" */
2259
2453
  FirmwareName?: string;
2454
+ /** ★☆☆☆ ✔ Example: "Rev01500000" */
2455
+ FirmwareRevision?: string;
2456
+ /** ★☆☆☆ ✔ Example: "v2.2.16" */
2457
+ FirmwareVersion?: string;
2260
2458
  /** ☆☆☆☆ ✔ Example: "Off" */
2261
2459
  FisheyeFilter?: string;
2262
2460
  /** ☆☆☆☆ ✔ Example: "Fired" */
@@ -2275,10 +2473,10 @@ export interface MakerNotesTags {
2275
2473
  FlashButtonFunction?: string;
2276
2474
  /** ☆☆☆☆ ✔ Example: 0 */
2277
2475
  FlashChargeLevel?: number;
2476
+ /** ☆☆☆☆ ✔ Example: "None" */
2477
+ FlashColorFilter?: string;
2278
2478
  /** ☆☆☆☆ ✔ Example: "Off" */
2279
2479
  FlashCommanderMode?: string;
2280
- /** ☆☆☆☆ ✔ Example: 0 */
2281
- FlashCompensation?: number;
2282
2480
  /** ☆☆☆☆ ✔ Example: "Pre-flash TTL" */
2283
2481
  FlashControl?: string;
2284
2482
  /** ☆☆☆☆ ✔ Example: "iTTL-BL" */
@@ -2297,6 +2495,8 @@ export interface MakerNotesTags {
2297
2495
  FlashExposureComp?: number;
2298
2496
  /** ☆☆☆☆ ✔ Example: "Entire frame" */
2299
2497
  FlashExposureCompArea?: string;
2498
+ /** ☆☆☆☆ ✔ Example: 0 */
2499
+ FlashExposureCompSet?: number;
2300
2500
  /** ☆☆☆☆ ✔ Example: "Not Indicated" */
2301
2501
  FlashExposureIndicator?: string;
2302
2502
  /** ☆☆☆☆ ✔ Example: "Not Indicated" */
@@ -2331,6 +2531,8 @@ export interface MakerNotesTags {
2331
2531
  FlashGroupCControlMode?: string;
2332
2532
  /** ★★☆☆ ✔ Example: 9 */
2333
2533
  FlashGuideNumber?: number;
2534
+ /** ☆☆☆☆ ✔ Example: "Standard" */
2535
+ FlashIlluminationPattern?: string;
2334
2536
  /** ☆☆☆☆ ✔ Example: "0301" */
2335
2537
  FlashInfoVersion?: string;
2336
2538
  /** ☆☆☆☆ ✔ Example: "n/a (x4)" */
@@ -2351,6 +2553,8 @@ export interface MakerNotesTags {
2351
2553
  FlashModel?: string;
2352
2554
  /** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
2353
2555
  FlashOptions?: string;
2556
+ /** ★☆☆☆ ✔ Example: 94 */
2557
+ FlashOutput?: number;
2354
2558
  /** ☆☆☆☆ ✔ Example: "Off" */
2355
2559
  FlashRemoteControl?: string;
2356
2560
  /** ☆☆☆☆ ✔ Example: "01114671" */
@@ -2375,6 +2579,8 @@ export interface MakerNotesTags {
2375
2579
  FlashThreshold?: number;
2376
2580
  /** ☆☆☆☆ ✔ Example: "Yes (flash required but disabled)" */
2377
2581
  FlashWarning?: string;
2582
+ /** ☆☆☆☆ ✔ Example: "320 262" */
2583
+ FlexibleSpotPosition?: string;
2378
2584
  /** ☆☆☆☆ ✔ Example: "Left to Right" */
2379
2585
  FlickAdvanceDirection?: string;
2380
2586
  /** ☆☆☆☆ Example: "On" */
@@ -2395,8 +2601,18 @@ export interface MakerNotesTags {
2395
2601
  FocalPlaneAFPointArea?: string;
2396
2602
  /** ☆☆☆☆ ✔ Example: 9 */
2397
2603
  FocalPlaneAFPointsUsed?: number;
2604
+ /** ★☆☆☆ ✔ Example: "9.45 mm" */
2605
+ FocalPlaneDiagonal?: string;
2606
+ /** ★☆☆☆ ✔ Example: "9.02 mm" */
2607
+ FocalPlaneXSize?: string;
2608
+ /** ★☆☆☆ ✔ Example: "8.10 mm" */
2609
+ FocalPlaneYSize?: string;
2610
+ /** ★☆☆☆ ✔ Example: "Zoom" */
2611
+ FocalType?: string;
2398
2612
  /** ★★☆☆ ✔ Example: "32/mm" */
2399
2613
  FocalUnits?: string;
2614
+ /** ☆☆☆☆ Example: "Wide Focus (normal)" */
2615
+ FocusArea?: string;
2400
2616
  /** ☆☆☆☆ ✔ Example: "No Wrap" */
2401
2617
  FocusAreaSelection?: string;
2402
2618
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -2407,16 +2623,24 @@ export interface MakerNotesTags {
2407
2623
  FocusContinuous?: string;
2408
2624
  /** ☆☆☆☆ ✔ Example: "Enable" */
2409
2625
  FocusDisplayAIServoAndMF?: string;
2626
+ /** ★☆☆☆ ✔ Example: "inf" */
2627
+ FocusDistanceLower?: string;
2410
2628
  /** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
2411
2629
  FocusDistanceRange?: string;
2630
+ /** ★☆☆☆ ✔ Example: "inf" */
2631
+ FocusDistanceUpper?: string;
2412
2632
  /** ☆☆☆☆ ✔ Example: "475x476" */
2413
2633
  FocusFrameSize?: string;
2414
2634
  /** ☆☆☆☆ ✔ Example: "Focus Hold" */
2415
2635
  FocusHoldButton?: string;
2416
2636
  /** ☆☆☆☆ ✔ Example: "0100" */
2417
2637
  FocusInfoVersion?: string;
2638
+ /** ☆☆☆☆ ✔ Example: "9504 6336 5613 2112" */
2639
+ FocusLocation?: string;
2418
2640
  /** ☆☆☆☆ ✔ Example: "Yes" */
2419
2641
  FocusLocked?: string;
2642
+ /** ★★★☆ ✔ Example: "Unknown (860272)" */
2643
+ FocusMode?: string;
2420
2644
  /** ☆☆☆☆ ✔ Example: "Manual" */
2421
2645
  FocusModeSetting?: string;
2422
2646
  /** ☆☆☆☆ ✔ Example: "AF" */
@@ -2425,6 +2649,8 @@ export interface MakerNotesTags {
2425
2649
  FocusPeakingHighlightColor?: string;
2426
2650
  /** ☆☆☆☆ ✔ Example: "Off" */
2427
2651
  FocusPeakingLevel?: string;
2652
+ /** ★☆☆☆ ✔ Example: "972 1296" */
2653
+ FocusPixel?: string;
2428
2654
  /** ☆☆☆☆ Example: "Auto" */
2429
2655
  FocusPointPersistence?: string;
2430
2656
  /** ☆☆☆☆ Example: "Normal" */
@@ -2463,16 +2689,26 @@ export interface MakerNotesTags {
2463
2689
  FocusStepNear?: number;
2464
2690
  /** ☆☆☆☆ ✔ Example: "Off" */
2465
2691
  FocusTrackingLockOn?: string;
2692
+ /** ★☆☆☆ ✔ Example: "Out of focus" */
2693
+ FocusWarning?: string;
2466
2694
  /** ☆☆☆☆ ✔ Example: "Eh-A" */
2467
2695
  FocusingScreen?: string;
2696
+ /** ☆☆☆☆ Example: "Standard Form" */
2697
+ FolderName?: string;
2468
2698
  /** ☆☆☆☆ ✔ Example: 373 */
2469
2699
  FolderNumber?: number;
2700
+ /** ☆☆☆☆ ✔ Example: 849 */
2701
+ FrameNumber?: number;
2470
2702
  /** ☆☆☆☆ ✔ Example: "Off" */
2471
2703
  FramingGridDisplay?: string;
2472
2704
  /** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
2473
2705
  FreeBytes?: BinaryField | string;
2706
+ /** ☆☆☆☆ ✔ Example: 805 */
2707
+ FreeMemoryCardImages?: number;
2474
2708
  /** ☆☆☆☆ ✔ Example: "Yes" */
2475
2709
  FrontFacingCamera?: string;
2710
+ /** ★☆☆☆ ✔ Example: "Red-eye reduction" */
2711
+ FujiFlashMode?: string;
2476
2712
  /** ☆☆☆☆ ✔ Example: "X100V_0100" */
2477
2713
  FujiModel?: string;
2478
2714
  /** ☆☆☆☆ ✔ Example: "9504x6336" */
@@ -2523,22 +2759,32 @@ export interface MakerNotesTags {
2523
2759
  GripBatteryState?: string;
2524
2760
  /** ☆☆☆☆ ✔ Example: "Squares" */
2525
2761
  GroupAreaAFIllumination?: string;
2762
+ /** ☆☆☆☆ ✔ Example: "Unknown (5)" */
2763
+ HDMIBitDepth?: string;
2526
2764
  /** ☆☆☆☆ ✔ Example: "Off" */
2527
2765
  HDMIExternalRecorder?: string;
2528
2766
  /** ☆☆☆☆ ✔ Example: "Auto" */
2529
2767
  HDMIOutputRange?: string;
2530
2768
  /** ☆☆☆☆ ✔ Example: "Auto" */
2531
2769
  HDMIOutputResolution?: string;
2770
+ /** ★☆☆☆ ✔ Example: "On (normal)" */
2771
+ HDR?: string;
2532
2772
  /** ☆☆☆☆ ✔ Example: "Natural" */
2533
2773
  HDREffect?: string;
2774
+ /** ☆☆☆☆ ✔ Example: 0.016037704 */
2775
+ HDRGain?: number;
2534
2776
  /** ☆☆☆☆ ✔ Example: 1.447432 */
2535
2777
  HDRHeadroom?: number;
2778
+ /** ☆☆☆☆ ✔ Example: "Unknown (2)" */
2779
+ HDRImageType?: string;
2536
2780
  /** ☆☆☆☆ ✔ Example: "0200" */
2537
2781
  HDRInfoVersion?: string;
2538
2782
  /** ☆☆☆☆ ✔ Example: "n/a" */
2539
2783
  HDRLevel?: string;
2540
2784
  /** ☆☆☆☆ ✔ Example: "n/a" */
2541
2785
  HDRSmoothing?: string;
2786
+ /** ★☆☆☆ ✔ Example: "n/a" */
2787
+ HighISONoiseReduction?: string;
2542
2788
  /** ☆☆☆☆ Example: 4 */
2543
2789
  HighLowKeyAdj?: number;
2544
2790
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -2547,6 +2793,8 @@ export interface MakerNotesTags {
2547
2793
  Highlight?: number;
2548
2794
  /** ☆☆☆☆ ✔ Example: "0 0" */
2549
2795
  HighlightShadow?: string;
2796
+ /** ☆☆☆☆ ✔ Example: "0 (normal)" */
2797
+ HighlightTone?: string;
2550
2798
  /** ☆☆☆☆ ✔ Example: "Off" */
2551
2799
  HighlightTonePriority?: string;
2552
2800
  /** ☆☆☆☆ ✔ Example: "Yes" */
@@ -2565,6 +2813,8 @@ export interface MakerNotesTags {
2565
2813
  HostSoftwareExportVersion?: number;
2566
2814
  /** ☆☆☆☆ Example: "Unknown (4 4)" */
2567
2815
  HostSoftwareRendering?: string;
2816
+ /** ☆☆☆☆ ✔ Example: "n/a" */
2817
+ Hue?: string;
2568
2818
  /** ☆☆☆☆ Example: "Off" */
2569
2819
  HueAdjust?: string;
2570
2820
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2603,6 +2853,8 @@ export interface MakerNotesTags {
2603
2853
  ISOSetting?: number;
2604
2854
  /** ☆☆☆☆ ✔ Example: "Yes" */
2605
2855
  ISOSpeedExpansion?: string;
2856
+ /** ☆☆☆☆ ✔ Example: "1/3 Stop" */
2857
+ ISOSpeedIncrements?: string;
2606
2858
  /** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
2607
2859
  ISOSpeedRange?: string;
2608
2860
  /** ☆☆☆☆ ✔ Example: "1/3 EV" */
@@ -2621,6 +2873,8 @@ export interface MakerNotesTags {
2621
2873
  ImageBoundary?: string;
2622
2874
  /** ☆☆☆☆ ✔ Example: "Unknown (5)" */
2623
2875
  ImageCaptureType?: string;
2876
+ /** ☆☆☆☆ ✔ Example: 994 */
2877
+ ImageCount?: number;
2624
2878
  /** ☆☆☆☆ ✔ Example: 9927271 */
2625
2879
  ImageDataSize?: number;
2626
2880
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -2647,6 +2901,8 @@ export interface MakerNotesTags {
2647
2901
  ImageReviewMonitorOffTime?: string;
2648
2902
  /** ☆☆☆☆ ✔ Example: "4 s" */
2649
2903
  ImageReviewTime?: string;
2904
+ /** ☆☆☆☆ Example: "No" */
2905
+ ImageRotated?: string;
2650
2906
  /** ☆☆☆☆ ✔ Example: "Small" */
2651
2907
  ImageSizeRAW?: string;
2652
2908
  /** ★★★☆ ✔ Example: "n/a" */
@@ -2659,6 +2915,10 @@ export interface MakerNotesTags {
2659
2915
  ImageTemperatureMax?: number;
2660
2916
  /** ☆☆☆☆ Example: 86 */
2661
2917
  ImageTemperatureMin?: number;
2918
+ /** ☆☆☆☆ ✔ Example: "Vibrant" */
2919
+ ImageTone?: string;
2920
+ /** ★☆☆☆ ✔ Example: "fefafc6093e2c1470ac8dfa06ef26990" */
2921
+ ImageUniqueID?: string;
2662
2922
  /** ☆☆☆☆ ✔ Example: "Displays shooting functions" */
2663
2923
  InfoButtonWhenShooting?: string;
2664
2924
  /** ☆☆☆☆ Example: "On" */
@@ -2685,8 +2945,14 @@ export interface MakerNotesTags {
2685
2945
  IntelligentResolution?: string;
2686
2946
  /** ☆☆☆☆ ✔ Example: "TTL" */
2687
2947
  InternalFlash?: string;
2948
+ /** ☆☆☆☆ ✔ Example: "Did not fire, Red-eye reduction" */
2949
+ InternalFlashMode?: string;
2950
+ /** ☆☆☆☆ ✔ Example: 63 */
2951
+ InternalFlashStrength?: number;
2688
2952
  /** ☆☆☆☆ ✔ Example: 95 */
2689
2953
  InternalFlashTable?: number;
2954
+ /** ☆☆☆☆ ✔ Example: 0 */
2955
+ InternalNDFilter?: number;
2690
2956
  /** ★★☆☆ ✔ Example: "fdfec409" */
2691
2957
  InternalSerialNumber?: string;
2692
2958
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -2721,6 +2987,10 @@ export interface MakerNotesTags {
2721
2987
  KeystoneDirection?: string;
2722
2988
  /** ☆☆☆☆ ✔ Example: "0 0 0" */
2723
2989
  KeystoneValue?: string;
2990
+ /** ☆☆☆☆ Example: 864 */
2991
+ KodakImageHeight?: number;
2992
+ /** ☆☆☆☆ Example: 800 */
2993
+ KodakImageWidth?: number;
2724
2994
  /** ☆☆☆☆ Example: "SKodakCommonInfo Jaguar7" */
2725
2995
  KodakInfoType?: string;
2726
2996
  /** ☆☆☆☆ Example: "Kodak " */
@@ -2741,6 +3011,10 @@ export interface MakerNotesTags {
2741
3011
  LCDIlluminationDuringBulb?: string;
2742
3012
  /** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
2743
3013
  LCDPanels?: string;
3014
+ /** ☆☆☆☆ ✔ Example: "Masked" */
3015
+ LVShootingAreaDisplay?: string;
3016
+ /** ☆☆☆☆ ✔ Example: "UNICORN THEATRE FOR CHILDREN" */
3017
+ Landmark?: string;
2744
3018
  /** ☆☆☆☆ ✔ Example: "English" */
2745
3019
  Language?: string;
2746
3020
  /** ☆☆☆☆ Example: 92 */
@@ -2775,10 +3049,14 @@ export interface MakerNotesTags {
2775
3049
  LensFormat?: string;
2776
3050
  /** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
2777
3051
  LensFunc1Button?: string;
3052
+ /** ☆☆☆☆ ✔ Example: "AF-On" */
3053
+ LensFunc2Button?: string;
2778
3054
  /** ☆☆☆☆ ✔ Example: 93 */
2779
3055
  LensIDNumber?: number;
2780
3056
  /** ☆☆☆☆ Example: "4 to 4" */
2781
3057
  LensMaxApertureRange?: string;
3058
+ /** ☆☆☆☆ ✔ Example: "On" */
3059
+ LensModulationOptimizer?: string;
2782
3060
  /** ☆☆☆☆ ✔ Example: "Unknown (74)" */
2783
3061
  LensMount?: string;
2784
3062
  /** ☆☆☆☆ ✔ Example: "Z-mount Lens" */
@@ -2791,8 +3069,14 @@ export interface MakerNotesTags {
2791
3069
  LensShading?: string;
2792
3070
  /** ☆☆☆☆ ✔ Example: "On" */
2793
3071
  LensShutterLock?: string;
3072
+ /** ☆☆☆☆ ✔ Example: "Unknown (00 0 0 0 0 00)" */
3073
+ LensSpec?: string;
3074
+ /** ☆☆☆☆ ✔ Example: "ZA SSM II" */
3075
+ LensSpecFeatures?: string;
2794
3076
  /** ☆☆☆☆ ✔ Example: 35 */
2795
3077
  LensTemperature?: number;
3078
+ /** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
3079
+ LensType?: string;
2796
3080
  /** ☆☆☆☆ Example: */
2797
3081
  LensType2?: string;
2798
3082
  /** ☆☆☆☆ Example: */
@@ -2803,10 +3087,14 @@ export interface MakerNotesTags {
2803
3087
  LensTypeModel?: string;
2804
3088
  /** ☆☆☆☆ ✔ Example: "98%" */
2805
3089
  LensZoomPosition?: string;
3090
+ /** ☆☆☆☆ Example: 250 */
3091
+ LevelIndicator?: number;
2806
3092
  /** ☆☆☆☆ Example: "n/a" */
2807
3093
  LevelOrientation?: string;
2808
3094
  /** ☆☆☆☆ ✔ Example: 1 */
2809
3095
  LightCondition?: number;
3096
+ /** ☆☆☆☆ Example: 8 */
3097
+ LightReading?: number;
2810
3098
  /** ☆☆☆☆ Example: "Unknown (512)" */
2811
3099
  LightSourceSpecial?: string;
2812
3100
  /** ☆☆☆☆ ✔ Example: "LCD Backlight and Shooting Information" */
@@ -2857,6 +3145,8 @@ export interface MakerNotesTags {
2857
3145
  LockMicrophoneButton?: string;
2858
3146
  /** ☆☆☆☆ ✔ Example: "Yes" */
2859
3147
  LongExposureNRUsed?: string;
3148
+ /** ★☆☆☆ ✔ Example: "n/a" */
3149
+ LongExposureNoiseReduction?: string;
2860
3150
  /** ☆☆☆☆ ✔ Example: "On" */
2861
3151
  LowLightAF?: string;
2862
3152
  /** ☆☆☆☆ ✔ Example: 0.010031249 */
@@ -2869,6 +3159,8 @@ export interface MakerNotesTags {
2869
3159
  MCCData?: string;
2870
3160
  /** ☆☆☆☆ ✔ Example: 99 */
2871
3161
  MCUVersion?: number;
3162
+ /** ★★☆☆ ✔ Example: "Unknown (3)" */
3163
+ Macro?: string;
2872
3164
  /** ☆☆☆☆ ✔ Example: "Off" */
2873
3165
  MacroLED?: string;
2874
3166
  /** ★★☆☆ ✔ Example: "Unknown (852023)" */
@@ -2881,6 +3173,8 @@ export interface MakerNotesTags {
2881
3173
  MainDialExposureComp?: string;
2882
3174
  /** ☆☆☆☆ Example: 916 */
2883
3175
  MakerNoteOffset?: number;
3176
+ /** ☆☆☆☆ Example: "Rdc" */
3177
+ MakerNoteType?: string;
2884
3178
  /** ★★☆☆ ✔ Example: "mlt0" */
2885
3179
  MakerNoteVersion?: string;
2886
3180
  /** ☆☆☆☆ ✔ Example: "98 kPa" */
@@ -2905,6 +3199,8 @@ export interface MakerNotesTags {
2905
3199
  ManualFocusRingInAFMode?: string;
2906
3200
  /** ☆☆☆☆ ✔ Example: "Tv=Main/Av=Control" */
2907
3201
  ManualTv?: string;
3202
+ /** ☆☆☆☆ ✔ Example: "2021:03:17" */
3203
+ ManufactureDate?: ExifDate | string;
2908
3204
  /** ☆☆☆☆ ✔ Example: 0 */
2909
3205
  MasterGain?: number;
2910
3206
  /** ☆☆☆☆ ✔ Example: "Face Detection On" */
@@ -2931,6 +3227,8 @@ export interface MakerNotesTags {
2931
3227
  MeasuredRGGBData?: string;
2932
3228
  /** ☆☆☆☆ ✔ Example: 7 */
2933
3229
  MechanicalShutterCount?: number;
3230
+ /** ☆☆☆☆ ✔ Example: "High (48 kHz)" */
3231
+ MemoAudioQuality?: string;
2934
3232
  /** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
2935
3233
  MemoryCardConfiguration?: string;
2936
3234
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -2949,8 +3247,6 @@ export interface MakerNotesTags {
2949
3247
  MeterMode?: string;
2950
3248
  /** ☆☆☆☆ ✔ Example: "Matrix" */
2951
3249
  Metering?: string;
2952
- /** ★★☆☆ ✔ Example: "Unknown (52990)" */
2953
- MeteringMode?: string;
2954
3250
  /** ☆☆☆☆ ✔ Example: "Within Range" */
2955
3251
  MeteringOffScaleIndicator?: string;
2956
3252
  /** ☆☆☆☆ ✔ Example: "8 s" */
@@ -3026,6 +3322,8 @@ export interface MakerNotesTags {
3026
3322
  /** ☆☆☆☆ ✔ Example: "(none)" */
3027
3323
  MonochromeColor?: string;
3028
3324
  /** ☆☆☆☆ ✔ Example: "Off" */
3325
+ MonochromeFilterEffect?: string;
3326
+ /** ☆☆☆☆ ✔ Example: "Off" */
3029
3327
  MonochromeGrainEffect?: string;
3030
3328
  /** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
3031
3329
  MonochromeProfileSettings?: string;
@@ -3039,6 +3337,8 @@ export interface MakerNotesTags {
3039
3337
  MoonPhase?: string;
3040
3338
  /** ☆☆☆☆ Example: 100 */
3041
3339
  MotionSensitivity?: number;
3340
+ /** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
3341
+ MovieAELockButtonAssignment?: string;
3042
3342
  /** ☆☆☆☆ ✔ Example: "Single" */
3043
3343
  MovieAFAreaMode?: string;
3044
3344
  /** ☆☆☆☆ ✔ Example: "4 (Normal)" */
@@ -3113,12 +3413,16 @@ export interface MakerNotesTags {
3113
3413
  MyColorMode?: string;
3114
3414
  /** ★★☆☆ ✔ Example: "n/a" */
3115
3415
  NDFilter?: string;
3416
+ /** ☆☆☆☆ ✔ Example: "n/a (JPEG)" */
3417
+ NEFBitDepth?: string;
3116
3418
  /** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
3117
3419
  NEFCompression?: string;
3118
- /** ☆☆☆☆ ✔ Example: "(Binary data 46 bytes, use -b option to extract)" */
3420
+ /** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
3119
3421
  NEFLinearizationTable?: BinaryField | string;
3120
3422
  /** ☆☆☆☆ Example: "Off (0 2)" */
3121
3423
  NeutralDensityFilter?: string;
3424
+ /** ☆☆☆☆ ✔ Example: "ViewNX 2.8 M" */
3425
+ NikonCaptureVersion?: string;
3122
3426
  /** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
3123
3427
  NikonImageSize?: string;
3124
3428
  /** ☆☆☆☆ ✔ Example: "Matrix" */
@@ -3129,28 +3433,38 @@ export interface MakerNotesTags {
3129
3433
  NoiseFilter?: string;
3130
3434
  /** ★★☆☆ ✔ Example: "[4]" */
3131
3435
  NoiseReduction?: string;
3436
+ /** ☆☆☆☆ ✔ Example: 0 */
3437
+ NoiseReductionStrength?: number;
3132
3438
  /** ☆☆☆☆ ✔ Example: 5.7 */
3133
3439
  NominalMaxAperture?: number;
3134
3440
  /** ☆☆☆☆ ✔ Example: 7 */
3135
3441
  NominalMinAperture?: number;
3136
3442
  /** ☆☆☆☆ ✔ Example: 16383 */
3137
3443
  NormalWhiteLevel?: number;
3444
+ /** ★☆☆☆ ✔ Example: 9 */
3445
+ NumAFPoints?: number;
3138
3446
  /** ☆☆☆☆ ✔ Example: 3 */
3139
3447
  NumFaceElements?: number;
3140
3448
  /** ☆☆☆☆ ✔ Example: 65535 */
3141
3449
  NumFacePositions?: number;
3450
+ /** ☆☆☆☆ ✔ Example: "55 Points" */
3451
+ NumberOfFocusPoints?: string;
3142
3452
  /** ☆☆☆☆ ✔ Example: 32 */
3143
3453
  NumberOffsets?: number;
3144
3454
  /** ☆☆☆☆ ✔ Example: 5 */
3145
3455
  OISMode?: number;
3146
3456
  /** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
3147
3457
  OKButton?: string;
3458
+ /** ☆☆☆☆ Example: "inf" */
3459
+ ObjectDistance?: string;
3148
3460
  /** ☆☆☆☆ ✔ Example: 960 */
3149
3461
  OlympusImageHeight?: number;
3150
3462
  /** ☆☆☆☆ ✔ Example: 3648 */
3151
3463
  OlympusImageWidth?: number;
3152
3464
  /** ☆☆☆☆ ✔ Example: "Unknown ()" */
3153
3465
  OneTouchWB?: string;
3466
+ /** ☆☆☆☆ ✔ Example: "On" */
3467
+ OpticalVR?: string;
3154
3468
  /** ☆☆☆☆ Example: 3 */
3155
3469
  OpticalZoom?: number;
3156
3470
  /** ★★☆☆ ✔ Example: 94 */
@@ -3165,6 +3479,8 @@ export interface MakerNotesTags {
3165
3479
  OrientationLinkedAF?: string;
3166
3480
  /** ☆☆☆☆ ✔ Example: "Same for vertical and horizontal" */
3167
3481
  OrientationLinkedAFPoint?: string;
3482
+ /** ☆☆☆☆ ✔ Example: 3318 */
3483
+ OriginalDecisionDataOffset?: number;
3168
3484
  /** ☆☆☆☆ Example: "/home/username/pictures" */
3169
3485
  OriginalDirectory?: string;
3170
3486
  /** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
@@ -3177,10 +3493,14 @@ export interface MakerNotesTags {
3177
3493
  OtherInfo?: string[];
3178
3494
  /** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
3179
3495
  OutputLUT?: BinaryField | string;
3496
+ /** ★★☆☆ ✔ Example: "Itsa Myowna" */
3497
+ OwnerName?: string;
3180
3498
  /** ☆☆☆☆ ✔ Example: 3 */
3181
3499
  POILevel?: number;
3182
3500
  /** ☆☆☆☆ ✔ Example: "Off" */
3183
3501
  PaintingFilter?: string;
3502
+ /** ☆☆☆☆ ✔ Example: "2023:01:19 22:32:42.04" */
3503
+ PanasonicDateTime?: ExifDateTime | string;
3184
3504
  /** ☆☆☆☆ ✔ Example: "0421" */
3185
3505
  PanasonicExifVersion?: string;
3186
3506
  /** ☆☆☆☆ ✔ Example: 5584 */
@@ -3221,6 +3541,8 @@ export interface MakerNotesTags {
3221
3541
  PentaxModelID?: string;
3222
3542
  /** ☆☆☆☆ ✔ Example: 6 */
3223
3543
  PentaxModelType?: number;
3544
+ /** ☆☆☆☆ ✔ Example: "9.1.2.0" */
3545
+ PentaxVersion?: string;
3224
3546
  /** ☆☆☆☆ ✔ Example: "513 513 513 513" */
3225
3547
  PerChannelBlackLevel?: string;
3226
3548
  /** ☆☆☆☆ ✔ Example: "Unknown (3)" */
@@ -3243,6 +3565,8 @@ export interface MakerNotesTags {
3243
3565
  PhotoShootingMenuBank?: string;
3244
3566
  /** ☆☆☆☆ ✔ Example: "FX (36x24)" */
3245
3567
  PhotoShootingMenuBankImageArea?: string;
3568
+ /** ☆☆☆☆ ✔ Example: "Vivid" */
3569
+ PhotoStyle?: string;
3246
3570
  /** ☆☆☆☆ ✔ Example: "Quick Adjust" */
3247
3571
  PictureControlAdjust?: string;
3248
3572
  /** ☆☆☆☆ ✔ Example: "Vivid" */
@@ -3283,6 +3607,8 @@ export interface MakerNotesTags {
3283
3607
  Pitch?: string;
3284
3608
  /** ☆☆☆☆ ✔ Example: 8.3 */
3285
3609
  PitchAngle?: number;
3610
+ /** ☆☆☆☆ ✔ Example: 1 */
3611
+ PixelAspectRatio?: number;
3286
3612
  /** ☆☆☆☆ ✔ Example: "n/a" */
3287
3613
  PixelShiftInfo?: string;
3288
3614
  /** ☆☆☆☆ Example: "On" */
@@ -3317,16 +3643,36 @@ export interface MakerNotesTags {
3317
3643
  PreviewButtonPlusDials?: string;
3318
3644
  /** ☆☆☆☆ ✔ Example: "28 28 0 0" */
3319
3645
  PreviewImageBorders?: string;
3646
+ /** ☆☆☆☆ ✔ Example: 976 */
3647
+ PreviewImageHeight?: number;
3648
+ /** ★★☆☆ ✔ Example: 9983 */
3649
+ PreviewImageLength?: number;
3650
+ /** ★☆☆☆ ✔ Example: "816x459" */
3651
+ PreviewImageSize?: string;
3652
+ /** ★★☆☆ ✔ Example: 9996 */
3653
+ PreviewImageStart?: number;
3320
3654
  /** ☆☆☆☆ ✔ Example: "Yes" */
3321
3655
  PreviewImageValid?: string;
3656
+ /** ☆☆☆☆ ✔ Example: 816 */
3657
+ PreviewImageWidth?: number;
3658
+ /** ☆☆☆☆ ✔ Example: 95 */
3659
+ PreviewQuality?: number;
3660
+ /** ★☆☆☆ ✔ Example: 8 */
3661
+ PrimaryAFPoint?: number;
3662
+ /** ☆☆☆☆ ✔ Example: "XQD Card" */
3663
+ PrimarySlot?: string;
3322
3664
  /** ☆☆☆☆ ✔ Example: "AF" */
3323
3665
  PrioritySetupShutterRelease?: string;
3666
+ /** ☆☆☆☆ ✔ Example: 9.987 */
3667
+ ProductionCode?: number;
3324
3668
  /** ☆☆☆☆ ✔ Example: "n/a" */
3325
3669
  ProgramISO?: string;
3326
3670
  /** ☆☆☆☆ ✔ Example: "Normal" */
3327
3671
  ProgramLine?: string;
3328
3672
  /** ☆☆☆☆ ✔ Example: 0 */
3329
3673
  ProgramShift?: number;
3674
+ /** ★★★☆ ✔ Example: "Unknown (5)" */
3675
+ Quality?: string;
3330
3676
  /** ☆☆☆☆ ✔ Example: "Exposure comp/Aperture" */
3331
3677
  QuickControlDialInMeter?: string;
3332
3678
  /** ☆☆☆☆ Example: "Off" */
@@ -3425,12 +3771,18 @@ export interface MakerNotesTags {
3425
3771
  RecordingFormat?: string;
3426
3772
  /** ☆☆☆☆ Example: "Auto" */
3427
3773
  RecordingMode?: string;
3774
+ /** ★★☆☆ ✔ Example: 38.625 */
3775
+ RedBalance?: number;
3428
3776
  /** ☆☆☆☆ ✔ Example: "On" */
3429
3777
  RedEyeRemoval?: string;
3778
+ /** ☆☆☆☆ Example: "8D" */
3779
+ RedGain?: string;
3430
3780
  /** ☆☆☆☆ ✔ Example: "Yes" */
3431
3781
  ReleaseButtonToUseDial?: string;
3432
3782
  /** ☆☆☆☆ ✔ Example: "Unknown (7)" */
3433
3783
  ReleaseMode?: string;
3784
+ /** ☆☆☆☆ ✔ Example: "None" */
3785
+ RemoteFuncButton?: string;
3434
3786
  /** ☆☆☆☆ ✔ Example: 0 */
3435
3787
  RemoteOnDuration?: number;
3436
3788
  /** ☆☆☆☆ ✔ Example: 10 */
@@ -3453,6 +3805,8 @@ export interface MakerNotesTags {
3453
3805
  RetouchInfoVersion?: string;
3454
3806
  /** ☆☆☆☆ ✔ Example: "On" */
3455
3807
  RetouchNEFProcessing?: string;
3808
+ /** ☆☆☆☆ ✔ Example: "Enable" */
3809
+ RetractLensOnPowerOff?: string;
3456
3810
  /** ☆☆☆☆ ✔ Example: "No" */
3457
3811
  ReverseExposureCompDial?: string;
3458
3812
  /** ☆☆☆☆ ✔ Example: "Not Reversed" */
@@ -3471,10 +3825,16 @@ export interface MakerNotesTags {
3471
3825
  RicohMake?: string;
3472
3826
  /** ☆☆☆☆ Example: "RICOH WG-M1" */
3473
3827
  RicohModel?: string;
3474
- /** ☆☆☆☆ Example: -6.1 */
3828
+ /** ☆☆☆☆ Example: 150.43 */
3475
3829
  Roll?: number;
3476
3830
  /** ☆☆☆☆ ✔ Example: 90 */
3477
3831
  RollAngle?: number;
3832
+ /** ☆☆☆☆ ✔ Example: 0 */
3833
+ RunTimeEpoch?: number;
3834
+ /** ☆☆☆☆ ✔ Example: "Valid" */
3835
+ RunTimeFlags?: string;
3836
+ /** ☆☆☆☆ ✔ Example: 1000000000 */
3837
+ RunTimeScale?: number;
3478
3838
  /** ☆☆☆☆ ✔ Example: 987823130000000 */
3479
3839
  RunTimeValue?: number;
3480
3840
  /** ☆☆☆☆ ✔ Example: "sRAW2 (sRAW)" */
@@ -3503,8 +3863,18 @@ export interface MakerNotesTags {
3503
3863
  SaturationAdj?: number;
3504
3864
  /** ☆☆☆☆ ✔ Example: 0 */
3505
3865
  SaturationAuto?: number;
3866
+ /** ☆☆☆☆ ✔ Example: 655360 */
3867
+ SaturationFaithful?: number;
3868
+ /** ☆☆☆☆ ✔ Example: 8650752 */
3869
+ SaturationLandscape?: number;
3870
+ /** ☆☆☆☆ ✔ Example: 6619136 */
3871
+ SaturationNeutral?: number;
3872
+ /** ☆☆☆☆ ✔ Example: 6553609 */
3873
+ SaturationPortrait?: number;
3506
3874
  /** ☆☆☆☆ ✔ Example: 0 */
3507
3875
  SaturationSetting?: number;
3876
+ /** ☆☆☆☆ ✔ Example: 3 */
3877
+ SaturationStandard?: number;
3508
3878
  /** ☆☆☆☆ ✔ Example: "Off" */
3509
3879
  SaveFocus?: string;
3510
3880
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -3517,6 +3887,8 @@ export interface MakerNotesTags {
3517
3887
  SceneMode?: string;
3518
3888
  /** ☆☆☆☆ Example: "Unknown (9)" */
3519
3889
  SceneModeUsed?: string;
3890
+ /** ☆☆☆☆ ✔ Example: "Unrecognized" */
3891
+ SceneRecognition?: string;
3520
3892
  /** ☆☆☆☆ Example: "User 1" */
3521
3893
  SceneSelect?: string;
3522
3894
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -3537,6 +3909,8 @@ export interface MakerNotesTags {
3537
3909
  SelfTimerShotCount?: number;
3538
3910
  /** ☆☆☆☆ ✔ Example: "1 s" */
3539
3911
  SelfTimerShotInterval?: string;
3912
+ /** ☆☆☆☆ ✔ Example: "2 s" */
3913
+ SelfTimerTime?: string;
3540
3914
  /** ☆☆☆☆ ✔ Example: {"_0":1,"_1":0,"_2":0,"_3":0} */
3541
3915
  SemanticStyle?: Struct;
3542
3916
  /** ☆☆☆☆ ✔ Example: true */
@@ -3553,6 +3927,8 @@ export interface MakerNotesTags {
3553
3927
  SensorBitDepth?: number;
3554
3928
  /** ☆☆☆☆ ✔ Example: 4214 */
3555
3929
  SensorBlueLevel?: number;
3930
+ /** ☆☆☆☆ ✔ Example: 5893 */
3931
+ SensorBottomBorder?: number;
3556
3932
  /** ☆☆☆☆ ✔ Example: "4095 646" */
3557
3933
  SensorCalibration?: string;
3558
3934
  /** ☆☆☆☆ ✔ Example: "Disable" */
@@ -3561,18 +3937,28 @@ export interface MakerNotesTags {
3561
3937
  SensorFullHeight?: number;
3562
3938
  /** ☆☆☆☆ Example: 3288 */
3563
3939
  SensorFullWidth?: number;
3940
+ /** ☆☆☆☆ ✔ Example: 5920 */
3941
+ SensorHeight?: number;
3564
3942
  /** ☆☆☆☆ Example: "1TCTJ8803BJ07G" */
3565
3943
  SensorID?: string;
3944
+ /** ☆☆☆☆ ✔ Example: 88 */
3945
+ SensorLeftBorder?: number;
3566
3946
  /** ☆☆☆☆ ✔ Example: "9.4 x 9.4 um" */
3567
3947
  SensorPixelSize?: string;
3568
3948
  /** ☆☆☆☆ ✔ Example: 4370 */
3569
3949
  SensorRedLevel?: number;
3950
+ /** ☆☆☆☆ ✔ Example: 8883 */
3951
+ SensorRightBorder?: number;
3570
3952
  /** ☆☆☆☆ ✔ Example: "7.576 x 5.682 mm" */
3571
3953
  SensorSize?: string;
3572
3954
  /** ☆☆☆☆ ✔ Example: "80.9 C" */
3573
3955
  SensorTemperature?: string;
3956
+ /** ☆☆☆☆ ✔ Example: 96 */
3957
+ SensorTopBorder?: number;
3574
3958
  /** ☆☆☆☆ ✔ Example: "Standard" */
3575
3959
  SensorType?: string;
3960
+ /** ☆☆☆☆ ✔ Example: 8896 */
3961
+ SensorWidth?: number;
3576
3962
  /** ☆☆☆☆ Example: "5 of 5" */
3577
3963
  Sequence?: string;
3578
3964
  /** ☆☆☆☆ ✔ Example: 4 */
@@ -3587,16 +3973,24 @@ export interface MakerNotesTags {
3587
3973
  SequenceShotInterval?: string;
3588
3974
  /** ☆☆☆☆ Example: "Unknown (28928)" */
3589
3975
  SequentialShot?: string;
3976
+ /** ★★☆☆ ✔ Example: "sw02028104 " */
3977
+ SerialNumber?: string;
3978
+ /** ☆☆☆☆ ✔ Example: "Format 2" */
3979
+ SerialNumberFormat?: string;
3590
3980
  /** ☆☆☆☆ ✔ Example: "Set: Picture Style" */
3591
3981
  SetButtonCrossKeysFunc?: string;
3592
3982
  /** ☆☆☆☆ ✔ Example: "Unknown (37 0)" */
3593
3983
  SetButtonWhenShooting?: string;
3984
+ /** ☆☆☆☆ ✔ Example: "Default (no function)" */
3985
+ SetFunctionWhenShooting?: string;
3594
3986
  /** ☆☆☆☆ ✔ Example: "On" */
3595
3987
  ShadingCompensation?: string;
3596
3988
  /** ☆☆☆☆ Example: 0 */
3597
3989
  Shadow?: number;
3598
3990
  /** ☆☆☆☆ Example: "On" */
3599
3991
  ShadowCorrection?: string;
3992
+ /** ☆☆☆☆ ✔ Example: "0 (normal)" */
3993
+ ShadowTone?: string;
3600
3994
  /** ☆☆☆☆ ✔ Example: 0 */
3601
3995
  Shadows?: number;
3602
3996
  /** ☆☆☆☆ ✔ Example: "On but Disabled" */
@@ -3607,14 +4001,26 @@ export interface MakerNotesTags {
3607
4001
  SharpnessAuto?: number;
3608
4002
  /** ☆☆☆☆ ✔ Example: 768 */
3609
4003
  SharpnessFactor?: number;
4004
+ /** ☆☆☆☆ ✔ Example: 0 */
4005
+ SharpnessFaithful?: number;
3610
4006
  /** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
3611
4007
  SharpnessFreqTable?: string;
3612
4008
  /** ☆☆☆☆ ✔ Example: "n/a" */
3613
4009
  SharpnessFrequency?: string;
4010
+ /** ☆☆☆☆ ✔ Example: 4 */
4011
+ SharpnessLandscape?: number;
4012
+ /** ☆☆☆☆ ✔ Example: 3 */
4013
+ SharpnessMonochrome?: number;
4014
+ /** ☆☆☆☆ ✔ Example: 0 */
4015
+ SharpnessNeutral?: number;
4016
+ /** ☆☆☆☆ ✔ Example: 2752758 */
4017
+ SharpnessPortrait?: number;
3614
4018
  /** ☆☆☆☆ ✔ Example: "+3" */
3615
4019
  SharpnessRange?: string;
3616
4020
  /** ☆☆☆☆ ✔ Example: "3 (min -3, max 5)" */
3617
4021
  SharpnessSetting?: string;
4022
+ /** ☆☆☆☆ ✔ Example: 4 */
4023
+ SharpnessStandard?: number;
3618
4024
  /** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
3619
4025
  SharpnessTable?: string;
3620
4026
  /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
@@ -3633,14 +4039,20 @@ export interface MakerNotesTags {
3633
4039
  ShotNumberSincePowerUp?: number;
3634
4040
  /** ☆☆☆☆ ✔ Example: 1 */
3635
4041
  ShotsPerInterval?: number;
4042
+ /** ☆☆☆☆ ✔ Example: "Silent / Electronic (0 0 0)" */
4043
+ Shutter?: string;
3636
4044
  /** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
3637
4045
  ShutterAELButton?: string;
4046
+ /** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
4047
+ ShutterButtonAFOnButton?: string;
3638
4048
  /** ☆☆☆☆ ✔ Example: 998 */
3639
4049
  ShutterCount?: number;
3640
4050
  /** ☆☆☆☆ Example: */
3641
4051
  ShutterCount2?: number;
3642
4052
  /** ☆☆☆☆ Example: */
3643
4053
  ShutterCount3?: number;
4054
+ /** ☆☆☆☆ ✔ Example: "2nd-curtain sync" */
4055
+ ShutterCurtainSync?: string;
3644
4056
  /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
3645
4057
  ShutterMode?: string;
3646
4058
  /** ☆☆☆☆ ✔ Example: "Single Shot" */
@@ -3661,6 +4073,8 @@ export interface MakerNotesTags {
3661
4073
  ShutterType?: string;
3662
4074
  /** ☆☆☆☆ ✔ Example: 58.592815 */
3663
4075
  SignalToNoiseRatio?: number;
4076
+ /** ☆☆☆☆ ✔ Example: "On" */
4077
+ SilentPhotography?: string;
3664
4078
  /** ☆☆☆☆ ✔ Example: 1 */
3665
4079
  SingleFrame?: number;
3666
4080
  /** ☆☆☆☆ ✔ Example: "Low" */
@@ -3671,6 +4085,8 @@ export interface MakerNotesTags {
3671
4085
  SlaveFlashMeteringSegments?: string;
3672
4086
  /** ★★☆☆ ✔ Example: "n/a" */
3673
4087
  SlowShutter?: string;
4088
+ /** ★☆☆☆ ✔ Example: "On" */
4089
+ SlowSync?: string;
3674
4090
  /** ☆☆☆☆ ✔ Example: "n/a" */
3675
4091
  SmartAlbumColor?: string;
3676
4092
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -3709,6 +4125,8 @@ export interface MakerNotesTags {
3709
4125
  SonyModelID?: string;
3710
4126
  /** ☆☆☆☆ ✔ Example: "Fine" */
3711
4127
  SonyQuality?: string;
4128
+ /** ☆☆☆☆ ✔ Example: */
4129
+ SonyTimeMinSec?: string;
3712
4130
  /** ☆☆☆☆ Example: 100 */
3713
4131
  SourceDirectoryIndex?: number;
3714
4132
  /** ☆☆☆☆ Example: 60 */
@@ -3717,6 +4135,10 @@ export interface MakerNotesTags {
3717
4135
  SpecialEffectLevel?: number;
3718
4136
  /** ☆☆☆☆ Example: "Off" */
3719
4137
  SpecialEffectMode?: string;
4138
+ /** ☆☆☆☆ Example: "Unknown (15)" */
4139
+ SpecialEffectSetting?: string;
4140
+ /** ★☆☆☆ ✔ Example: "Unknown (962), Sequence: 0, Panorama: (none)" */
4141
+ SpecialMode?: string;
3720
4142
  /** ☆☆☆☆ ✔ Example: 16383 */
3721
4143
  SpecularWhiteLevel?: number;
3722
4144
  /** ☆☆☆☆ Example: "+0.10" */
@@ -3725,8 +4147,14 @@ export interface MakerNotesTags {
3725
4147
  SpeedY?: string;
3726
4148
  /** ☆☆☆☆ Example: "+0.00" */
3727
4149
  SpeedZ?: string;
4150
+ /** ☆☆☆☆ Example: 1632 */
4151
+ SpotFocusPointX?: number;
4152
+ /** ☆☆☆☆ Example: 960 */
4153
+ SpotFocusPointY?: number;
3728
4154
  /** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
3729
4155
  SpotMeterLinkToAFPoint?: string;
4156
+ /** ★☆☆☆ ✔ Example: "Center" */
4157
+ SpotMeteringMode?: string;
3730
4158
  /** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
3731
4159
  StackedImage?: string;
3732
4160
  /** ☆☆☆☆ ✔ Example: "6 s" */
@@ -3747,6 +4175,8 @@ export interface MakerNotesTags {
3747
4175
  SubSelectorAssignment?: string;
3748
4176
  /** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
3749
4177
  SubSelectorCenter?: string;
4178
+ /** ☆☆☆☆ ✔ Example: "None" */
4179
+ SubSelectorPlusDials?: string;
3750
4180
  /** ☆☆☆☆ ✔ Example: "Steady" */
3751
4181
  SubjectMotion?: string;
3752
4182
  /** ☆☆☆☆ Example: "None" */
@@ -3789,10 +4219,10 @@ export interface MakerNotesTags {
3789
4219
  ThumbnailHeight?: number;
3790
4220
  /** ★★☆☆ ✔ Example: "0 159 7 112" */
3791
4221
  ThumbnailImageValidArea?: string;
3792
- /** ☆☆☆☆ ✔ Example: 13181 */
3793
- ThumbnailLength?: number;
3794
4222
  /** ☆☆☆☆ ✔ Example: 160 */
3795
4223
  ThumbnailWidth?: number;
4224
+ /** ☆☆☆☆ ✔ Example: "(Binary data 7404 bytes, use -b option to extract)" */
4225
+ TiffMeteringImage?: BinaryField | string;
3796
4226
  /** ☆☆☆☆ ✔ Example: 30 */
3797
4227
  TiffMeteringImageHeight?: number;
3798
4228
  /** ☆☆☆☆ ✔ Example: 44 */
@@ -3803,6 +4233,8 @@ export interface MakerNotesTags {
3803
4233
  TimeLapseShotNumber?: number;
3804
4234
  /** ☆☆☆☆ ✔ Example: "01:48:53.63" */
3805
4235
  TimeSincePowerOn?: ExifTime | string;
4236
+ /** ☆☆☆☆ ✔ Example: "2023:02:08 02:24:10.176-08:00" */
4237
+ TimeStamp?: ExifDateTime | string;
3806
4238
  /** ★☆☆☆ ✔ Example: "-09:00" */
3807
4239
  TimeZone?: string;
3808
4240
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -3811,23 +4243,35 @@ export interface MakerNotesTags {
3811
4243
  TimeZoneCode?: number;
3812
4244
  /** ☆☆☆☆ ✔ Example: 0 */
3813
4245
  TimeZoneInfo?: number;
4246
+ /** ☆☆☆☆ ✔ Example: "Self-timer" */
4247
+ TimerFunctionButton?: string;
3814
4248
  /** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
3815
4249
  TimerLength?: string;
4250
+ /** ☆☆☆☆ ✔ Example: "Off" */
4251
+ TimerRecording?: string;
4252
+ /** ☆☆☆☆ ✔ Example: "Normal" */
4253
+ ToneComp?: string;
3816
4254
  /** ☆☆☆☆ ✔ Example: "Standard" */
3817
4255
  ToneCurve?: string;
3818
4256
  /** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
3819
4257
  ToneCurveMatching?: BinaryField | string;
3820
4258
  /** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
3821
4259
  ToneCurveTable?: BinaryField | string;
4260
+ /** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
4261
+ ToneLevel?: string;
3822
4262
  /** ☆☆☆☆ ✔ Example: "n/a" */
3823
4263
  ToningEffect?: string;
3824
4264
  /** ☆☆☆☆ ✔ Example: "n/a" */
3825
4265
  ToningEffectAuto?: string;
4266
+ /** ☆☆☆☆ ✔ Example: "None" */
4267
+ ToningEffectMonochrome?: string;
3826
4268
  /** ☆☆☆☆ ✔ Example: "n/a" */
3827
4269
  ToningSaturation?: string;
3828
4270
  /** ☆☆☆☆ Example: 5 */
3829
4271
  TotalZoom?: number;
3830
4272
  /** ☆☆☆☆ ✔ Example: "Off" */
4273
+ TouchAE?: string;
4274
+ /** ☆☆☆☆ ✔ Example: "Off" */
3831
4275
  ToyCameraFilter?: string;
3832
4276
  /** ☆☆☆☆ Example: "Off" */
3833
4277
  Transform?: string;
@@ -3839,6 +4283,10 @@ export interface MakerNotesTags {
3839
4283
  TriggerMode?: string;
3840
4284
  /** ☆☆☆☆ ✔ Example: "1/64" */
3841
4285
  TvExposureTimeSetting?: string;
4286
+ /** ☆☆☆☆ ✔ Example: "Enable" */
4287
+ USBPowerDelivery?: string;
4288
+ /** ☆☆☆☆ ✔ Example: "Turns on after one-shot AF" */
4289
+ USMLensElectronicMF?: string;
3842
4290
  /** ☆☆☆☆ ✔ Example: "7860345b882000641403450101000000170d0f1d0f11827ca3111430d3000000" */
3843
4291
  UniqueID?: string;
3844
4292
  /** ☆☆☆☆ Example: "ZME151000007" */
@@ -3847,20 +4295,38 @@ export interface MakerNotesTags {
3847
4295
  UsableMeteringModes?: string;
3848
4296
  /** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
3849
4297
  UsableShootingModes?: string;
4298
+ /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4299
+ UserDef1PictureStyle?: string;
4300
+ /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
4301
+ UserDef2PictureStyle?: string;
4302
+ /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4303
+ UserDef3PictureStyle?: string;
3850
4304
  /** ☆☆☆☆ Example: "PC900 COVERT PRO" */
3851
4305
  UserLabel?: string;
4306
+ /** ☆☆☆☆ Example: "dpreview " */
4307
+ UserProfile?: string;
4308
+ /** ☆☆☆☆ ✔ Example: "Enable" */
4309
+ VFDisplayIllumination?: string;
4310
+ /** ★☆☆☆ ✔ Example: 0 */
4311
+ VRDOffset?: number;
3852
4312
  /** ☆☆☆☆ ✔ Example: "0200" */
3853
4313
  VRInfoVersion?: string;
3854
4314
  /** ☆☆☆☆ ✔ Example: "Sport" */
3855
4315
  VRMode?: string;
3856
4316
  /** ☆☆☆☆ ✔ Example: "Unknown (1)" */
3857
4317
  VRType?: string;
4318
+ /** ★☆☆☆ ✔ Example: 99 */
4319
+ ValidAFPoints?: number;
3858
4320
  /** ☆☆☆☆ ✔ Example: "12 0" */
3859
4321
  ValidBits?: string;
3860
4322
  /** ☆☆☆☆ ✔ Example: "Scene Auto" */
3861
4323
  VariProgram?: string;
4324
+ /** ☆☆☆☆ ✔ Example: "n/a" */
4325
+ VariableLowPassFilter?: string;
3862
4326
  /** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
3863
4327
  VerticalAFOnButton?: string;
4328
+ /** ☆☆☆☆ ✔ Example: "Exposure Compensation" */
4329
+ VerticalFuncButton?: string;
3864
4330
  /** ☆☆☆☆ ✔ Example: "None" */
3865
4331
  VerticalFuncButtonPlusDials?: string;
3866
4332
  /** ☆☆☆☆ ✔ Example: "Same as AF-On" */
@@ -3887,12 +4353,20 @@ export interface MakerNotesTags {
3887
4353
  ViewfinderWarnings?: string;
3888
4354
  /** ☆☆☆☆ ✔ Example: "ViewFinder" */
3889
4355
  ViewingMode?: string;
4356
+ /** ☆☆☆☆ ✔ Example: "Off" */
4357
+ VignetteControl?: string;
3890
4358
  /** ☆☆☆☆ Example: "Off" */
3891
4359
  Vignetting?: string;
4360
+ /** ☆☆☆☆ ✔ Example: "36 -17446 -19682 0 15496 -19605 -10627 -28672 187 27452 -… 99 121" */
4361
+ VignettingCorrParams?: string;
3892
4362
  /** ☆☆☆☆ ✔ Example: 97 */
3893
4363
  VignettingCorrVersion?: number;
4364
+ /** ☆☆☆☆ ✔ Example: "n/a" */
4365
+ VignettingCorrection?: string;
3894
4366
  /** ☆☆☆☆ Example: "Off" */
3895
4367
  VoiceMemo?: string;
4368
+ /** ☆☆☆☆ ✔ Example: 9235 */
4369
+ WBBlueLevel?: number;
3896
4370
  /** ☆☆☆☆ ✔ Example: "Off" */
3897
4371
  WBBracketMode?: string;
3898
4372
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -3903,16 +4377,22 @@ export interface MakerNotesTags {
3903
4377
  WBBracketValueGM?: number;
3904
4378
  /** ☆☆☆☆ ✔ Example: "WB Bracketing Disabled" */
3905
4379
  WBBracketingSteps?: string;
4380
+ /** ☆☆☆☆ ✔ Example: 60416 */
4381
+ WBGreenLevel?: number;
3906
4382
  /** ☆☆☆☆ ✔ Example: "Rear LCD panel" */
3907
4383
  WBMediaImageSizeSetting?: string;
3908
4384
  /** ☆☆☆☆ ✔ Example: "Unknown (1 1)" */
3909
4385
  WBMode?: string;
4386
+ /** ☆☆☆☆ ✔ Example: 834 */
4387
+ WBRedLevel?: number;
3910
4388
  /** ☆☆☆☆ ✔ Example: 7 */
3911
4389
  WBShiftAB?: number;
3912
4390
  /** ☆☆☆☆ ✔ Example: 0 */
3913
4391
  WBShiftCreativeControl?: number;
3914
4392
  /** ☆☆☆☆ ✔ Example: 0 */
3915
4393
  WBShiftGM?: number;
4394
+ /** ☆☆☆☆ ✔ Example: 0 */
4395
+ WBShiftIntelligentAuto?: number;
3916
4396
  /** ☆☆☆☆ ✔ Example: "Off" */
3917
4397
  WatercolorFilter?: string;
3918
4398
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -3925,6 +4405,8 @@ export interface MakerNotesTags {
3925
4405
  WhiteBalanceBracket?: string;
3926
4406
  /** ☆☆☆☆ ✔ Example: "Off" */
3927
4407
  WhiteBalanceBracketing?: string;
4408
+ /** ★☆☆☆ ✔ Example: 3 */
4409
+ WhiteBalanceFineTune?: number;
3928
4410
  /** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
3929
4411
  WhiteBalanceMatching?: string;
3930
4412
  /** ☆☆☆☆ ✔ Example: "User-Selected" */
@@ -3935,6 +4417,8 @@ export interface MakerNotesTags {
3935
4417
  WhiteBalanceSet?: string;
3936
4418
  /** ☆☆☆☆ ✔ Example: "Custom 1" */
3937
4419
  WhiteBalanceSetting?: string;
4420
+ /** ☆☆☆☆ ✔ Example: "Auto" */
4421
+ WhiteBalanceSetup?: string;
3938
4422
  /** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
3939
4423
  WhiteBalanceTable?: BinaryField | string;
3940
4424
  /** ☆☆☆☆ ✔ Example: "Auto" */
@@ -3943,6 +4427,8 @@ export interface MakerNotesTags {
3943
4427
  WhiteBoard?: number;
3944
4428
  /** ☆☆☆☆ Example: "Not Attached" */
3945
4429
  WideAdapter?: string;
4430
+ /** ☆☆☆☆ Example: "Unknown (9)" */
4431
+ WideFocusZone?: string;
3946
4432
  /** ☆☆☆☆ Example: "Off" */
3947
4433
  WideRange?: string;
3948
4434
  /** ☆☆☆☆ ✔ Example: "Hometown" */
@@ -3951,8 +4437,6 @@ export interface MakerNotesTags {
3951
4437
  X3FillLight?: number;
3952
4438
  /** ☆☆☆☆ Example: "(Binary data 512 bytes, use -b option to extract)" */
3953
4439
  Xidiri?: BinaryField | string;
3954
- /** ☆☆☆☆ ✔ Example: "Unknown (512)" */
3955
- YCbCrPositioning?: string;
3956
4440
  /** ☆☆☆☆ Example: 0.83734368 */
3957
4441
  Yaw?: number;
3958
4442
  /** ☆☆☆☆ ✔ Example: 99 */
@@ -4015,14 +4499,20 @@ export interface XMPTags {
4015
4499
  BlueHue?: number;
4016
4500
  /** ☆☆☆☆ ✔ Example: 0 */
4017
4501
  BlueSaturation?: number;
4502
+ /** ☆☆☆☆ ✔ Example: 9.25 */
4503
+ Brightness?: number;
4018
4504
  /** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
4019
4505
  BurstID?: string;
4020
4506
  /** ☆☆☆☆ ✔ Example: 1 */
4021
4507
  BurstPrimary?: number;
4508
+ /** ☆☆☆☆ Example: 0 */
4509
+ CamReverse?: number;
4022
4510
  /** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
4023
4511
  CameraBurstID?: string;
4024
4512
  /** ☆☆☆☆ Example: "Front" */
4025
4513
  CameraFacing?: string;
4514
+ /** ☆☆☆☆ ✔ Example: "" */
4515
+ CameraModelID?: string;
4026
4516
  /** ☆☆☆☆ ✔ Example: "Embedded" */
4027
4517
  CameraProfile?: string;
4028
4518
  /** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
@@ -4061,20 +4551,28 @@ export interface XMPTags {
4061
4551
  ColorNoiseReductionDetail?: number;
4062
4552
  /** ☆☆☆☆ ✔ Example: 50 */
4063
4553
  ColorNoiseReductionSmoothness?: number;
4064
- /** ☆☆☆☆ ✔ Example: "sRGB" */
4065
- ColorSpace?: string;
4066
4554
  /** ☆☆☆☆ ✔ Example: "" */
4067
4555
  Colorlabels?: string;
4556
+ /** ☆☆☆☆ ✔ Example: "This is a comment." */
4557
+ Comment?: string;
4068
4558
  /** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
4069
4559
  Container?: Struct;
4070
4560
  /** ☆☆☆☆ ✔ Example: false */
4071
4561
  ConvertToGrayscale?: boolean;
4562
+ /** ☆☆☆☆ ✔ Example: "United States" */
4563
+ Country?: string;
4564
+ /** ☆☆☆☆ ✔ Example: "ir" */
4565
+ CountryCode?: string;
4072
4566
  /** ☆☆☆☆ Example: */
4073
4567
  CreationTime?: ExifDateTime | string;
4074
4568
  /** ☆☆☆☆ ✔ Example: ["daniel@woss.io"] */
4075
4569
  Creator?: string[];
4570
+ /** ☆☆☆☆ Example: "{2d7e7fd6-2942-4d77-9842-389c3f62b14d}" */
4571
+ CreatorAppID?: string;
4076
4572
  /** ☆☆☆☆ ✔ Example: {"CiAdrCity":"Amsterdam","CiAdrCtry":"Netherlands","CiAdr…73 CH"} */
4077
4573
  CreatorContactInfo?: Struct;
4574
+ /** ☆☆☆☆ Example: 1 */
4575
+ CreatorOpenWithUIOptions?: number;
4078
4576
  /** ☆☆☆☆ ✔ Example: "picnik.com" */
4079
4577
  CreatorTool?: string;
4080
4578
  /** ☆☆☆☆ Example: "Version Ver 1.04 " */
@@ -4085,8 +4583,12 @@ export interface XMPTags {
4085
4583
  CropBottom?: number;
4086
4584
  /** ☆☆☆☆ Example: 0 */
4087
4585
  CropConstrainToWarp?: number;
4586
+ /** ☆☆☆☆ ✔ Example: "8 0" */
4587
+ CropLeft?: string;
4088
4588
  /** ☆☆☆☆ Example: 1 */
4089
4589
  CropRight?: number;
4590
+ /** ☆☆☆☆ ✔ Example: "8 0" */
4591
+ CropTop?: string;
4090
4592
  /** ☆☆☆☆ ✔ Example: 3872 */
4091
4593
  CroppedAreaImageHeightPixels?: number;
4092
4594
  /** ☆☆☆☆ ✔ Example: 7744 */
@@ -4097,6 +4599,8 @@ export interface XMPTags {
4097
4599
  CroppedAreaTopPixels?: number;
4098
4600
  /** ☆☆☆☆ ✔ Example: "2014:05:11 13:08:25.659" */
4099
4601
  DateAcquired?: ExifDateTime | string;
4602
+ /** ☆☆☆☆ ✔ Example: "2022:10:25" */
4603
+ DateCreated?: ExifDateTime | string;
4100
4604
  /** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
4101
4605
  DateTime?: ExifDateTime | string;
4102
4606
  /** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
@@ -4125,10 +4629,6 @@ export interface XMPTags {
4125
4629
  DisableAutoCreation?: string[];
4126
4630
  /** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
4127
4631
  DocumentID?: string;
4128
- /** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
4129
- ExifVersion?: string;
4130
- /** ☆☆☆☆ ✔ Example: "Unknown (Auto exposure)" */
4131
- ExposureMode?: string;
4132
4632
  /** ☆☆☆☆ Example: [{"FaceAnglePitch":0.009265,"FaceAngleRoll":-0.021281,"Fa…re":4}] */
4133
4633
  Face?: Struct[];
4134
4634
  /** ☆☆☆☆ Example: 1 */
@@ -4137,14 +4637,14 @@ export interface XMPTags {
4137
4637
  FaceSelectedIndex?: number;
4138
4638
  /** ☆☆☆☆ Example: 8 */
4139
4639
  Far?: number;
4140
- /** ☆☆☆☆ ✔ Example: 1 */
4141
- Firmware?: number;
4640
+ /** ☆☆☆☆ ✔ Example: "u77" */
4641
+ Firmware?: string;
4642
+ /** ☆☆☆☆ ✔ Example: 0 */
4643
+ FlashCompensation?: number;
4142
4644
  /** ☆☆☆☆ ✔ Example: "Example flash make" */
4143
4645
  FlashManufacturer?: string;
4144
4646
  /** ☆☆☆☆ ✔ Example: "FlashPix Version 1.0" */
4145
4647
  FlashPixVersion?: string;
4146
- /** ☆☆☆☆ Example: "0100" */
4147
- FlashpixVersion?: string;
4148
4648
  /** ☆☆☆☆ Example: 3.8 */
4149
4649
  FlightPitchDegree?: number;
4150
4650
  /** ☆☆☆☆ Example: 4.5 */
@@ -4173,6 +4673,8 @@ export interface XMPTags {
4173
4673
  FullPanoWidthPixels?: number;
4174
4674
  /** ☆☆☆☆ Example: -90 */
4175
4675
  GimbalPitchDegree?: number;
4676
+ /** ☆☆☆☆ Example: 0 */
4677
+ GimbalReverse?: number;
4176
4678
  /** ☆☆☆☆ Example: "+0.00" */
4177
4679
  GimbalRollDegree?: string;
4178
4680
  /** ☆☆☆☆ Example: "+90.80" */
@@ -4183,6 +4685,8 @@ export interface XMPTags {
4183
4685
  GreenHue?: number;
4184
4686
  /** ☆☆☆☆ ✔ Example: 0 */
4185
4687
  GreenSaturation?: number;
4688
+ /** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
4689
+ HDRPMakerNote?: BinaryField | string;
4186
4690
  /** ☆☆☆☆ ✔ Example: false */
4187
4691
  HasCrop?: boolean;
4188
4692
  /** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
@@ -4213,6 +4717,10 @@ export interface XMPTags {
4213
4717
  HueAdjustmentYellow?: number;
4214
4718
  /** ☆☆☆☆ ✔ Example: "sRGB IEC61966-2.1" */
4215
4719
  ICCProfileName?: string;
4720
+ /** ☆☆☆☆ ✔ Example: 4048 */
4721
+ ImageLength?: number;
4722
+ /** ☆☆☆☆ ✔ Example: 9956 */
4723
+ ImageNumber?: number;
4216
4724
  /** ☆☆☆☆ ✔ Example: 180 */
4217
4725
  InitialViewHeadingDegrees?: number;
4218
4726
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4229,6 +4737,10 @@ export interface XMPTags {
4229
4737
  IsBokehActive?: boolean;
4230
4738
  /** ☆☆☆☆ ✔ Example: true */
4231
4739
  IsHDRActive?: boolean;
4740
+ /** ☆☆☆☆ ✔ Example: false */
4741
+ IsNightModeActive?: boolean;
4742
+ /** ☆☆☆☆ ✔ Example: "選択" */
4743
+ Label?: string;
4232
4744
  /** ☆☆☆☆ ✔ Example: ["red fish","bluefish"] */
4233
4745
  LastKeywordXMP?: string[];
4234
4746
  /** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
@@ -4271,8 +4783,6 @@ export interface XMPTags {
4271
4783
  Marked?: boolean;
4272
4784
  /** ☆☆☆☆ ✔ Example: "" */
4273
4785
  Mask?: string;
4274
- /** ☆☆☆☆ ✔ Example: 5.7 */
4275
- MaxApertureValue?: number;
4276
4786
  /** ☆☆☆☆ ✔ Example: "2021:10:26 11:01:05+01:00" */
4277
4787
  MetadataDate?: ExifDateTime | string;
4278
4788
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -4351,6 +4861,8 @@ export interface XMPTags {
4351
4861
  PhotographicSensitivity?: number;
4352
4862
  /** ☆☆☆☆ ✔ Example: 0 */
4353
4863
  PickLabel?: number;
4864
+ /** ☆☆☆☆ ✔ Example: "01.00" */
4865
+ PipelineVersion?: string;
4354
4866
  /** ☆☆☆☆ ✔ Example: 65537 */
4355
4867
  PortraitEffectsMatteVersion?: number;
4356
4868
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4369,8 +4881,14 @@ export interface XMPTags {
4369
4881
  ProcessVersion?: number;
4370
4882
  /** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
4371
4883
  Profiles?: Struct[];
4884
+ /** ☆☆☆☆ Example: */
4885
+ ProgramMode?: string;
4372
4886
  /** ☆☆☆☆ ✔ Example: "equirectangular" */
4373
4887
  ProjectionType?: string;
4888
+ /** ★★☆☆ ✔ Example: 5 */
4889
+ Rating?: number;
4890
+ /** ☆☆☆☆ ✔ Example: 50 */
4891
+ RatingPercent?: number;
4374
4892
  /** ☆☆☆☆ ✔ Example: "P2030414.jpg" */
4375
4893
  RawFileName?: string;
4376
4894
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4405,8 +4923,10 @@ export interface XMPTags {
4405
4923
  SaturationAdjustmentYellow?: number;
4406
4924
  /** ☆☆☆☆ ✔ Example: "AutoHDR" */
4407
4925
  Scene?: string;
4408
- /** ☆☆☆☆ ✔ Example: "Unknown (Standard)" */
4409
- SceneCaptureType?: string;
4926
+ /** ☆☆☆☆ ✔ Example: "[0.997883, 0.92984027]" */
4927
+ SceneDetectResultConfidences?: string;
4928
+ /** ☆☆☆☆ ✔ Example: "[901, 60, 0]" */
4929
+ SceneDetectResultIds?: string;
4410
4930
  /** ☆☆☆☆ Example: "Undefined" */
4411
4931
  SelfData?: string;
4412
4932
  /** ☆☆☆☆ ✔ Example: 65536 */
@@ -4421,6 +4941,8 @@ export interface XMPTags {
4421
4941
  SharpenRadius?: string;
4422
4942
  /** ☆☆☆☆ ✔ Example: 2 */
4423
4943
  SourcePhotosCount?: number;
4944
+ /** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.Spec…TRAIT"] */
4945
+ SpecialTypeID?: string[];
4424
4946
  /** ☆☆☆☆ ✔ Example: 0 */
4425
4947
  SplitToningBalance?: number;
4426
4948
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4431,22 +4953,26 @@ export interface XMPTags {
4431
4953
  SplitToningShadowHue?: number;
4432
4954
  /** ☆☆☆☆ ✔ Example: 0 */
4433
4955
  SplitToningShadowSaturation?: number;
4434
- /** ☆☆☆☆ Example: "Washington" */
4956
+ /** ☆☆☆☆Example: "Washington" */
4435
4957
  State?: string;
4436
4958
  /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
4437
4959
  StitchingSoftware?: string;
4438
- /** ☆☆☆☆ ✔ Example: 296185 */
4439
- SubSecTimeOriginal?: number;
4960
+ /** ☆☆☆☆ ✔ Example: 3 */
4961
+ StreamType?: number;
4440
4962
  /** ☆☆☆☆ ✔ Example: ["点像F11"] */
4441
4963
  Subject?: string[];
4442
4964
  /** ☆☆☆☆ ✔ Example: 296185 */
4443
4965
  SubsecTime?: number;
4966
+ /** ☆☆☆☆ ✔ Example: "#MB%:{9C0B071B-5553-4D89-B252-934C9EC1E04D}GBMB1:%MB#" */
4967
+ Tag?: string;
4444
4968
  /** ☆☆☆☆ ✔ Example: "Yes" */
4445
4969
  Tagged?: string;
4446
4970
  /** ☆☆☆☆ ✔ Example: ["Subjekt/Natur/Pflanzen","Ort/Deutschland/Rangsdorf"] */
4447
4971
  TagsList?: string[];
4448
4972
  /** ☆☆☆☆ ✔ Example: "+5" */
4449
4973
  Tint?: string;
4974
+ /** ☆☆☆☆ ✔ Example: "Very Blank" */
4975
+ Title?: string;
4450
4976
  /** ☆☆☆☆ Example: 0 */
4451
4977
  TlinearGain?: number;
4452
4978
  /** ☆☆☆☆ ✔ Example: ["0, 0","255, 255"] */
@@ -4483,6 +5009,8 @@ export interface XMPTags {
4483
5009
  UprightTransformCount?: number;
4484
5010
  /** ☆☆☆☆ ✔ Example: 151388160 */
4485
5011
  UprightVersion?: number;
5012
+ /** ☆☆☆☆ ✔ Example: true */
5013
+ UsePanoramaViewer?: boolean;
4486
5014
  /** ☆☆☆☆ Example: */
4487
5015
  Versions?: Version[] | Version | string;
4488
5016
  /** ☆☆☆☆ ✔ Example: "+21" */
@@ -4508,15 +5036,11 @@ export interface XMPTags {
4508
5036
  * devices (like iPhones) An example value, JSON stringified, follows the
4509
5037
  * popularity ratings.
4510
5038
  *
4511
- * Autogenerated by "yarn mktags" by ExifTool 12.70 on Fri Dec 01 2023.
4512
- * 3086 unique tags were found in 10096 photo and video files.
5039
+ * Autogenerated by "yarn mktags" by ExifTool 12.70 on Fri Dec 08 2023.
5040
+ * 2724 unique tags were found in 10096 photo and video files.
4513
5041
  */
4514
- export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, ImageDataHashTag, JFIFTags, MPFTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
4515
- errors?: string[];
4516
- /** ☆☆☆☆ ✔ Example: "File is empty" */
4517
- Error?: string;
4518
- /** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
4519
- Warning?: string;
5042
+ export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ErrorsAndWarnings, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, ImageDataHashTag, JFIFTags, MPFTags, MWGCollectionsTags, MWGKeywordTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
5043
+ /** Full, resolved native path to this file */
4520
5044
  SourceFile?: string;
4521
5045
  /** Either an offset, like `UTC-7`, or an actual timezone, like `America/Los_Angeles` */
4522
5046
  tz?: string;