exiftool-vendored 18.2.0 → 18.4.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.
package/dist/Tags.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { ApplicationRecordTags } from "./ApplicationRecordTags";
2
+ import { BinaryField } from "./BinaryField";
2
3
  import { ExifDate } from "./ExifDate";
3
4
  import { ExifDateTime } from "./ExifDateTime";
4
5
  import { ExifTime } from "./ExifTime";
@@ -9,6 +10,8 @@ import { Version } from "./Version";
9
10
  export interface ExifToolTags {
10
11
  /** ☆☆☆☆ ✔ Example: "File is empty" */
11
12
  Error?: string;
13
+ /** ★★★★ ✔ Example: 12.49 */
14
+ ExifToolVersion?: number;
12
15
  /** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
13
16
  Warning?: string;
14
17
  }
@@ -23,8 +26,18 @@ export interface FileTags {
23
26
  Compression?: string;
24
27
  /** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
25
28
  CurrentIPTCDigest?: string;
29
+ /** ★★★★ ✔ Example: "/home/username/pictures" */
30
+ Directory?: string;
31
+ /** ★★★★ ✔ Example: "2022:10:21 12:57:22-07:00" */
32
+ FileAccessDate?: ExifDateTime | string;
33
+ /** ★★★★ ✔ Example: "2022:10:21 12:48:56-07:00" */
34
+ FileInodeChangeDate?: ExifDateTime | string;
35
+ /** ★★★★ ✔ Example: "2022:10:13 13:19:48-07:00" */
36
+ FileModifyDate?: ExifDateTime | string;
26
37
  /** ★★★★ ✔ Example: "utc+8_oly.jpg" */
27
38
  FileName?: string;
39
+ /** ★★★★ ✔ Example: "-rwxrwxr-x" */
40
+ FilePermissions?: string;
28
41
  /** ★★★★ ✔ Example: "990 bytes" */
29
42
  FileSize?: string;
30
43
  /** ★★★★ ✔ Example: "RW2" */
@@ -49,12 +62,14 @@ export interface FileTags {
49
62
  PixelsPerMeterY?: number;
50
63
  /** ☆☆☆☆ ✔ Example: 1 */
51
64
  Planes?: number;
52
- /** ☆☆☆☆ ✔ Example: "(Binary data 93064 bytes, use -b option to extract)" */
53
- PreviewImage?: string;
65
+ /** ☆☆☆☆ ✔ Example: "(Binary data 315546 bytes, use -b option to extract)" */
66
+ PreviewImage?: BinaryField;
54
67
  }
55
68
  export interface CompositeTags {
56
69
  /** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
57
70
  AdvancedSceneMode?: string;
71
+ /** ★★★★ ✔ Example: 90 */
72
+ Aperture?: number;
58
73
  /** ☆☆☆☆ ✔ Example: "On" */
59
74
  AutoFocus?: string;
60
75
  /** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
@@ -69,33 +84,35 @@ export interface CompositeTags {
69
84
  ConditionalFEC?: number;
70
85
  /** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
71
86
  DOF?: string;
72
- /** ☆☆☆☆ Example: 2006-12-19 */
87
+ /** ☆☆☆☆ Example: "2006:12:19" */
73
88
  DateCreated?: ExifDateTime | string;
74
- /** ☆☆☆☆ ✔ Example: undefined */
89
+ /** ☆☆☆☆ ✔ Example: "2020:03:30 12:03:59-12:03" */
75
90
  DateTimeCreated?: ExifDateTime | string;
76
- /** ☆☆☆☆ ✔ Example: 2017-02-20T18:06:40.000Z */
91
+ /** ☆☆☆☆ ✔ Example: "2017:02:20 18:06:40+00:00" */
77
92
  DateTimeOriginal?: ExifDateTime | string;
93
+ /** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
94
+ DigitalCreationDateTime?: ExifDateTime | string;
78
95
  /** ☆☆☆☆ ✔ Example: "4.00x" */
79
96
  DigitalZoom?: string;
80
97
  /** ★★☆☆ ✔ Example: "Single-frame Shooting" */
81
98
  DriveMode?: string;
82
99
  /** ☆☆☆☆ ✔ Example: 25.866408 */
83
100
  Duration?: number;
101
+ /** ☆☆☆☆ ✔ Example: "Not attached" */
102
+ ExtenderStatus?: string;
84
103
  /** ★★★★ ✔ Example: "97.7 deg" */
85
104
  FOV?: string;
86
105
  /** ☆☆☆☆ ✔ Example: "Off, Did not fire" */
87
106
  Flash?: string;
88
107
  /** ☆☆☆☆ ✔ Example: "External" */
89
108
  FlashType?: string;
90
- /** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
91
- FocalLength35efl?: string;
92
109
  /** ☆☆☆☆ ✔ Example: "inf" */
93
110
  FocusDistance?: string;
94
111
  /** ☆☆☆☆ ✔ Example: 99.8 */
95
112
  GPSAltitude?: number;
96
113
  /** ☆☆☆☆ ✔ Example: "Above Sea Level" */
97
114
  GPSAltitudeRef?: string;
98
- /** ☆☆☆☆ ✔ Example: 2020-10-23T09:27:26.000Z */
115
+ /** ☆☆☆☆ ✔ Example: "2022:04:13 12:59:47Z" */
99
116
  GPSDateTime?: ExifDateTime | string;
100
117
  /** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
101
118
  GPSDestLatitude?: string;
@@ -132,7 +149,7 @@ export interface CompositeTags {
132
149
  /** ★★★★ ✔ Example: 9.5 */
133
150
  Megapixels?: number;
134
151
  /** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
135
- OriginalDecisionData?: string;
152
+ OriginalDecisionData?: BinaryField | string;
136
153
  /** ☆☆☆☆ Example: "9.9 um" */
137
154
  PeakSpectralSensitivity?: string;
138
155
  /** ☆☆☆☆ ✔ Example: "816x459" */
@@ -157,19 +174,19 @@ export interface CompositeTags {
157
174
  ShutterCurtainHack?: string;
158
175
  /** ★★★★ ✔ Example: "inf" */
159
176
  ShutterSpeed?: string;
160
- /** ★☆☆☆ ✔ Example: 2022-02-14T12:41:41.996-05:00 */
177
+ /** ★☆☆☆ ✔ Example: "2022:10:05 11:42:07.515-07:00" */
161
178
  SubSecCreateDate?: ExifDateTime | string;
162
- /** ★☆☆☆ ✔ Example: 2022-02-14T12:41:41.996-05:00 */
179
+ /** ★☆☆☆ ✔ Example: "2022:10:05 11:42:07.515-07:00" */
163
180
  SubSecDateTimeOriginal?: ExifDateTime | string;
164
181
  /** ☆☆☆☆ Example: */
165
182
  SubSecMediaCreateDate?: ExifDateTime | string;
166
- /** ★☆☆☆ ✔ Example: 2022-02-14T12:41:41.996-05:00 */
183
+ /** ★☆☆☆ ✔ Example: "2022:10:05 11:42:07.515-07:00" */
167
184
  SubSecModifyDate?: ExifDateTime | string;
168
185
  }
169
186
  export interface APP1Tags {
170
187
  /** ☆☆☆☆ Example: "59 128 128" */
171
188
  AboveColor?: string;
172
- /** ☆☆☆☆ Example: "29.4 C" */
189
+ /** ☆☆☆☆ Example: "5.0 C" */
173
190
  AtmosphericTemperature?: string;
174
191
  /** ☆☆☆☆ Example: "60 128 128" */
175
192
  BelowColor?: string;
@@ -177,14 +194,22 @@ export interface APP1Tags {
177
194
  CameraModel?: string;
178
195
  /** ☆☆☆☆ Example: "_______________" */
179
196
  CameraPartNumber?: string;
180
- /** ☆☆☆☆ Example: 63988888 */
197
+ /** ☆☆☆☆ Example: 8340330 */
181
198
  CameraSerialNumber?: number;
182
199
  /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
183
200
  CameraSoftware?: string;
184
201
  /** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
185
202
  CreatorSoftware?: string;
186
- /** ☆☆☆☆ Example: 2013-03-12T16:31:26.000 */
203
+ /** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
187
204
  DateTimeGenerated?: ExifDateTime | string;
205
+ /** ☆☆☆☆ Example: "(Binary data 1011393 bytes, use -b option to extract)" */
206
+ EmbeddedImage?: BinaryField | string;
207
+ /** ☆☆☆☆ Example: 960 */
208
+ EmbeddedImageHeight?: number;
209
+ /** ☆☆☆☆ Example: "PNG" */
210
+ EmbeddedImageType?: string;
211
+ /** ☆☆☆☆ Example: 640 */
212
+ EmbeddedImageWidth?: number;
188
213
  /** ☆☆☆☆ Example: 1 */
189
214
  Emissivity?: number;
190
215
  /** ☆☆☆☆ Example: "46.1 deg" */
@@ -207,8 +232,18 @@ export interface APP1Tags {
207
232
  GPSImgDirectionRef?: string;
208
233
  /** ☆☆☆☆ Example: "WGS84" */
209
234
  GPSMapDatum?: string;
235
+ /** ☆☆☆☆ Example: 20.56 */
236
+ GPSSpeed?: number;
237
+ /** ☆☆☆☆ Example: "km/h" */
238
+ GPSSpeedRef?: string;
239
+ /** ☆☆☆☆ Example: 88.01 */
240
+ GPSTrack?: number;
241
+ /** ☆☆☆☆ Example: "True North" */
242
+ GPSTrackRef?: string;
210
243
  /** ☆☆☆☆ Example: "Yes" */
211
244
  GPSValid?: string;
245
+ /** ☆☆☆☆ Example: "2.2.0.0" */
246
+ GPSVersionID?: string;
212
247
  /** ☆☆☆☆ Example: "7.4 C" */
213
248
  IRWindowTemperature?: string;
214
249
  /** ☆☆☆☆ Example: 1 */
@@ -219,7 +254,7 @@ export interface APP1Tags {
219
254
  Isotherm2Color?: string;
220
255
  /** ☆☆☆☆ Example: "N/A" */
221
256
  LensModel?: string;
222
- /** ☆☆☆☆ Example: "T197909" */
257
+ /** ☆☆☆☆ Example: "T199104" */
223
258
  LensPartNumber?: string;
224
259
  /** ☆☆☆☆ Example: "No Lens" */
225
260
  LensSerialNumber?: string;
@@ -237,10 +272,14 @@ export interface APP1Tags {
237
272
  Meas2Type?: string;
238
273
  /** ☆☆☆☆ Example: "9.70 m" */
239
274
  ObjectDistance?: string;
275
+ /** ☆☆☆☆ Example: "+98" */
276
+ OffsetX?: string;
277
+ /** ☆☆☆☆ Example: "+51" */
278
+ OffsetY?: string;
240
279
  /** ☆☆☆☆ Example: "67 216 98" */
241
280
  OverflowColor?: string;
242
281
  /** ☆☆☆☆ Example: "(Binary data 672 bytes, use -b option to extract)" */
243
- Palette?: string;
282
+ Palette?: BinaryField | string;
244
283
  /** ☆☆☆☆ Example: 224 */
245
284
  PaletteColors?: number;
246
285
  /** ☆☆☆☆ Example: "iron.pal" */
@@ -253,8 +292,8 @@ export interface APP1Tags {
253
292
  PaletteStretch?: number;
254
293
  /** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
255
294
  Param0?: string;
256
- /** ☆☆☆☆ Example: "(Binary data 87431 bytes, use -b option to extract)" */
257
- RawThermalImage?: string;
295
+ /** ☆☆☆☆ Example: "(Binary data 153804 bytes, use -b option to extract)" */
296
+ RawThermalImage?: BinaryField | string;
258
297
  /** ☆☆☆☆ Example: 90 */
259
298
  RawThermalImageHeight?: number;
260
299
  /** ☆☆☆☆ Example: "TIFF" */
@@ -269,6 +308,8 @@ export interface APP1Tags {
269
308
  RawValueRangeMax?: number;
270
309
  /** ☆☆☆☆ Example: 8628 */
271
310
  RawValueRangeMin?: number;
311
+ /** ☆☆☆☆ Example: 2.2125397 */
312
+ Real2IR?: number;
272
313
  /** ☆☆☆☆ Example: "26.7 C" */
273
314
  ReflectedApparentTemperature?: string;
274
315
  /** ☆☆☆☆ Example: "80.0 %" */
@@ -279,8 +320,6 @@ export interface APP1Tags {
279
320
  export interface APP12Tags {
280
321
  /** ☆☆☆☆ Example: 388 */
281
322
  Again?: number;
282
- /** ☆☆☆☆ Example: 2 */
283
- Aperture?: number;
284
323
  /** ☆☆☆☆ Example: 3383 */
285
324
  B5100?: number;
286
325
  /** ☆☆☆☆ Example: 216 */
@@ -507,11 +546,11 @@ export interface EXIFTags {
507
546
  CompositeImage?: string;
508
547
  /** ★★★★ ✔ Example: 90 */
509
548
  CompressedBitsPerPixel?: number;
510
- /** ★★★☆ ✔ Example: "Unknown (5)" */
549
+ /** ★★★☆ ✔ Example: "Unknown (99)" */
511
550
  Contrast?: string;
512
551
  /** ★★☆☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
513
552
  Copyright?: string;
514
- /** ★★★★ ✔ Example: 2218-09-22T02:32:14.000 */
553
+ /** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
515
554
  CreateDate?: ExifDateTime | string;
516
555
  /** ★★★★ ✔ Example: "Unknown (5840)" */
517
556
  CustomRendered?: string;
@@ -525,8 +564,8 @@ export interface EXIFTags {
525
564
  DefaultCropOrigin?: string;
526
565
  /** ☆☆☆☆ ✔ Example: "8272 6200" */
527
566
  DefaultCropSize?: string;
528
- /** ☆☆☆☆ ✔ Example: "(Binary data 536 bytes, use -b option to extract)" */
529
- DeviceSettingDescription?: string;
567
+ /** ☆☆☆☆ ✔ Example: "(Binary data 0 bytes, use -b option to extract)" */
568
+ DeviceSettingDescription?: BinaryField | string;
530
569
  /** ★★★☆ ✔ Example: 8.1319764 */
531
570
  DigitalZoomRatio?: number;
532
571
  /** ☆☆☆☆ ✔ Example: "11 32 4 -36 -83 -142 -208 -286 -363 -444 -521 -598 0 0 0 0 0" */
@@ -541,8 +580,6 @@ export interface EXIFTags {
541
580
  ExifImageWidth?: number;
542
581
  /** ★☆☆☆ ✔ Example: 83 */
543
582
  ExposureIndex?: number;
544
- /** ★★★★ ✔ Example: "Unknown ()" */
545
- ExposureMode?: string;
546
583
  /** ★★★★ ✔ Example: "Unknown (8112)" */
547
584
  ExposureProgram?: string;
548
585
  /** ★★★★ ✔ Example: "Unknown (DSC)" */
@@ -561,7 +598,7 @@ export interface EXIFTags {
561
598
  FocalPlaneYResolution?: number;
562
599
  /** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
563
600
  GPSAreaInformation?: string;
564
- /** ☆☆☆☆ ✔ Example: 2020-10-23 */
601
+ /** ☆☆☆☆ ✔ Example: "2022:04:13" */
565
602
  GPSDateStamp?: ExifDate | string;
566
603
  /** ☆☆☆☆ ✔ Example: 86.180049 */
567
604
  GPSDestBearing?: number;
@@ -569,8 +606,6 @@ export interface EXIFTags {
569
606
  GPSDestBearingRef?: string;
570
607
  /** ☆☆☆☆ ✔ Example: 0.030120052 */
571
608
  GPSDestDistance?: number;
572
- /** ☆☆☆☆ ✔ Example: "Kilometers" */
573
- GPSDestDistanceRef?: string;
574
609
  /** ☆☆☆☆ ✔ Example: "North" */
575
610
  GPSDestLatitudeRef?: string;
576
611
  /** ☆☆☆☆ ✔ Example: "West" */
@@ -585,18 +620,10 @@ export interface EXIFTags {
585
620
  GPSProcessingMethod?: string;
586
621
  /** ☆☆☆☆ ✔ Example: "??B??" */
587
622
  GPSSatellites?: string;
588
- /** ☆☆☆☆ ✔ Example: 5 */
589
- GPSSpeed?: number;
590
- /** ☆☆☆☆ ✔ Example: "knots" */
591
- GPSSpeedRef?: string;
592
623
  /** ☆☆☆☆ ✔ Example: "Unknown ()" */
593
624
  GPSStatus?: string;
594
- /** ☆☆☆☆ ✔ Example: 23:59:41.001 */
625
+ /** ☆☆☆☆ ✔ Example: "23:59:41.001" */
595
626
  GPSTimeStamp?: ExifTime | string;
596
- /** ☆☆☆☆ ✔ Example: 74.882813 */
597
- GPSTrack?: number;
598
- /** ☆☆☆☆ ✔ Example: "True North" */
599
- GPSTrackRef?: string;
600
627
  /** ★★★☆ ✔ Example: "Unknown (8176)" */
601
628
  GainControl?: string;
602
629
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -605,7 +632,7 @@ export interface EXIFTags {
605
632
  HighISOMultiplierGreen?: number;
606
633
  /** ☆☆☆☆ ✔ Example: 1 */
607
634
  HighISOMultiplierRed?: number;
608
- /** ☆☆☆☆ ✔ Example: "iPhone 12 Pro Max" */
635
+ /** ☆☆☆☆ ✔ Example: "iPhone 13 Pro Max" */
609
636
  HostComputer?: string;
610
637
  /** ☆☆☆☆ ✔ Example: 598 */
611
638
  ISOSpeed?: number;
@@ -615,8 +642,8 @@ export interface EXIFTags {
615
642
  ImageNumber?: number;
616
643
  /** ☆☆☆☆ ✔ Example: "fa5fdfee65f3a6e05fe7d4692b9112a7" */
617
644
  ImageUniqueID?: string;
618
- /** ☆☆☆☆ ✔ Example: "(Binary data 926720 bytes, use -b option to extract)" */
619
- JpgFromRaw?: string;
645
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1215652 bytes, use -b option to extract)" */
646
+ JpgFromRaw?: BinaryField;
620
647
  /** ☆☆☆☆ ✔ Example: 845574 */
621
648
  JpgFromRawLength?: number;
622
649
  /** ☆☆☆☆ ✔ Example: 978944 */
@@ -634,24 +661,22 @@ export interface EXIFTags {
634
661
  /** ☆☆☆☆ ✔ Example: 4095 */
635
662
  LinearityLimitRed?: number;
636
663
  /** ☆☆☆☆ ✔ Example: "(Binary data 22629 bytes, use -b option to extract)" */
637
- LinearizationTable?: string;
664
+ LinearizationTable?: BinaryField | string;
638
665
  /** ★★★★ ✔ Example: "samsung" */
639
666
  Make?: string;
640
667
  /** ☆☆☆☆ ✔ Example: "(Binary data 3072 bytes, use -b option to extract)" */
641
- MakerNoteSamsung1a?: string;
668
+ MakerNoteSamsung1a?: BinaryField | string;
642
669
  /** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
643
- MakerNoteUnknownBinary?: string;
670
+ MakerNoteUnknownBinary?: BinaryField | string;
644
671
  /** ☆☆☆☆ ✔ Example: "}:-" */
645
672
  MakerNoteUnknownText?: string;
646
673
  /** ★★★★ ✔ Example: 9.1 */
647
674
  MaxApertureValue?: number;
648
- /** ★★★★ ✔ Example: "Unknown (7968)" */
649
- MeteringMode?: string;
650
675
  /** ★★★★ ✔ Example: "x530" */
651
676
  Model?: string;
652
677
  /** ☆☆☆☆ ✔ Example: "K520C-01044" */
653
678
  Model2?: string;
654
- /** ★★★★ ✔ Example: 2216-02-28T03:49:50.000 */
679
+ /** ★★★★ ✔ Example: "2216:02:28 03:49:50" */
655
680
  ModifyDate?: ExifDateTime | string;
656
681
  /** ☆☆☆☆ ✔ Example: 6 */
657
682
  Noise?: number;
@@ -671,8 +696,8 @@ export interface EXIFTags {
671
696
  OffsetTimeOriginal?: string;
672
697
  /** ★★★★ ✔ Example: 8 */
673
698
  Orientation?: number;
674
- /** ☆☆☆☆ ✔ Example: "(Binary data 941265 bytes, use -b option to extract)" */
675
- OtherImage?: string;
699
+ /** ☆☆☆☆ ✔ Example: "(Binary data 4798 bytes, use -b option to extract)" */
700
+ OtherImage?: BinaryField | string;
676
701
  /** ☆☆☆☆ ✔ Example: 941265 */
677
702
  OtherImageLength?: number;
678
703
  /** ☆☆☆☆ ✔ Example: 755 */
@@ -680,31 +705,31 @@ export interface EXIFTags {
680
705
  /** ☆☆☆☆ ✔ Example: "Itsa Myowna" */
681
706
  OwnerName?: string;
682
707
  /** ☆☆☆☆ ✔ Example: "(Binary data 2060 bytes, use -b option to extract)" */
683
- Padding?: string;
708
+ Padding?: BinaryField | string;
684
709
  /** ☆☆☆☆ ✔ Example: "Reflective" */
685
710
  PageName?: string;
686
711
  /** ☆☆☆☆ ✔ Example: "0330" */
687
712
  PanasonicRawVersion?: string;
688
713
  /** ☆☆☆☆ ✔ Example: "YCbCr" */
689
714
  PhotometricInterpretation?: string;
690
- /** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000+01:00 */
715
+ /** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
691
716
  PreviewDateTime?: ExifDateTime | string;
692
717
  /** ☆☆☆☆ ✔ Example: 895146 */
693
718
  PreviewImageLength?: number;
694
719
  /** ☆☆☆☆ ✔ Example: 9996 */
695
720
  PreviewImageStart?: number;
696
721
  /** ☆☆☆☆ ✔ Example: "(Binary data 4665816 bytes, use -b option to extract)" */
697
- PreviewTIFF?: string;
722
+ PreviewTIFF?: BinaryField | string;
698
723
  /** ☆☆☆☆ ✔ Example: "0.64 0.33 0.3 0.6 0.15 0.06" */
699
724
  PrimaryChromaticities?: string;
700
725
  /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
701
726
  ProcessingSoftware?: string;
702
727
  /** ☆☆☆☆ ✔ Example: "(Binary data 822464 bytes, use -b option to extract)" */
703
- ProfileGainTableMap?: string;
728
+ ProfileGainTableMap?: BinaryField | string;
704
729
  /** ☆☆☆☆ ✔ Example: "Apple Embedded Color Profile" */
705
730
  ProfileName?: string;
706
731
  /** ☆☆☆☆ ✔ Example: "(Binary data 7195 bytes, use -b option to extract)" */
707
- ProfileToneCurve?: string;
732
+ ProfileToneCurve?: BinaryField | string;
708
733
  /** ☆☆☆☆ ✔ Example: 3 */
709
734
  Rating?: number;
710
735
  /** ☆☆☆☆ ✔ Example: 50 */
@@ -737,8 +762,6 @@ export interface EXIFTags {
737
762
  SamplesPerPixel?: number;
738
763
  /** ★★★☆ ✔ Example: "Unknown (8)" */
739
764
  Saturation?: string;
740
- /** ★★★★ ✔ Example: "Unknown (8160)" */
741
- SceneCaptureType?: string;
742
765
  /** ★★★★ ✔ Example: "Unknown (9)" */
743
766
  SceneType?: string;
744
767
  /** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
@@ -781,8 +804,6 @@ export interface EXIFTags {
781
804
  SubSecTime?: number;
782
805
  /** ★☆☆☆ ✔ Example: 996 */
783
806
  SubSecTimeDigitized?: number;
784
- /** ★☆☆☆ ✔ Example: 999 */
785
- SubSecTimeOriginal?: number;
786
807
  /** ☆☆☆☆ ✔ Example: "Semantic Mask" */
787
808
  SubfileType?: string;
788
809
  /** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
@@ -791,22 +812,22 @@ export interface EXIFTags {
791
812
  SubjectDistance?: string;
792
813
  /** ★★★☆ ✔ Example: "Unknown (4400)" */
793
814
  SubjectDistanceRange?: string;
794
- /** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
795
- ThumbnailTIFF?: string;
815
+ /** ★★★★ ✔ Example: "(Binary data 10202 bytes, use -b option to extract)" */
816
+ ThumbnailImage?: BinaryField;
817
+ /** ☆☆☆☆ ✔ Example: "(Binary data 47952 bytes, use -b option to extract)" */
818
+ ThumbnailTIFF?: BinaryField;
796
819
  /** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
797
- TileByteCounts?: string;
820
+ TileByteCounts?: BinaryField | string;
798
821
  /** ☆☆☆☆ ✔ Example: 512 */
799
822
  TileLength?: number;
800
- /** ☆☆☆☆ ✔ Example: "(Binary data 562 bytes, use -b option to extract)" */
801
- TileOffsets?: string;
823
+ /** ☆☆☆☆ ✔ Example: "(Binary data 507 bytes, use -b option to extract)" */
824
+ TileOffsets?: BinaryField | string;
802
825
  /** ☆☆☆☆ ✔ Example: 512 */
803
826
  TileWidth?: number;
804
827
  /** ☆☆☆☆ ✔ Example: 1 */
805
828
  TimeZoneOffset?: number | string;
806
829
  /** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
807
- TransferFunction?: string;
808
- /** ☆☆☆☆ ✔ Example: "motorola XT1254" */
809
- UniqueCameraModel?: string;
830
+ TransferFunction?: BinaryField | string;
810
831
  /** ★★★☆ ✔ Example: "This is a comment." */
811
832
  UserComment?: string;
812
833
  /** ☆☆☆☆ ✔ Example: "11 0 32 144 352 640 1040 1536 2144 2848 3600 4400 0 0 0 0 0" */
@@ -819,8 +840,6 @@ export interface EXIFTags {
819
840
  WBGreenLevel?: number;
820
841
  /** ☆☆☆☆ ✔ Example: 737 */
821
842
  WBRedLevel?: number;
822
- /** ★★★★ ✔ Example: "Unknown (65535)" */
823
- WhiteBalance?: string;
824
843
  /** ☆☆☆☆ ✔ Example: 65535 */
825
844
  WhiteLevel?: number;
826
845
  /** ☆☆☆☆ ✔ Example: "0.4234 0.399" */
@@ -863,28 +882,30 @@ export interface APP6Tags {
863
882
  ProTune?: string;
864
883
  /** ☆☆☆☆ ✔ Example: "4_1SEC" */
865
884
  Rate?: string;
885
+ /** ☆☆☆☆ ✔ Example: "AUTO" */
886
+ WhiteBalance?: string;
866
887
  }
867
888
  export interface FlashPixTags {
868
- /** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
869
- AudioStream?: string;
889
+ /** ☆☆☆☆ Example: "(Binary data 18 bytes, use -b option to extract)" */
890
+ AudioStream?: BinaryField | string;
870
891
  /** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
871
892
  CodePage?: string;
872
893
  /** ☆☆☆☆ ✔ Example: "Picoss" */
873
894
  CreatingApplication?: string;
874
895
  /** ☆☆☆☆ ✔ Example: "30020010-C06F-D011-BD01-00609719A180" */
875
896
  ExtensionClassID?: string;
876
- /** ☆☆☆☆ ✔ Example: 2003-03-29T17:47:50.000 */
897
+ /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
877
898
  ExtensionCreateDate?: ExifDateTime | string;
878
899
  /** ☆☆☆☆ ✔ Example: "Presized image for LCD display" */
879
900
  ExtensionDescription?: string;
880
- /** ☆☆☆☆ ✔ Example: 2003-03-29T17:47:50.000 */
901
+ /** ☆☆☆☆ ✔ Example: "2003:03:29 17:47:50" */
881
902
  ExtensionModifyDate?: ExifDateTime | string;
882
903
  /** ☆☆☆☆ ✔ Example: "Screen nail" */
883
904
  ExtensionName?: string;
884
905
  /** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
885
906
  ExtensionPersistence?: string;
886
- /** ☆☆☆☆ ✔ Example: "(Binary data 97265 bytes, use -b option to extract)" */
887
- ScreenNail?: string;
907
+ /** ☆☆☆☆ ✔ Example: "(Binary data 46285 bytes, use -b option to extract)" */
908
+ ScreenNail?: BinaryField | string;
888
909
  /** ☆☆☆☆ ✔ Example: 1 */
889
910
  UsedExtensionNumbers?: number;
890
911
  }
@@ -901,14 +922,16 @@ export interface IPTCTags {
901
922
  CodedCharacterSet?: string;
902
923
  /** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
903
924
  Contact?: string;
904
- /** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
905
- CopyrightNotice?: string;
906
925
  /** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
907
926
  Credit?: string;
908
927
  /** ☆☆☆☆ ✔ Example: "" */
909
928
  DateSent?: string;
910
929
  /** ☆☆☆☆ ✔ Example: "" */
911
930
  Destination?: string;
931
+ /** ☆☆☆☆ ✔ Example: "2021:03:16" */
932
+ DigitalCreationDate?: ExifDate | string;
933
+ /** ☆☆☆☆ ✔ Example: "20:25:15" */
934
+ DigitalCreationTime?: ExifTime | string;
912
935
  /** ☆☆☆☆ ✔ Example: "" */
913
936
  EnvelopeNumber?: string;
914
937
  /** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
@@ -939,7 +962,7 @@ export interface IPTCTags {
939
962
  SpecialInstructions?: string;
940
963
  /** ☆☆☆☆ ✔ Example: "" */
941
964
  SupplementalCategories?: string;
942
- /** ☆☆☆☆ ✔ Example: 23:46:26 */
965
+ /** ☆☆☆☆ ✔ Example: "15:46:26+09:00" */
943
966
  TimeCreated?: ExifTime | string;
944
967
  /** ☆☆☆☆ ✔ Example: "" */
945
968
  TimeSent?: string;
@@ -951,8 +974,8 @@ export interface MPFTags {
951
974
  DependentImage1EntryNumber?: number;
952
975
  /** ★★☆☆ ✔ Example: 960 */
953
976
  DependentImage2EntryNumber?: number;
954
- /** ☆☆☆☆ ✔ Example: "(Binary data 99 bytes, use -b option to extract)" */
955
- ImageUIDList?: string;
977
+ /** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
978
+ ImageUIDList?: BinaryField | string;
956
979
  /** ★★☆☆ ✔ Example: "0100" */
957
980
  MPFVersion?: string;
958
981
  /** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
@@ -1029,8 +1052,8 @@ export interface PhotoshopTags {
1029
1052
  PhotoshopFormat?: string;
1030
1053
  /** ☆☆☆☆ ✔ Example: 9 */
1031
1054
  PhotoshopQuality?: number;
1032
- /** ☆☆☆☆ ✔ Example: "(Binary data 8561 bytes, use -b option to extract)" */
1033
- PhotoshopThumbnail?: string;
1055
+ /** ☆☆☆☆ ✔ Example: "(Binary data 5768 bytes, use -b option to extract)" */
1056
+ PhotoshopThumbnail?: BinaryField | string;
1034
1057
  /** ☆☆☆☆ ✔ Example: 1 */
1035
1058
  PixelAspectRatio?: number;
1036
1059
  /** ☆☆☆☆ ✔ Example: "0 0" */
@@ -1039,8 +1062,6 @@ export interface PhotoshopTags {
1039
1062
  PrintScale?: number;
1040
1063
  /** ☆☆☆☆ ✔ Example: "Centered" */
1041
1064
  PrintStyle?: string;
1042
- /** ☆☆☆☆ ✔ Example: "3 Scans" */
1043
- ProgressiveScans?: string;
1044
1065
  /** ☆☆☆☆ ✔ Example: 72 */
1045
1066
  XResolution?: number;
1046
1067
  /** ☆☆☆☆ ✔ Example: 72 */
@@ -1056,7 +1077,7 @@ export interface QuickTimeTags {
1056
1077
  /** ☆☆☆☆ ✔ Example: 7.1 */
1057
1078
  AndroidVersion?: number;
1058
1079
  /** ☆☆☆☆ ✔ Example: "(Binary data 4 bytes, use -b option to extract)" */
1059
- AndroidVideoTemporalLayersCount?: string;
1080
+ AndroidVideoTemporalLayersCount?: BinaryField | string;
1060
1081
  /** ☆☆☆☆ ✔ Example: 8 */
1061
1082
  AudioBitsPerSample?: number;
1062
1083
  /** ☆☆☆☆ ✔ Example: 2 */
@@ -1085,7 +1106,7 @@ export interface QuickTimeTags {
1085
1106
  CompressorID?: string;
1086
1107
  /** ☆☆☆☆ ✔ Example: "Track 1" */
1087
1108
  ContentDescribes?: string;
1088
- /** ☆☆☆☆ ✔ Example: 2022-02-12T14:31:16.000-08:00 */
1109
+ /** ☆☆☆☆ ✔ Example: "2022:02:12 14:31:16-08:00" */
1089
1110
  CreationDate?: ExifDateTime | string;
1090
1111
  /** ☆☆☆☆ ✔ Example: "0 s" */
1091
1112
  CurrentTime?: string;
@@ -1093,16 +1114,6 @@ export interface QuickTimeTags {
1093
1114
  EncodedPixelsDimensions?: string;
1094
1115
  /** ☆☆☆☆ ✔ Example: "Helvetica" */
1095
1116
  FontName?: string;
1096
- /** ☆☆☆☆ ✔ Example: 0 */
1097
- GenBalance?: number;
1098
- /** ☆☆☆☆ ✔ Example: "0 0 0" */
1099
- GenFlags?: string;
1100
- /** ☆☆☆☆ ✔ Example: "ditherCopy" */
1101
- GenGraphicsMode?: string;
1102
- /** ☆☆☆☆ ✔ Example: 0 */
1103
- GenMediaVersion?: number;
1104
- /** ☆☆☆☆ ✔ Example: "32768 32768 32768" */
1105
- GenOpColor?: string;
1106
1117
  /** ☆☆☆☆ ✔ Example: "srcCopy" */
1107
1118
  GraphicsMode?: string;
1108
1119
  /** ☆☆☆☆ ✔ Example: "Data Handler" */
@@ -1121,7 +1132,7 @@ export interface QuickTimeTags {
1121
1132
  MatrixCoefficients?: string;
1122
1133
  /** ☆☆☆☆ ✔ Example: "1 0 0 0 1 0 0 0 1" */
1123
1134
  MatrixStructure?: string;
1124
- /** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000Z */
1135
+ /** ☆☆☆☆ ✔ Example: "2022:02:12 22:31:16" */
1125
1136
  MediaCreateDate?: ExifDateTime | string;
1126
1137
  /** ☆☆☆☆ ✔ Example: 98304 */
1127
1138
  MediaDataOffset?: number;
@@ -1131,9 +1142,7 @@ export interface QuickTimeTags {
1131
1142
  MediaDuration?: number;
1132
1143
  /** ☆☆☆☆ ✔ Example: 0 */
1133
1144
  MediaHeaderVersion?: number;
1134
- /** ☆☆☆☆ ✔ Example: "und" */
1135
- MediaLanguageCode?: string;
1136
- /** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000Z */
1145
+ /** ☆☆☆☆ ✔ Example: "2022:02:12 22:31:25" */
1137
1146
  MediaModifyDate?: ExifDateTime | string;
1138
1147
  /** ☆☆☆☆ ✔ Example: 8000 */
1139
1148
  MediaTimeScale?: number;
@@ -1151,6 +1160,8 @@ export interface QuickTimeTags {
1151
1160
  OtherFormat?: string;
1152
1161
  /** ☆☆☆☆ ✔ Example: "SEQ_PLAY" */
1153
1162
  PlayMode?: string;
1163
+ /** ☆☆☆☆ ✔ Example: 59.94006 */
1164
+ PlaybackFrameRate?: number;
1154
1165
  /** ☆☆☆☆ ✔ Example: "0 s" */
1155
1166
  PosterTime?: string;
1156
1167
  /** ☆☆☆☆ ✔ Example: 1 */
@@ -1187,7 +1198,7 @@ export interface QuickTimeTags {
1187
1198
  TimeCode?: number;
1188
1199
  /** ☆☆☆☆ ✔ Example: 90000 */
1189
1200
  TimeScale?: number;
1190
- /** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000Z */
1201
+ /** ☆☆☆☆ ✔ Example: "2022:02:12 22:31:16" */
1191
1202
  TrackCreateDate?: ExifDateTime | string;
1192
1203
  /** ☆☆☆☆ ✔ Example: 9.5095 */
1193
1204
  TrackDuration?: number;
@@ -1197,7 +1208,7 @@ export interface QuickTimeTags {
1197
1208
  TrackID?: number;
1198
1209
  /** ☆☆☆☆ ✔ Example: 0 */
1199
1210
  TrackLayer?: number;
1200
- /** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000Z */
1211
+ /** ☆☆☆☆ ✔ Example: "2022:02:12 22:31:25" */
1201
1212
  TrackModifyDate?: ExifDateTime | string;
1202
1213
  /** ☆☆☆☆ ✔ Example: "0.00%" */
1203
1214
  TrackVolume?: string;
@@ -1265,10 +1276,10 @@ export interface JFIFTags {
1265
1276
  JFIFVersion?: number;
1266
1277
  /** ★★★☆ ✔ Example: "inches" */
1267
1278
  ResolutionUnit?: string;
1268
- /** ☆☆☆☆ ✔ Example: "(Binary data 6105 bytes, use -b option to extract)" */
1269
- ThumbnailImage?: string;
1270
1279
  }
1271
1280
  export interface MakerNotesTags {
1281
+ /** ☆☆☆☆ Example: "(Binary data 1024 bytes, use -b option to extract)" */
1282
+ ADJDebugInfo?: BinaryField | string;
1272
1283
  /** ☆☆☆☆ ✔ Example: "Off" */
1273
1284
  ADLBracketingStep?: string;
1274
1285
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -1291,12 +1302,22 @@ export interface MakerNotesTags {
1291
1302
  AEBXv?: number;
1292
1303
  /** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
1293
1304
  AEBracketingSteps?: string;
1305
+ /** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
1306
+ AEDebugInfo?: BinaryField | string;
1294
1307
  /** ☆☆☆☆ ✔ Example: "1/965" */
1295
1308
  AEExposureTime?: string;
1309
+ /** ☆☆☆☆ Example: "(Binary data 4096 bytes, use -b option to extract)" */
1310
+ AEHistogramInfo?: BinaryField | string;
1296
1311
  /** ☆☆☆☆ ✔ Example: "Hold" */
1297
1312
  AELButton?: string;
1298
1313
  /** ☆☆☆☆ ✔ Example: "Not Indicated" */
1299
1314
  AELExposureIndicator?: string;
1315
+ /** ☆☆☆☆ Example: "(Binary data 4096 bytes, use -b option to extract)" */
1316
+ AELiveViewHistogramInfo?: BinaryField | string;
1317
+ /** ☆☆☆☆ Example: "(Binary data 2048 bytes, use -b option to extract)" */
1318
+ AELiveViewLocalHistogram?: BinaryField | string;
1319
+ /** ☆☆☆☆ Example: "(Binary data 2048 bytes, use -b option to extract)" */
1320
+ AELocalHistogram?: BinaryField | string;
1300
1321
  /** ☆☆☆☆ ✔ Example: "On" */
1301
1322
  AELock?: string;
1302
1323
  /** ☆☆☆☆ ✔ Example: "AF Lock Only" */
@@ -1335,8 +1356,6 @@ export interface MakerNotesTags {
1335
1356
  AFAperture?: number;
1336
1357
  /** ☆☆☆☆ ✔ Example: 840 */
1337
1358
  AFAreaHeight?: number;
1338
- /** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
1339
- AFAreaHeights?: string;
1340
1359
  /** ☆☆☆☆ ✔ Example: "Auto" */
1341
1360
  AFAreaIllumination?: string;
1342
1361
  /** ★★★☆ ✔ Example: "Zone AF" */
@@ -1349,9 +1368,7 @@ export interface MakerNotesTags {
1349
1368
  AFAreaSelectionMethod?: string;
1350
1369
  /** ☆☆☆☆ ✔ Example: 996 */
1351
1370
  AFAreaWidth?: number;
1352
- /** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
1353
- AFAreaWidths?: string;
1354
- /** ☆☆☆☆ ✔ Example: 3295 */
1371
+ /** ☆☆☆☆ ✔ Example: 4388 */
1355
1372
  AFAreaXPosition?: number;
1356
1373
  /** ☆☆☆☆ ✔ Example: 744 */
1357
1374
  AFAreaYPosition?: number;
@@ -1369,6 +1386,8 @@ export interface MakerNotesTags {
1369
1386
  AFButtonPressed?: string;
1370
1387
  /** ☆☆☆☆ ✔ Example: "Case 11" */
1371
1388
  AFConfigTool?: string;
1389
+ /** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
1390
+ AFDebugInfo?: BinaryField | string;
1372
1391
  /** ☆☆☆☆ ✔ Example: 9 */
1373
1392
  AFDefocus?: number;
1374
1393
  /** ☆☆☆☆ ✔ Example: "Quick mode" */
@@ -1377,13 +1396,13 @@ export interface MakerNotesTags {
1377
1396
  AFFineTune?: string;
1378
1397
  /** ☆☆☆☆ ✔ Example: "0 0 0" */
1379
1398
  AFFineTuneAdj?: string;
1380
- /** ☆☆☆☆ ✔ Example: "5L of Center" */
1399
+ /** ☆☆☆☆ ✔ Example: "6L of Center" */
1381
1400
  AFFocusPointXPosition?: string;
1382
1401
  /** ☆☆☆☆ ✔ Example: "5U from Center" */
1383
1402
  AFFocusPointYPosition?: string;
1384
1403
  /** ☆☆☆☆ ✔ Example: "Off" */
1385
1404
  AFIlluminator?: string;
1386
- /** ☆☆☆☆ ✔ Example: "0301" */
1405
+ /** ☆☆☆☆ ✔ Example: "0400" */
1387
1406
  AFInfo2Version?: string;
1388
1407
  /** ☆☆☆☆ ✔ Example: "90 ms" */
1389
1408
  AFIntegrationTime?: string;
@@ -1397,13 +1416,11 @@ export interface MakerNotesTags {
1397
1416
  AFMicroAdjValue?: number;
1398
1417
  /** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
1399
1418
  AFMicroadjustment?: string;
1400
- /** ★☆☆☆ ✔ Example: "Zone" */
1401
- AFMode?: string;
1402
1419
  /** ☆☆☆☆ ✔ Example: "Off" */
1403
1420
  AFModeRestrictions?: string;
1404
1421
  /** ☆☆☆☆ ✔ Example: "Enable" */
1405
1422
  AFOnAELockButtonSwitch?: string;
1406
- /** ☆☆☆☆ ✔ Example: "AF On" */
1423
+ /** ☆☆☆☆ ✔ Example: "AF-On" */
1407
1424
  AFOnButton?: string;
1408
1425
  /** ★★☆☆ ✔ Example: "Upper-right" */
1409
1426
  AFPoint?: string;
@@ -1415,8 +1432,6 @@ export interface MakerNotesTags {
1415
1432
  AFPointAtShutterRelease?: string;
1416
1433
  /** ☆☆☆☆ ✔ Example: "Normal" */
1417
1434
  AFPointBrightness?: string;
1418
- /** ☆☆☆☆ ✔ Example: "Selected (constant)" */
1419
- AFPointDisplayDuringFocus?: string;
1420
1435
  /** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
1421
1436
  AFPointIllumination?: string;
1422
1437
  /** ☆☆☆☆ ✔ Example: "Left (vertical)" */
@@ -1497,12 +1512,8 @@ export interface MakerNotesTags {
1497
1512
  AddOriginalDecisionData?: string;
1498
1513
  /** ☆☆☆☆ Example: "X3F Setting Mode" */
1499
1514
  AdjustmentMode?: string;
1500
- /** ☆☆☆☆ ✔ Example: "Toy Camera" */
1501
- AdvancedFilter?: string;
1502
1515
  /** ☆☆☆☆ ✔ Example: 9 */
1503
1516
  AdvancedSceneType?: number;
1504
- /** ☆☆☆☆ ✔ Example: "91 m" */
1505
- Altitude?: string;
1506
1517
  /** ☆☆☆☆ ✔ Example: "Standard" */
1507
1518
  AmbienceSelection?: string;
1508
1519
  /** ☆☆☆☆ ✔ Example: "40 C" */
@@ -1517,6 +1528,8 @@ export interface MakerNotesTags {
1517
1528
  ApertureRingUse?: string;
1518
1529
  /** ☆☆☆☆ ✔ Example: 9.1 */
1519
1530
  ApertureSetting?: number;
1531
+ /** ☆☆☆☆ ✔ Example: "On" */
1532
+ ApplySettingsToLiveView?: string;
1520
1533
  /** ☆☆☆☆ Example: 8 */
1521
1534
  ApproximateFNumber?: number;
1522
1535
  /** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
@@ -1569,8 +1582,6 @@ export interface MakerNotesTags {
1569
1582
  AutoBracketOrder?: string;
1570
1583
  /** ☆☆☆☆ ✔ Example: "Exposure" */
1571
1584
  AutoBracketSet?: string;
1572
- /** ★☆☆☆ ✔ Example: "On" */
1573
- AutoBracketing?: string;
1574
1585
  /** ☆☆☆☆ ✔ Example: "Flash/Speed" */
1575
1586
  AutoBracketingMode?: string;
1576
1587
  /** ☆☆☆☆ ✔ Example: "AE & Flash" */
@@ -1593,8 +1604,6 @@ export interface MakerNotesTags {
1593
1604
  AutoLightingOptimizer?: string;
1594
1605
  /** ☆☆☆☆ ✔ Example: "No" */
1595
1606
  AutoPortraitFramed?: string;
1596
- /** ★☆☆☆ ✔ Example: "Rotate 90 CW" */
1597
- AutoRotate?: string;
1598
1607
  /** ☆☆☆☆ ✔ Example: "Off" */
1599
1608
  AuxiliaryLens?: string;
1600
1609
  /** ☆☆☆☆ ✔ Example: 6.7 */
@@ -1613,8 +1622,6 @@ export interface MakerNotesTags {
1613
1622
  BabyName?: string;
1614
1623
  /** ☆☆☆☆ ✔ Example: "A0E3S7000218RC" */
1615
1624
  Barcode?: string;
1616
- /** ☆☆☆☆ ✔ Example: "0100" */
1617
- BarometerInfoVersion?: string;
1618
1625
  /** ☆☆☆☆ ✔ Example: 0 */
1619
1626
  BaseExposureCompensation?: number;
1620
1627
  /** ★★☆☆ ✔ Example: 800 */
@@ -1627,8 +1634,6 @@ export interface MakerNotesTags {
1627
1634
  BatteryState?: string;
1628
1635
  /** ☆☆☆☆ ✔ Example: "50.6 C" */
1629
1636
  BatteryTemperature?: string;
1630
- /** ☆☆☆☆ ✔ Example: "NB-13L" */
1631
- BatteryType?: string;
1632
1637
  /** ☆☆☆☆ Example: "8.52 V" */
1633
1638
  BatteryVoltage?: string;
1634
1639
  /** ☆☆☆☆ Example: "BGGR" */
@@ -1655,8 +1660,6 @@ export interface MakerNotesTags {
1655
1660
  BlackPoint?: string;
1656
1661
  /** ☆☆☆☆ Example: "n/a" */
1657
1662
  BleachBypassToning?: string;
1658
- /** ☆☆☆☆ Example: "5C" */
1659
- BlueGain?: string;
1660
1663
  /** ☆☆☆☆ Example: "Off; 0; 0; 0" */
1661
1664
  BlurControl?: string;
1662
1665
  /** ★☆☆☆ ✔ Example: "None" */
@@ -1697,8 +1700,6 @@ export interface MakerNotesTags {
1697
1700
  BulbDuration?: number;
1698
1701
  /** ☆☆☆☆ ✔ Example: "Unlimited" */
1699
1702
  BurstMode?: string;
1700
- /** ☆☆☆☆ Example: 3 */
1701
- BurstShot?: number;
1702
1703
  /** ☆☆☆☆ ✔ Example: 9 */
1703
1704
  BurstSpeed?: number;
1704
1705
  /** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
@@ -1781,7 +1782,7 @@ export interface MakerNotesTags {
1781
1782
  CmdDialsChangeMainSub?: string;
1782
1783
  /** ☆☆☆☆ ✔ Example: "On (Image Review Excluded)" */
1783
1784
  CmdDialsMenuAndPlayback?: string;
1784
- /** ☆☆☆☆ ✔ Example: "Exposure Compensation" */
1785
+ /** ☆☆☆☆ ✔ Example: "No" */
1785
1786
  CmdDialsReverseRotation?: string;
1786
1787
  /** ☆☆☆☆ Example: "0 0 0" */
1787
1788
  ColorAdjustment?: string;
@@ -1833,8 +1834,6 @@ export interface MakerNotesTags {
1833
1834
  ColorMatrixNumber?: number;
1834
1835
  /** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; M…green 0" */
1835
1836
  ColorProfileSettings?: string;
1836
- /** ★☆☆☆ ✔ Example: "sRGB" */
1837
- ColorSpace?: string;
1838
1837
  /** ☆☆☆☆ ✔ Example: 8059 */
1839
1838
  ColorTempAsShot?: number;
1840
1839
  /** ☆☆☆☆ ✔ Example: 7397 */
@@ -1859,7 +1858,7 @@ export interface MakerNotesTags {
1859
1858
  ColorTempTungsten?: number;
1860
1859
  /** ★☆☆☆ ✔ Example: 9900 */
1861
1860
  ColorTemperature?: number;
1862
- /** ☆☆☆☆ ✔ Example: 6030 */
1861
+ /** ☆☆☆☆ ✔ Example: 7820 */
1863
1862
  ColorTemperatureAuto?: number;
1864
1863
  /** ☆☆☆☆ ✔ Example: "6300 K" */
1865
1864
  ColorTemperatureCustom?: string;
@@ -1897,8 +1896,6 @@ export interface MakerNotesTags {
1897
1896
  CommanderInternalFlash?: string;
1898
1897
  /** ☆☆☆☆ ✔ Example: "Full" */
1899
1898
  CommanderInternalManualOutput?: string;
1900
- /** ☆☆☆☆ ✔ Example: 0 */
1901
- CommanderInternalTTLComp?: number;
1902
1899
  /** ☆☆☆☆ ✔ Example: -3 */
1903
1900
  CommanderInternalTTLCompBuiltin?: number;
1904
1901
  /** ☆☆☆☆ ✔ Example: -3 */
@@ -1938,13 +1935,11 @@ export interface MakerNotesTags {
1938
1935
  /** ☆☆☆☆ ✔ Example: 0 */
1939
1936
  ContrastAuto?: number;
1940
1937
  /** ☆☆☆☆ ✔ Example: "(Binary data 578 bytes, use -b option to extract)" */
1941
- ContrastCurve?: string;
1938
+ ContrastCurve?: BinaryField | string;
1942
1939
  /** ☆☆☆☆ ✔ Example: "On (2)" */
1943
1940
  ContrastDetectAF?: string;
1944
1941
  /** ☆☆☆☆ Example: "496 184 48 48" */
1945
1942
  ContrastDetectAFArea?: string;
1946
- /** ☆☆☆☆ ✔ Example: "Yes" */
1947
- ContrastDetectAFInFocus?: string;
1948
1943
  /** ☆☆☆☆ Example: 0 */
1949
1944
  ContrastHighlight?: number;
1950
1945
  /** ☆☆☆☆ Example: "Off" */
@@ -2033,11 +2028,11 @@ export interface MakerNotesTags {
2033
2028
  DSPFirmwareVersion?: string;
2034
2029
  /** ☆☆☆☆ ✔ Example: "Yes" */
2035
2030
  DarkFocusEnvironment?: string;
2036
- /** ★★☆☆ ✔ Example: "(Binary data 8918 bytes, use -b option to extract)" */
2037
- DataDump?: string;
2031
+ /** ★★☆☆ ✔ Example: "(Binary data 114 bytes, use -b option to extract)" */
2032
+ DataDump?: BinaryField | string;
2038
2033
  /** ☆☆☆☆ ✔ Example: 8289 */
2039
2034
  DataScaling?: number;
2040
- /** ☆☆☆☆ ✔ Example: 2016-03-30 */
2035
+ /** ☆☆☆☆ ✔ Example: "2016:03:30" */
2041
2036
  Date?: ExifDate | string;
2042
2037
  /** ☆☆☆☆ ✔ Example: "Y/M/D" */
2043
2038
  DateDisplayFormat?: string;
@@ -2047,7 +2042,7 @@ export interface MakerNotesTags {
2047
2042
  DateStampMode?: string;
2048
2043
  /** ☆☆☆☆ Example: "Off" */
2049
2044
  DateTimeStamp?: string;
2050
- /** ☆☆☆☆ ✔ Example: "0000:00:00 00:00:00" */
2045
+ /** ☆☆☆☆ ✔ Example: */
2051
2046
  DateTimeUTC?: ExifDateTime | string;
2052
2047
  /** ☆☆☆☆ ✔ Example: "Yes" */
2053
2048
  DaylightSavings?: string;
@@ -2063,8 +2058,6 @@ export interface MakerNotesTags {
2063
2058
  DestinationDST?: string;
2064
2059
  /** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
2065
2060
  DeviceType?: string;
2066
- /** ☆☆☆☆ ✔ Example: "Normal" */
2067
- DialDirectionTvAv?: string;
2068
2061
  /** ☆☆☆☆ ✔ Example: "On" */
2069
2062
  DiffractionCorrection?: string;
2070
2063
  /** ☆☆☆☆ Example: "Vivid" */
@@ -2075,14 +2068,14 @@ export interface MakerNotesTags {
2075
2068
  DigitalICE?: string;
2076
2069
  /** ☆☆☆☆ Example: "On" */
2077
2070
  DigitalZoomOn?: string;
2071
+ /** ☆☆☆☆ ✔ Example: 999 */
2072
+ DirectoryNumber?: number;
2078
2073
  /** ☆☆☆☆ ✔ Example: "Enable" */
2079
2074
  DisplayAllAFPoints?: string;
2080
2075
  /** ☆☆☆☆ ✔ Example: 9.5 */
2081
2076
  DisplayAperture?: number;
2082
2077
  /** ☆☆☆☆ ✔ Example: "Off" */
2083
2078
  DistortionControl?: string;
2084
- /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
2085
- DistortionCorrParamsNumber?: string;
2086
2079
  /** ☆☆☆☆ ✔ Example: "Yes" */
2087
2080
  DistortionCorrParamsPresent?: string;
2088
2081
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2091,8 +2084,8 @@ export interface MakerNotesTags {
2091
2084
  DriveModeSetting?: string;
2092
2085
  /** ☆☆☆☆ ✔ Example: "n/a" */
2093
2086
  DriveSpeed?: string;
2094
- /** ☆☆☆☆ ✔ Example: "(Binary data 2047 bytes, use -b option to extract)" */
2095
- DustRemovalData?: string;
2087
+ /** ☆☆☆☆ ✔ Example: "(Binary data 1024 bytes, use -b option to extract)" */
2088
+ DustRemovalData?: BinaryField | string;
2096
2089
  /** ☆☆☆☆ ✔ Example: "9 Points" */
2097
2090
  DynamicAFArea?: string;
2098
2091
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2101,6 +2094,8 @@ export interface MakerNotesTags {
2101
2094
  DynamicAreaAFDisplay?: string;
2102
2095
  /** ☆☆☆☆ ✔ Example: "Wide" */
2103
2096
  DynamicRange?: string;
2097
+ /** ☆☆☆☆ ✔ Example: "Off" */
2098
+ DynamicRangeBoost?: string;
2104
2099
  /** ☆☆☆☆ ✔ Example: "On; Enabled; 0; 0" */
2105
2100
  DynamicRangeExpansion?: string;
2106
2101
  /** ☆☆☆☆ ✔ Example: "Standard" */
@@ -2117,8 +2112,6 @@ export interface MakerNotesTags {
2117
2112
  DynamicRangeSetting?: string;
2118
2113
  /** ☆☆☆☆ ✔ Example: "Evaluative" */
2119
2114
  ETTLII?: string;
2120
- /** ☆☆☆☆ ✔ Example: "1/3 EV" */
2121
- EVStepSize?: string;
2122
2115
  /** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
2123
2116
  EVSteps?: string;
2124
2117
  /** ☆☆☆☆ ✔ Example: "Manual" */
@@ -2193,14 +2186,16 @@ export interface MakerNotesTags {
2193
2186
  ExposureStandardAdjustment?: number;
2194
2187
  /** ☆☆☆☆ ✔ Example: 0 */
2195
2188
  ExposureTuning?: number;
2196
- /** ★☆☆☆ ✔ Example: "Good" */
2197
- ExposureWarning?: string;
2198
2189
  /** ☆☆☆☆ ✔ Example: "Off" */
2199
2190
  ExtendedShutterSpeeds?: string;
2200
2191
  /** ☆☆☆☆ ✔ Example: "On" */
2201
2192
  ExtendedWBDetect?: string;
2202
- /** ☆☆☆☆ Example: "Not attached" */
2203
- ExtenderStatus?: string;
2193
+ /** ☆☆☆☆Example: "None" */
2194
+ Extender?: string;
2195
+ /** ☆☆☆☆ ✔ Example: 0 */
2196
+ ExtenderFirmwareVersion?: number;
2197
+ /** ☆☆☆☆ ✔ Example: "" */
2198
+ ExtenderSerialNumber?: string;
2204
2199
  /** ☆☆☆☆ ✔ Example: "On" */
2205
2200
  ExternalFlash?: string;
2206
2201
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2215,8 +2210,6 @@ export interface MakerNotesTags {
2215
2210
  ExternalFlashFlags?: string;
2216
2211
  /** ☆☆☆☆ ✔ Example: 0 */
2217
2212
  ExternalFlashGValue?: number;
2218
- /** ☆☆☆☆ ✔ Example: "n/a" */
2219
- ExternalFlashGuideNumber?: string;
2220
2213
  /** ☆☆☆☆ ✔ Example: 1 */
2221
2214
  ExternalFlashMode?: number;
2222
2215
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2235,8 +2228,8 @@ export interface MakerNotesTags {
2235
2228
  FEMicroadjustment?: string;
2236
2229
  /** ☆☆☆☆ ✔ Example: "Unknown (II*)" */
2237
2230
  FaceDetect?: string;
2238
- /** ☆☆☆☆ ✔ Example: "(Binary data 405 bytes, use -b option to extract)" */
2239
- FaceDetectArea?: string;
2231
+ /** ☆☆☆☆ ✔ Example: "(Binary data 383 bytes, use -b option to extract)" */
2232
+ FaceDetectArea?: BinaryField | string;
2240
2233
  /** ☆☆☆☆ ✔ Example: "0 26 640 428 0 26 640 428 0 0 0 0" */
2241
2234
  FaceDetectFrameCrop?: string;
2242
2235
  /** ★☆☆☆ ✔ Example: "720 480" */
@@ -2255,8 +2248,6 @@ export interface MakerNotesTags {
2255
2248
  FaceInfoOffset?: number;
2256
2249
  /** ☆☆☆☆ ✔ Example: "" */
2257
2250
  FaceName?: string;
2258
- /** ☆☆☆☆ Example: "67 23" */
2259
- FacePosition?: string;
2260
2251
  /** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
2261
2252
  FacePositions?: string;
2262
2253
  /** ☆☆☆☆ ✔ Example: 35 */
@@ -2269,6 +2260,8 @@ export interface MakerNotesTags {
2269
2260
  Fade?: number;
2270
2261
  /** ☆☆☆☆ ✔ Example: 9984 */
2271
2262
  FileIndex?: number;
2263
+ /** ☆☆☆☆ ✔ Example: "0100" */
2264
+ FileInfoVersion?: string;
2272
2265
  /** ★★☆☆ ✔ Example: "986-8698" */
2273
2266
  FileNumber?: string;
2274
2267
  /** ☆☆☆☆ Example: "Unknown (65537)" */
@@ -2379,7 +2372,9 @@ export interface MakerNotesTags {
2379
2372
  FlashGroupCCompensation?: number;
2380
2373
  /** ☆☆☆☆ ✔ Example: "Off" */
2381
2374
  FlashGroupCControlMode?: string;
2382
- /** ☆☆☆☆ ✔ Example: "0300" */
2375
+ /** ★☆☆☆ ✔ Example: 9 */
2376
+ FlashGuideNumber?: number;
2377
+ /** ☆☆☆☆ ✔ Example: "0301" */
2383
2378
  FlashInfoVersion?: string;
2384
2379
  /** ☆☆☆☆ ✔ Example: "n/a (x4)" */
2385
2380
  FlashIntensity?: string;
@@ -2397,8 +2392,6 @@ export interface MakerNotesTags {
2397
2392
  FlashModel?: string;
2398
2393
  /** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
2399
2394
  FlashOptions?: string;
2400
- /** ★☆☆☆ ✔ Example: 94 */
2401
- FlashOutput?: number;
2402
2395
  /** ☆☆☆☆ ✔ Example: "Off" */
2403
2396
  FlashRemoteControl?: string;
2404
2397
  /** ☆☆☆☆ ✔ Example: "01114671" */
@@ -2423,14 +2416,18 @@ export interface MakerNotesTags {
2423
2416
  FlashThreshold?: number;
2424
2417
  /** ☆☆☆☆ ✔ Example: "Yes (flash required but disabled)" */
2425
2418
  FlashWarning?: string;
2426
- /** ☆☆☆☆ ✔ Example: "320 262" */
2427
- FlexibleSpotPosition?: string;
2419
+ /** ☆☆☆☆ ✔ Example: "Left to Right" */
2420
+ FlickAdvanceDirection?: string;
2428
2421
  /** ☆☆☆☆ Example: "On" */
2429
2422
  FlickerReduce?: string;
2430
2423
  /** ☆☆☆☆ ✔ Example: "Off (0x3223)" */
2431
2424
  FlickerReduction?: string;
2432
- /** ☆☆☆☆ ✔ Example: "Enable" */
2425
+ /** ☆☆☆☆ ✔ Example: "Off" */
2433
2426
  FlickerReductionShooting?: string;
2427
+ /** ☆☆☆☆ Example: "1321,81,37" */
2428
+ FlightDegree?: string;
2429
+ /** ☆☆☆☆ Example: "9,0,0" */
2430
+ FlightSpeed?: string;
2434
2431
  /** ☆☆☆☆ ✔ Example: "70.0 mm" */
2435
2432
  FocalLengthTeleZoom?: string;
2436
2433
  /** ☆☆☆☆ ✔ Example: "640 428" */
@@ -2439,12 +2436,6 @@ export interface MakerNotesTags {
2439
2436
  FocalPlaneAFPointsUsed?: number;
2440
2437
  /** ★☆☆☆ ✔ Example: "9.45 mm" */
2441
2438
  FocalPlaneDiagonal?: string;
2442
- /** ★☆☆☆ ✔ Example: "9.02 mm" */
2443
- FocalPlaneXSize?: string;
2444
- /** ★☆☆☆ ✔ Example: "8.10 mm" */
2445
- FocalPlaneYSize?: string;
2446
- /** ★☆☆☆ ✔ Example: "Zoom" */
2447
- FocalType?: string;
2448
2439
  /** ★★☆☆ ✔ Example: "32/mm" */
2449
2440
  FocalUnits?: string;
2450
2441
  /** ☆☆☆☆ Example: "Wide Focus (normal)" */
@@ -2467,8 +2458,6 @@ export interface MakerNotesTags {
2467
2458
  FocusHoldButton?: string;
2468
2459
  /** ☆☆☆☆ ✔ Example: "0100" */
2469
2460
  FocusInfoVersion?: string;
2470
- /** ☆☆☆☆ ✔ Example: "9504 6336 4306 4356" */
2471
- FocusLocation?: string;
2472
2461
  /** ☆☆☆☆ ✔ Example: "Yes" */
2473
2462
  FocusLocked?: string;
2474
2463
  /** ☆☆☆☆ ✔ Example: "Manual" */
@@ -2481,6 +2470,8 @@ export interface MakerNotesTags {
2481
2470
  FocusPeakingLevel?: string;
2482
2471
  /** ★☆☆☆ ✔ Example: "972 1296" */
2483
2472
  FocusPixel?: string;
2473
+ /** ☆☆☆☆ Example: "Normal" */
2474
+ FocusPointSelectionSpeed?: string;
2484
2475
  /** ☆☆☆☆ ✔ Example: "Wrap" */
2485
2476
  FocusPointWrap?: string;
2486
2477
  /** ☆☆☆☆ ✔ Example: 999 */
@@ -2503,8 +2494,6 @@ export interface MakerNotesTags {
2503
2494
  FocusStepNear?: number;
2504
2495
  /** ☆☆☆☆ ✔ Example: "Off" */
2505
2496
  FocusTrackingLockOn?: string;
2506
- /** ★☆☆☆ ✔ Example: "Out of focus" */
2507
- FocusWarning?: string;
2508
2497
  /** ☆☆☆☆ ✔ Example: "Eh-A" */
2509
2498
  FocusingScreen?: string;
2510
2499
  /** ☆☆☆☆ ✔ Example: 373 */
@@ -2512,9 +2501,9 @@ export interface MakerNotesTags {
2512
2501
  /** ☆☆☆☆ ✔ Example: "Off" */
2513
2502
  FramingGridDisplay?: string;
2514
2503
  /** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
2515
- FreeBytes?: string;
2516
- /** ★☆☆☆ ✔ Example: "Red-eye reduction" */
2517
- FujiFlashMode?: string;
2504
+ FreeBytes?: BinaryField | string;
2505
+ /** ☆☆☆☆ ✔ Example: "X100V_0100" */
2506
+ FujiModel?: string;
2518
2507
  /** ☆☆☆☆ ✔ Example: "9504x6336" */
2519
2508
  FullImageSize?: string;
2520
2509
  /** ☆☆☆☆ Example: "Off" */
@@ -2523,7 +2512,7 @@ export interface MakerNotesTags {
2523
2512
  Func1Button?: string;
2524
2513
  /** ☆☆☆☆ ✔ Example: "Choose Image Area (DX/1.3x)" */
2525
2514
  Func1ButtonPlusDials?: string;
2526
- /** ☆☆☆☆ ✔ Example: "Rating" */
2515
+ /** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
2527
2516
  Func2Button?: string;
2528
2517
  /** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
2529
2518
  FuncButton?: string;
@@ -2539,10 +2528,14 @@ export interface MakerNotesTags {
2539
2528
  GEModel?: string;
2540
2529
  /** ☆☆☆☆ ✔ Example: 256 */
2541
2530
  GainBase?: number;
2531
+ /** ☆☆☆☆ Example: "1279,-900,0" */
2532
+ GimbalDegree?: string;
2542
2533
  /** ☆☆☆☆ ✔ Example: "n/a; User-Selected" */
2543
2534
  Gradation?: string;
2544
2535
  /** ☆☆☆☆ ✔ Example: "Off" */
2545
- GrainEffect?: string;
2536
+ GrainEffectRoughness?: string;
2537
+ /** ☆☆☆☆ ✔ Example: "Off" */
2538
+ GrainEffectSize?: string;
2546
2539
  /** ☆☆☆☆ Example: "2E" */
2547
2540
  GreenGain?: string;
2548
2541
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2555,16 +2548,14 @@ export interface MakerNotesTags {
2555
2548
  GripBatteryState?: string;
2556
2549
  /** ☆☆☆☆ ✔ Example: "Squares" */
2557
2550
  GroupAreaAFIllumination?: string;
2558
- /** ☆☆☆☆ ✔ Example: "Unknown (5)" */
2559
- HDMIBitDepth?: string;
2560
2551
  /** ☆☆☆☆ ✔ Example: "Off" */
2561
2552
  HDMIExternalRecorder?: string;
2562
- /** ★☆☆☆ ✔ Example: "On" */
2563
- HDR?: string;
2553
+ /** ☆☆☆☆ ✔ Example: "Auto" */
2554
+ HDMIOutputRange?: string;
2555
+ /** ☆☆☆☆ ✔ Example: "Auto" */
2556
+ HDMIOutputResolution?: string;
2564
2557
  /** ☆☆☆☆ ✔ Example: "Natural" */
2565
2558
  HDREffect?: string;
2566
- /** ☆☆☆☆ ✔ Example: "Unknown (2)" */
2567
- HDRImageType?: string;
2568
2559
  /** ☆☆☆☆ ✔ Example: "0200" */
2569
2560
  HDRInfoVersion?: string;
2570
2561
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -2589,6 +2580,8 @@ export interface MakerNotesTags {
2589
2580
  HighlightWarning?: string;
2590
2581
  /** ☆☆☆☆ ✔ Example: 0 */
2591
2582
  Highlights?: number;
2583
+ /** ☆☆☆☆ Example: */
2584
+ Histogram?: string;
2592
2585
  /** ☆☆☆☆ ✔ Example: "ndon" */
2593
2586
  HometownCity?: string;
2594
2587
  /** ☆☆☆☆ Example: "NYC " */
@@ -2599,17 +2592,17 @@ export interface MakerNotesTags {
2599
2592
  HostSoftwareExportVersion?: number;
2600
2593
  /** ☆☆☆☆ Example: "Unknown (4 4)" */
2601
2594
  HostSoftwareRendering?: string;
2602
- /** ☆☆☆☆ ✔ Example: "n/a" */
2603
- Hue?: string;
2604
2595
  /** ☆☆☆☆ Example: "Off" */
2605
2596
  HueAdjust?: string;
2606
2597
  /** ☆☆☆☆ ✔ Example: "n/a" */
2607
2598
  HueAdjustment?: string;
2599
+ /** ☆☆☆☆ Example: "(Binary data 8 bytes, use -b option to extract)" */
2600
+ HyperlapsDebugInfo?: BinaryField | string;
2608
2601
  /** ☆☆☆☆ ✔ Example: 800 */
2609
2602
  ISO2?: number;
2610
2603
  /** ☆☆☆☆ Example: "On" */
2611
2604
  ISOAuto?: string;
2612
- /** ☆☆☆☆ ✔ Example: "ISO 1600" */
2605
+ /** ☆☆☆☆ ✔ Example: "Same As Without Flash" */
2613
2606
  ISOAutoFlashLimit?: string;
2614
2607
  /** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
2615
2608
  ISOAutoHiLimit?: string;
@@ -2637,8 +2630,6 @@ export interface MakerNotesTags {
2637
2630
  ISOSetting?: number;
2638
2631
  /** ☆☆☆☆ ✔ Example: "Yes" */
2639
2632
  ISOSpeedExpansion?: string;
2640
- /** ☆☆☆☆ ✔ Example: "1/3 Stop" */
2641
- ISOSpeedIncrements?: string;
2642
2633
  /** ☆☆☆☆ ✔ Example: "1/3 EV" */
2643
2634
  ISOStepSize?: string;
2644
2635
  /** ☆☆☆☆ ✔ Example: 79.44 */
@@ -2733,8 +2724,6 @@ export interface MakerNotesTags {
2733
2724
  IntervalMode?: string;
2734
2725
  /** ☆☆☆☆ Example: 65797 */
2735
2726
  IntervalNumber?: number;
2736
- /** ☆☆☆☆ Example: "Off" */
2737
- IntervalShooting?: string;
2738
2727
  /** ☆☆☆☆ ✔ Example: "n/a (Movie)" */
2739
2728
  JPEGQuality?: string;
2740
2729
  /** ☆☆☆☆ ✔ Example: "Optimal Quality" */
@@ -2763,13 +2752,17 @@ export interface MakerNotesTags {
2763
2752
  LCDIlluminationDuringBulb?: string;
2764
2753
  /** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
2765
2754
  LCDPanels?: string;
2755
+ /** ☆☆☆☆ ✔ Example: "English" */
2756
+ Language?: string;
2766
2757
  /** ☆☆☆☆ Example: 92 */
2767
2758
  LastFileNumber?: number;
2768
2759
  /** ☆☆☆☆ ✔ Example: "n/a" */
2769
2760
  LateralChromaticAberration?: string;
2770
2761
  /** ☆☆☆☆ Example: "4.0 to 22" */
2771
2762
  LensApertureRange?: string;
2772
- /** ☆☆☆☆ ✔ Example: "0801" */
2763
+ /** ☆☆☆☆ ✔ Example: "Aperture" */
2764
+ LensControlRing?: string;
2765
+ /** ☆☆☆☆ ✔ Example: "0802" */
2773
2766
  LensDataVersion?: string;
2774
2767
  /** ☆☆☆☆ ✔ Example: "97 154 172 70 104 114" */
2775
2768
  LensDistortionParams?: string;
@@ -2791,8 +2784,8 @@ export interface MakerNotesTags {
2791
2784
  LensFocusFunctionButtons?: string;
2792
2785
  /** ☆☆☆☆ ✔ Example: "Unknown (72)" */
2793
2786
  LensFormat?: string;
2794
- /** ☆☆☆☆ ✔ Example: "AF-On" */
2795
- LensFunc2Button?: string;
2787
+ /** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
2788
+ LensFunc1Button?: string;
2796
2789
  /** ☆☆☆☆ ✔ Example: 93 */
2797
2790
  LensIDNumber?: number;
2798
2791
  /** ☆☆☆☆ Example: "4 to 4" */
@@ -2801,6 +2794,8 @@ export interface MakerNotesTags {
2801
2794
  LensModulationOptimizer?: string;
2802
2795
  /** ☆☆☆☆ ✔ Example: "Unknown (74)" */
2803
2796
  LensMount?: string;
2797
+ /** ☆☆☆☆ ✔ Example: "0xe253" */
2798
+ LensProperties?: string;
2804
2799
  /** ☆☆☆☆ Example: "Xcenter=1456 Ycenter=1068 GainMax=16" */
2805
2800
  LensShading?: string;
2806
2801
  /** ☆☆☆☆ ✔ Example: "On" */
@@ -2839,6 +2834,8 @@ export interface MakerNotesTags {
2839
2834
  LinearityUpperMargin?: number;
2840
2835
  /** ☆☆☆☆ Example: "Off" */
2841
2836
  LinkAEToAFPoint?: string;
2837
+ /** ☆☆☆☆ ✔ Example: 8192 */
2838
+ LivePhotoVideoIndex?: number;
2842
2839
  /** ☆☆☆☆ ✔ Example: "Wide Area" */
2843
2840
  LiveViewAF?: string;
2844
2841
  /** ☆☆☆☆ ✔ Example: "Face-Priority" */
@@ -2941,10 +2938,14 @@ export interface MakerNotesTags {
2941
2938
  MeasuredRGGB?: string;
2942
2939
  /** ☆☆☆☆ ✔ Example: "6653 9252 9606 4468" */
2943
2940
  MeasuredRGGBData?: string;
2944
- /** ☆☆☆☆ ✔ Example: 6 */
2941
+ /** ☆☆☆☆ ✔ Example: 7 */
2945
2942
  MechanicalShutterCount?: number;
2943
+ /** ☆☆☆☆ ✔ Example: "FFCBAC24-E547-4BBC-AF47-38B1A3D845E3" */
2944
+ MediaGroupUUID?: string;
2946
2945
  /** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
2947
2946
  MemoryCardConfiguration?: string;
2947
+ /** ☆☆☆☆ ✔ Example: 1 */
2948
+ MemoryCardNumber?: number;
2948
2949
  /** ☆☆☆☆ ✔ Example: "Previous (top if power off)" */
2949
2950
  MenuButtonDisplayPosition?: string;
2950
2951
  /** ☆☆☆☆ ✔ Example: "Top" */
@@ -2957,6 +2958,8 @@ export interface MakerNotesTags {
2957
2958
  MeterMode?: string;
2958
2959
  /** ☆☆☆☆ ✔ Example: "Matrix" */
2959
2960
  Metering?: string;
2961
+ /** ★★☆☆ ✔ Example: "Unknown (52990)" */
2962
+ MeteringMode?: string;
2960
2963
  /** ☆☆☆☆ ✔ Example: "Within Range" */
2961
2964
  MeteringOffScaleIndicator?: string;
2962
2965
  /** ☆☆☆☆ ✔ Example: "8 s" */
@@ -2969,7 +2972,9 @@ export interface MakerNotesTags {
2969
2972
  MinFocalLength?: string;
2970
2973
  /** ☆☆☆☆ ✔ Example: "2.0 m" */
2971
2974
  MinFocusDistance?: string;
2972
- /** ☆☆☆☆ Example: 2004-07-05 */
2975
+ /** ☆☆☆☆Example: 200 */
2976
+ MinimumISO?: number;
2977
+ /** ☆☆☆☆ Example: "2004:07:05" */
2973
2978
  MinoltaDate?: ExifDate | string;
2974
2979
  /** ☆☆☆☆ Example: "Unknown (768)" */
2975
2980
  MinoltaImageSize?: string;
@@ -2977,7 +2982,7 @@ export interface MakerNotesTags {
2977
2982
  MinoltaModelID?: string;
2978
2983
  /** ☆☆☆☆ ✔ Example: "Standard" */
2979
2984
  MinoltaQuality?: string;
2980
- /** ☆☆☆☆ Example: 20:16:39 */
2985
+ /** ☆☆☆☆ Example: "20:16:39" */
2981
2986
  MinoltaTime?: ExifTime | string;
2982
2987
  /** ☆☆☆☆ ✔ Example: "Enable" */
2983
2988
  MirrorLockup?: string;
@@ -3035,7 +3040,7 @@ export interface MakerNotesTags {
3035
3040
  MoonPhase?: string;
3036
3041
  /** ☆☆☆☆ Example: 100 */
3037
3042
  MotionSensitivity?: number;
3038
- /** ☆☆☆☆ ✔ Example: "Auto (People)" */
3043
+ /** ☆☆☆☆ ✔ Example: "Single" */
3039
3044
  MovieAFAreaMode?: string;
3040
3045
  /** ☆☆☆☆ ✔ Example: "4 (Normal)" */
3041
3046
  MovieAFTrackingSensitivity?: string;
@@ -3071,6 +3076,8 @@ export interface MakerNotesTags {
3071
3076
  MovieWhiteBalanceSameAsPhoto?: string;
3072
3077
  /** ☆☆☆☆ ✔ Example: "Off" */
3073
3078
  MultiControllerWhileMetering?: string;
3079
+ /** ☆☆☆☆ ✔ Example: "n/a" */
3080
+ MultiExposure?: string;
3074
3081
  /** ☆☆☆☆ ✔ Example: "Off" */
3075
3082
  MultiExposureAutoGain?: string;
3076
3083
  /** ☆☆☆☆ ✔ Example: "Bright (comparative)" */
@@ -3104,7 +3111,7 @@ export interface MakerNotesTags {
3104
3111
  /** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
3105
3112
  NEFCompression?: string;
3106
3113
  /** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
3107
- NEFLinearizationTable?: string;
3114
+ NEFLinearizationTable?: BinaryField | string;
3108
3115
  /** ☆☆☆☆ Example: "Off" */
3109
3116
  NeutralDensityFilter?: string;
3110
3117
  /** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
@@ -3129,8 +3136,8 @@ export interface MakerNotesTags {
3129
3136
  NumFaceElements?: number;
3130
3137
  /** ☆☆☆☆ ✔ Example: 65535 */
3131
3138
  NumFacePositions?: number;
3132
- /** ☆☆☆☆ ✔ Example: "55 Points" */
3133
- NumberOfFocusPoints?: string;
3139
+ /** ☆☆☆☆ ✔ Example: 32 */
3140
+ NumberOffsets?: number;
3134
3141
  /** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
3135
3142
  OKButton?: string;
3136
3143
  /** ☆☆☆☆ ✔ Example: 960 */
@@ -3162,10 +3169,10 @@ export interface MakerNotesTags {
3162
3169
  /** ☆☆☆☆ Example: ["Sensor Upgraded","PREPRODUCTION CAMERA"] */
3163
3170
  OtherInfo?: string[];
3164
3171
  /** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
3165
- OutputLUT?: string;
3172
+ OutputLUT?: BinaryField | string;
3166
3173
  /** ☆☆☆☆ ✔ Example: 3 */
3167
3174
  POILevel?: number;
3168
- /** ☆☆☆☆ ✔ Example: 2019-11-26T11:22:36.720+01:00 */
3175
+ /** ☆☆☆☆ ✔ Example: "2019:11:26 11:22:36.72" */
3169
3176
  PanasonicDateTime?: ExifDateTime | string;
3170
3177
  /** ☆☆☆☆ ✔ Example: "0417" */
3171
3178
  PanasonicExifVersion?: string;
@@ -3231,7 +3238,7 @@ export interface MakerNotesTags {
3231
3238
  PictureControlName?: string;
3232
3239
  /** ☆☆☆☆ ✔ Example: "n/a" */
3233
3240
  PictureControlQuickAdjust?: string;
3234
- /** ☆☆☆☆ ✔ Example: "0300" */
3241
+ /** ☆☆☆☆ ✔ Example: "0301" */
3235
3242
  PictureControlVersion?: string;
3236
3243
  /** ☆☆☆☆ ✔ Example: "Off" */
3237
3244
  PictureEffect?: string;
@@ -3293,8 +3300,6 @@ export interface MakerNotesTags {
3293
3300
  PreviewImageBorders?: string;
3294
3301
  /** ☆☆☆☆ ✔ Example: "Yes" */
3295
3302
  PreviewImageValid?: string;
3296
- /** ★☆☆☆ ✔ Example: 8 */
3297
- PrimaryAFPoint?: number;
3298
3303
  /** ☆☆☆☆ ✔ Example: "XQD Card" */
3299
3304
  PrimarySlot?: string;
3300
3305
  /** ☆☆☆☆ ✔ Example: "AF" */
@@ -3403,8 +3408,6 @@ export interface MakerNotesTags {
3403
3408
  RecordingMode?: string;
3404
3409
  /** ☆☆☆☆ ✔ Example: "On" */
3405
3410
  RedEyeRemoval?: string;
3406
- /** ☆☆☆☆ Example: "8D" */
3407
- RedGain?: string;
3408
3411
  /** ☆☆☆☆ ✔ Example: "Yes" */
3409
3412
  ReleaseButtonToUseDial?: string;
3410
3413
  /** ☆☆☆☆ ✔ Example: "Unknown (7)" */
@@ -3429,8 +3432,6 @@ export interface MakerNotesTags {
3429
3432
  RetouchHistory?: string;
3430
3433
  /** ☆☆☆☆ ✔ Example: "0200" */
3431
3434
  RetouchInfoVersion?: string;
3432
- /** ☆☆☆☆ ✔ Example: "Enable" */
3433
- RetractLensOnPowerOff?: string;
3434
3435
  /** ☆☆☆☆ ✔ Example: "No" */
3435
3436
  ReverseExposureCompDial?: string;
3436
3437
  /** ☆☆☆☆ ✔ Example: "Not Reversed" */
@@ -3439,7 +3440,7 @@ export interface MakerNotesTags {
3439
3440
  ReverseIndicators?: string;
3440
3441
  /** ☆☆☆☆ ✔ Example: "No" */
3441
3442
  ReverseShutterSpeedAperture?: string;
3442
- /** ☆☆☆☆ Example: 2012-03-29T18:17:52.000 */
3443
+ /** ☆☆☆☆ Example: "2012:03:29 18:17:52" */
3443
3444
  RicohDate?: ExifDateTime | string;
3444
3445
  /** ☆☆☆☆ Example: 960 */
3445
3446
  RicohImageHeight?: number;
@@ -3481,8 +3482,8 @@ export interface MakerNotesTags {
3481
3482
  SamsungModelID?: string;
3482
3483
  /** ☆☆☆☆ Example: "Unknown (0x211)" */
3483
3484
  SanyoQuality?: string;
3484
- /** ☆☆☆☆ Example: "(Binary data 9801 bytes, use -b option to extract)" */
3485
- SanyoThumbnail?: string;
3485
+ /** ☆☆☆☆ Example: "(Binary data 10313 bytes, use -b option to extract)" */
3486
+ SanyoThumbnail?: BinaryField | string;
3486
3487
  /** ☆☆☆☆ ✔ Example: 1 */
3487
3488
  SaturationAdj?: number;
3488
3489
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -3527,6 +3528,8 @@ export interface MakerNotesTags {
3527
3528
  SensitivityAdjust?: number;
3528
3529
  /** ☆☆☆☆ ✔ Example: "As EV Steps" */
3529
3530
  SensitivitySteps?: string;
3531
+ /** ☆☆☆☆ Example: "front-main-mot_s5k5e9" */
3532
+ Sensor?: string;
3530
3533
  /** ☆☆☆☆ Example: 14 */
3531
3534
  SensorBitDepth?: number;
3532
3535
  /** ☆☆☆☆ ✔ Example: 4214 */
@@ -3539,6 +3542,8 @@ export interface MakerNotesTags {
3539
3542
  SensorFullHeight?: number;
3540
3543
  /** ☆☆☆☆ Example: 3288 */
3541
3544
  SensorFullWidth?: number;
3545
+ /** ☆☆☆☆ Example: "1TCTJ8803BJ07G" */
3546
+ SensorID?: string;
3542
3547
  /** ☆☆☆☆ ✔ Example: "9.4 x 9.4 um" */
3543
3548
  SensorPixelSize?: string;
3544
3549
  /** ☆☆☆☆ ✔ Example: 4370 */
@@ -3595,7 +3600,7 @@ export interface MakerNotesTags {
3595
3600
  SharpnessTable?: string;
3596
3601
  /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
3597
3602
  ShootingInfoDisplay?: string;
3598
- /** ☆☆☆☆ ✔ Example: "10 s" */
3603
+ /** ☆☆☆☆ ✔ Example: "4 s" */
3599
3604
  ShootingInfoMonitorOffTime?: string;
3600
3605
  /** ☆☆☆☆ ✔ Example: "Continuous" */
3601
3606
  ShootingModeSetting?: string;
@@ -3603,14 +3608,12 @@ export interface MakerNotesTags {
3603
3608
  ShortOwnerName?: string;
3604
3609
  /** ☆☆☆☆ ✔ Example: "Enable" */
3605
3610
  ShortReleaseTimeLag?: string;
3606
- /** ☆☆☆☆ ✔ Example: "0803" */
3611
+ /** ☆☆☆☆ ✔ Example: "0807" */
3607
3612
  ShotInfoVersion?: string;
3608
3613
  /** ☆☆☆☆ ✔ Example: 9 */
3609
3614
  ShotNumberSincePowerUp?: number;
3610
3615
  /** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
3611
3616
  ShutterAELButton?: string;
3612
- /** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
3613
- ShutterButtonAFOnButton?: string;
3614
3617
  /** ☆☆☆☆ ✔ Example: 98 */
3615
3618
  ShutterCount?: number;
3616
3619
  /** ☆☆☆☆ Example: */
@@ -3637,8 +3640,6 @@ export interface MakerNotesTags {
3637
3640
  ShutterSpeedSetting?: string;
3638
3641
  /** ☆☆☆☆ ✔ Example: "Normal" */
3639
3642
  ShutterType?: string;
3640
- /** ☆☆☆☆ ✔ Example: "On" */
3641
- SilentPhotography?: string;
3642
3643
  /** ☆☆☆☆ ✔ Example: "Low" */
3643
3644
  SingleFrameBracketing?: string;
3644
3645
  /** ☆☆☆☆ Example: "Off" */
@@ -3647,8 +3648,6 @@ export interface MakerNotesTags {
3647
3648
  SlaveFlashMeteringSegments?: string;
3648
3649
  /** ★★☆☆ ✔ Example: "n/a" */
3649
3650
  SlowShutter?: string;
3650
- /** ★☆☆☆ ✔ Example: "On" */
3651
- SlowSync?: string;
3652
3651
  /** ☆☆☆☆ ✔ Example: "n/a" */
3653
3652
  SmartAlbumColor?: string;
3654
3653
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -3657,7 +3656,7 @@ export interface MakerNotesTags {
3657
3656
  SmileShutterMode?: string;
3658
3657
  /** ☆☆☆☆ ✔ Example: "n/a" */
3659
3658
  SoftSkinEffect?: string;
3660
- /** ☆☆☆☆ ✔ Example: 2021-07-23T16:13:55.000-07:00 */
3659
+ /** ☆☆☆☆ ✔ Example: "2022:10:05 11:42:07" */
3661
3660
  SonyDateTime?: ExifDateTime | string;
3662
3661
  /** ☆☆☆☆ ✔ Example: "1/82" */
3663
3662
  SonyExposureTime?: string;
@@ -3695,8 +3694,6 @@ export interface MakerNotesTags {
3695
3694
  SpecialEffectMode?: string;
3696
3695
  /** ☆☆☆☆ Example: "Unknown (15)" */
3697
3696
  SpecialEffectSetting?: string;
3698
- /** ★☆☆☆ ✔ Example: "Unknown (962), Sequence: 0, Panorama: (none)" */
3699
- SpecialMode?: string;
3700
3697
  /** ☆☆☆☆ ✔ Example: 16383 */
3701
3698
  SpecularWhiteLevel?: number;
3702
3699
  /** ☆☆☆☆ Example: "+0.10" */
@@ -3713,6 +3710,8 @@ export interface MakerNotesTags {
3713
3710
  SpotMeterLinkToAFPoint?: string;
3714
3711
  /** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
3715
3712
  StackedImage?: string;
3713
+ /** ☆☆☆☆ ✔ Example: "30 s" */
3714
+ StandbyMonitorOffTime?: string;
3716
3715
  /** ☆☆☆☆ ✔ Example: "6 s" */
3717
3716
  StandbyTimer?: string;
3718
3717
  /** ☆☆☆☆ ✔ Example: "Default (from LV)" */
@@ -3729,9 +3728,7 @@ export interface MakerNotesTags {
3729
3728
  SubSelectorAssignment?: string;
3730
3729
  /** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
3731
3730
  SubSelectorCenter?: string;
3732
- /** ☆☆☆☆ ✔ Example: "None" */
3733
- SubSelectorPlusDials?: string;
3734
- /** ☆☆☆☆ ✔ Example: "Middle" */
3731
+ /** ☆☆☆☆ ✔ Example: "Steady" */
3735
3732
  SubjectMotion?: string;
3736
3733
  /** ☆☆☆☆ Example: "None" */
3737
3734
  SubjectProgram?: string;
@@ -3778,18 +3775,18 @@ export interface MakerNotesTags {
3778
3775
  /** ☆☆☆☆ ✔ Example: 160 */
3779
3776
  ThumbnailWidth?: number;
3780
3777
  /** ☆☆☆☆ ✔ Example: "(Binary data 7404 bytes, use -b option to extract)" */
3781
- TiffMeteringImage?: string;
3778
+ TiffMeteringImage?: BinaryField | string;
3782
3779
  /** ☆☆☆☆ ✔ Example: 30 */
3783
3780
  TiffMeteringImageHeight?: number;
3784
3781
  /** ☆☆☆☆ ✔ Example: 44 */
3785
3782
  TiffMeteringImageWidth?: number;
3786
- /** ☆☆☆☆ ✔ Example: 23:50:41 */
3783
+ /** ☆☆☆☆ ✔ Example: "23:50:41" */
3787
3784
  Time?: ExifTime | string;
3788
3785
  /** ☆☆☆☆ ✔ Example: 50336257 */
3789
3786
  TimeLapseShotNumber?: number;
3790
- /** ☆☆☆☆ ✔ Example: 01:48:53.630 */
3787
+ /** ☆☆☆☆ ✔ Example: "01:48:53.63" */
3791
3788
  TimeSincePowerOn?: ExifTime | string;
3792
- /** ☆☆☆☆ ✔ Example: 2022-02-14T17:41:41.000-05:00 */
3789
+ /** ☆☆☆☆ ✔ Example: "2022:03:15 09:52:18" */
3793
3790
  TimeStamp?: ExifDateTime | string;
3794
3791
  /** ☆☆☆☆ ✔ Example: "-09:00" */
3795
3792
  TimeZone?: string;
@@ -3799,24 +3796,16 @@ export interface MakerNotesTags {
3799
3796
  TimeZoneCode?: number;
3800
3797
  /** ☆☆☆☆ ✔ Example: 0 */
3801
3798
  TimeZoneInfo?: number;
3802
- /** ☆☆☆☆ ✔ Example: "Self-timer" */
3803
- TimerFunctionButton?: string;
3804
3799
  /** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
3805
3800
  TimerLength?: string;
3806
- /** ☆☆☆☆ ✔ Example: "Off" */
3807
- TimerRecording?: string;
3808
3801
  /** ☆☆☆☆ ✔ Example: "" */
3809
3802
  Title?: string;
3810
- /** ☆☆☆☆ ✔ Example: "Normal" */
3811
- ToneComp?: string;
3812
3803
  /** ☆☆☆☆ ✔ Example: "Standard" */
3813
3804
  ToneCurve?: string;
3814
3805
  /** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
3815
- ToneCurveMatching?: string;
3806
+ ToneCurveMatching?: BinaryField | string;
3816
3807
  /** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
3817
- ToneCurveTable?: string;
3818
- /** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
3819
- ToneLevel?: string;
3808
+ ToneCurveTable?: BinaryField | string;
3820
3809
  /** ☆☆☆☆ ✔ Example: "n/a" */
3821
3810
  ToningEffect?: string;
3822
3811
  /** ☆☆☆☆ ✔ Example: "n/a" */
@@ -3825,8 +3814,6 @@ export interface MakerNotesTags {
3825
3814
  ToningSaturation?: string;
3826
3815
  /** ☆☆☆☆ Example: 5 */
3827
3816
  TotalZoom?: number;
3828
- /** ☆☆☆☆ ✔ Example: "Off" */
3829
- TouchAE?: string;
3830
3817
  /** ☆☆☆☆ Example: "Off" */
3831
3818
  Transform?: string;
3832
3819
  /** ☆☆☆☆ ✔ Example: "Normal (set center AF point)" */
@@ -3861,18 +3848,20 @@ export interface MakerNotesTags {
3861
3848
  VRMode?: string;
3862
3849
  /** ☆☆☆☆ ✔ Example: "12 0" */
3863
3850
  ValidBits?: string;
3851
+ /** ☆☆☆☆ ✔ Example: "Scene Auto" */
3852
+ VariProgram?: string;
3864
3853
  /** ☆☆☆☆ ✔ Example: "n/a" */
3865
3854
  VariableLowPassFilter?: string;
3866
3855
  /** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
3867
3856
  VerticalAFOnButton?: string;
3868
- /** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
3869
- VerticalFuncButton?: string;
3870
3857
  /** ☆☆☆☆ ✔ Example: "None" */
3871
3858
  VerticalFuncButtonPlusDials?: string;
3872
3859
  /** ☆☆☆☆ ✔ Example: "Same as AF-On" */
3873
3860
  VerticalMovieAFOnButton?: string;
3874
3861
  /** ☆☆☆☆ ✔ Example: "None" */
3875
3862
  VerticalMovieFuncButton?: string;
3863
+ /** ☆☆☆☆ ✔ Example: "Same as MultiSelector" */
3864
+ VerticalMultiSelector?: string;
3876
3865
  /** ☆☆☆☆ ✔ Example: "n/a" */
3877
3866
  VibrationReduction?: string;
3878
3867
  /** ☆☆☆☆ ✔ Example: "Off" */
@@ -3895,7 +3884,7 @@ export interface MakerNotesTags {
3895
3884
  VignetteControl?: string;
3896
3885
  /** ☆☆☆☆ Example: "Off" */
3897
3886
  Vignetting?: string;
3898
- /** ☆☆☆☆ ✔ Example: 96 */
3887
+ /** ☆☆☆☆ ✔ Example: 97 */
3899
3888
  VignettingCorrVersion?: number;
3900
3889
  /** ☆☆☆☆ Example: "Off" */
3901
3890
  VoiceMemo?: string;
@@ -3919,8 +3908,6 @@ export interface MakerNotesTags {
3919
3908
  WBShiftCreativeControl?: number;
3920
3909
  /** ☆☆☆☆ ✔ Example: 0 */
3921
3910
  WBShiftGM?: number;
3922
- /** ☆☆☆☆ ✔ Example: 0 */
3923
- WBShiftIntelligentAuto?: number;
3924
3911
  /** ☆☆☆☆ ✔ Example: "On" */
3925
3912
  WhiteBalanceAutoAdjustment?: string;
3926
3913
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -3931,8 +3918,6 @@ export interface MakerNotesTags {
3931
3918
  WhiteBalanceBracket?: string;
3932
3919
  /** ☆☆☆☆ ✔ Example: "Off" */
3933
3920
  WhiteBalanceBracketing?: string;
3934
- /** ★☆☆☆ ✔ Example: 3 */
3935
- WhiteBalanceFineTune?: number;
3936
3921
  /** ☆☆☆☆ ✔ 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" */
3937
3922
  WhiteBalanceMatching?: string;
3938
3923
  /** ☆☆☆☆ ✔ Example: "User-Selected" */
@@ -3944,7 +3929,7 @@ export interface MakerNotesTags {
3944
3929
  /** ☆☆☆☆ ✔ Example: "Custom 1" */
3945
3930
  WhiteBalanceSetting?: string;
3946
3931
  /** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
3947
- WhiteBalanceTable?: string;
3932
+ WhiteBalanceTable?: BinaryField | string;
3948
3933
  /** ☆☆☆☆ ✔ Example: "Auto" */
3949
3934
  WhiteBalanceTemperature?: string;
3950
3935
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -3959,11 +3944,13 @@ export interface MakerNotesTags {
3959
3944
  WorldTimeLocation?: string;
3960
3945
  /** ☆☆☆☆ Example: 0.2 */
3961
3946
  X3FillLight?: number;
3947
+ /** ☆☆☆☆ Example: "(Binary data 512 bytes, use -b option to extract)" */
3948
+ Xidiri?: BinaryField | string;
3962
3949
  /** ☆☆☆☆ ✔ Example: "Unknown (512)" */
3963
3950
  YCbCrPositioning?: string;
3964
3951
  /** ☆☆☆☆ Example: -96.7 */
3965
3952
  Yaw?: number;
3966
- /** ☆☆☆☆ ✔ Example: 91.6 */
3953
+ /** ☆☆☆☆ ✔ Example: 93.8 */
3967
3954
  YawAngle?: number;
3968
3955
  /** ☆☆☆☆ Example: 2006 */
3969
3956
  YearCreated?: number;
@@ -3981,8 +3968,8 @@ export interface MakerNotesTags {
3981
3968
  ZoomStepCount?: number;
3982
3969
  /** ★★☆☆ ✔ Example: 6000 */
3983
3970
  ZoomTargetWidth?: number;
3984
- /** ☆☆☆☆ ✔ Example: "(Binary data 92592 bytes, use -b option to extract)" */
3985
- ZoomedPreviewImage?: string;
3971
+ /** ☆☆☆☆ ✔ Example: "(Binary data 64581 bytes, use -b option to extract)" */
3972
+ ZoomedPreviewImage?: BinaryField | string;
3986
3973
  /** ☆☆☆☆ ✔ Example: 92592 */
3987
3974
  ZoomedPreviewLength?: number;
3988
3975
  /** ☆☆☆☆ ✔ Example: "736 544" */
@@ -4005,7 +3992,7 @@ export interface XMPTags {
4005
3992
  AsrClimaxScene?: string;
4006
3993
  /** ☆☆☆☆ Example: 0 */
4007
3994
  AsrIsMacroRange?: number;
4008
- /** ☆☆☆☆ Example: "Auto" */
3995
+ /** ☆☆☆☆ Example: "Stable" */
4009
3996
  AsrSceneCondition?: string;
4010
3997
  /** ☆☆☆☆ Example: "NightPortrait" */
4011
3998
  AsrSceneMode?: string;
@@ -4039,6 +4026,8 @@ export interface XMPTags {
4039
4026
  CameraUnit?: string;
4040
4027
  /** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","De…ical"}] */
4041
4028
  Cameras?: Struct[];
4029
+ /** ☆☆☆☆ ✔ Example: "Photo" */
4030
+ CaptureMode?: string;
4042
4031
  /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
4043
4032
  CaptureSoftware?: string;
4044
4033
  /** ☆☆☆☆ ✔ Example: ["Subjekt|Natur|Pflanzen","Ort|Deutschland|Rangsdorf"] */
@@ -4067,6 +4056,8 @@ export interface XMPTags {
4067
4056
  ColorNoiseReductionDetail?: number;
4068
4057
  /** ☆☆☆☆ ✔ Example: 50 */
4069
4058
  ColorNoiseReductionSmoothness?: number;
4059
+ /** ☆☆☆☆ ✔ Example: "sRGB" */
4060
+ ColorSpace?: string;
4070
4061
  /** ☆☆☆☆ ✔ Example: "" */
4071
4062
  Colorlabels?: string;
4072
4063
  /** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
@@ -4095,21 +4086,13 @@ export interface XMPTags {
4095
4086
  CropConstrainToWarp?: number;
4096
4087
  /** ☆☆☆☆ Example: 1 */
4097
4088
  CropRight?: number;
4098
- /** ☆☆☆☆ ✔ Example: 3872 */
4099
- CroppedAreaImageHeightPixels?: number;
4100
- /** ☆☆☆☆ ✔ Example: 7744 */
4101
- CroppedAreaImageWidthPixels?: number;
4102
- /** ☆☆☆☆ ✔ Example: 0 */
4103
- CroppedAreaLeftPixels?: number;
4104
- /** ☆☆☆☆ ✔ Example: 0 */
4105
- CroppedAreaTopPixels?: number;
4106
- /** ☆☆☆☆ ✔ Example: 2014-05-11T13:08:25.659-04:00 */
4089
+ /** ☆☆☆☆ ✔ Example: "2014:05:11 13:08:25.659" */
4107
4090
  DateAcquired?: ExifDateTime | string;
4108
- /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
4091
+ /** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
4109
4092
  DateTime?: ExifDateTime | string;
4110
- /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
4093
+ /** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
4111
4094
  DateTimeDigitized?: ExifDateTime | string;
4112
- /** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000Z */
4095
+ /** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
4113
4096
  DateUTC?: ExifDateTime | string;
4114
4097
  /** ☆☆☆☆ ✔ Example: 0 */
4115
4098
  DefringeGreenAmount?: number;
@@ -4135,6 +4118,16 @@ export interface XMPTags {
4135
4118
  DocumentID?: string;
4136
4119
  /** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
4137
4120
  ExifVersion?: string;
4121
+ /** ☆☆☆☆ ✔ Example: "Unknown (Auto exposure)" */
4122
+ ExposureMode?: string;
4123
+ /** ☆☆☆☆ Example: [{"FaceAnglePitch":0.009265,"FaceAngleRoll":-0.021281,"Fa…re":4}] */
4124
+ Face?: Struct[];
4125
+ /** ☆☆☆☆ Example: 1 */
4126
+ FaceNum?: number;
4127
+ /** ☆☆☆☆ Example: 0 */
4128
+ FaceSelectedIndex?: number;
4129
+ /** ☆☆☆☆ Example: 8 */
4130
+ Far?: number;
4138
4131
  /** ☆☆☆☆ ✔ Example: 1 */
4139
4132
  Firmware?: number;
4140
4133
  /** ☆☆☆☆ ✔ Example: "Example flash make" */
@@ -4149,15 +4142,15 @@ export interface XMPTags {
4149
4142
  FlightRollDegree?: number;
4150
4143
  /** ☆☆☆☆ Example: 88.699997 */
4151
4144
  FlightYawDegree?: number;
4152
- /** ☆☆☆☆ Example: 4681071 */
4145
+ /** ☆☆☆☆ Example: 6553500 */
4153
4146
  FocusAreaHeight?: number;
4154
4147
  /** ☆☆☆☆ Example: 1 */
4155
4148
  FocusAreaNum?: number;
4156
- /** ☆☆☆☆ Example: 3640833 */
4149
+ /** ☆☆☆☆ Example: 6553500 */
4157
4150
  FocusAreaWidth?: number;
4158
4151
  /** ☆☆☆☆ Example: 0 */
4159
4152
  FocusIsLensMoving?: number;
4160
- /** ☆☆☆☆ Example: 1456333 */
4153
+ /** ☆☆☆☆ Example: 3372647 */
4161
4154
  FocusPosX?: number;
4162
4155
  /** ☆☆☆☆ Example: 936214 */
4163
4156
  FocusPosY?: number;
@@ -4165,19 +4158,13 @@ export interface XMPTags {
4165
4158
  FocusState?: string;
4166
4159
  /** ☆☆☆☆ ✔ Example: "image/jpg" */
4167
4160
  Format?: string;
4168
- /** ☆☆☆☆ ✔ Example: 3872 */
4169
- FullPanoHeightPixels?: number;
4170
- /** ☆☆☆☆ ✔ Example: 7744 */
4171
- FullPanoWidthPixels?: number;
4172
- /** ☆☆☆☆ ✔ Example: "2.2.0.0" */
4173
- GPSVersionID?: string;
4174
4161
  /** ☆☆☆☆ Example: -90 */
4175
4162
  GimbalPitchDegree?: number;
4176
4163
  /** ☆☆☆☆ Example: 0 */
4177
4164
  GimbalReverse?: number;
4178
4165
  /** ☆☆☆☆ Example: "+0.00" */
4179
4166
  GimbalRollDegree?: string;
4180
- /** ☆☆☆☆ Example: "+90.80" */
4167
+ /** ☆☆☆☆ Example: */
4181
4168
  GimbalYawDegree?: string;
4182
4169
  /** ☆☆☆☆ ✔ Example: 0 */
4183
4170
  GrainAmount?: number;
@@ -4185,8 +4172,6 @@ export interface XMPTags {
4185
4172
  GreenHue?: number;
4186
4173
  /** ☆☆☆☆ ✔ Example: 0 */
4187
4174
  GreenSaturation?: number;
4188
- /** ☆☆☆☆ ✔ Example: "(Binary data 53037 bytes, use -b option to extract)" */
4189
- HDRPMakerNote?: string;
4190
4175
  /** ☆☆☆☆ ✔ Example: false */
4191
4176
  HasCrop?: boolean;
4192
4177
  /** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
@@ -4227,16 +4212,16 @@ export interface XMPTags {
4227
4212
  InteroperabilityIndex?: string;
4228
4213
  /** ☆☆☆☆ ✔ Example: "18, 25, 24.96" */
4229
4214
  InteroperabilityVersion?: string;
4230
- /** ☆☆☆☆ ✔ Example: false */
4215
+ /** ☆☆☆☆ ✔ Example: true */
4231
4216
  IsBokehActive?: boolean;
4232
- /** ☆☆☆☆ ✔ Example: false */
4233
- IsNightModeActive?: boolean;
4234
- /** ☆☆☆☆ ✔ Example: "選択" */
4235
- Label?: string;
4217
+ /** ☆☆☆☆ ✔ Example: true */
4218
+ IsHDRActive?: boolean;
4236
4219
  /** ☆☆☆☆ ✔ Example: ["red fish","bluefish"] */
4237
4220
  LastKeywordXMP?: string[];
4238
4221
  /** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
4239
4222
  LegacyIPTCDigest?: string;
4223
+ /** ☆☆☆☆ ✔ Example: "Back" */
4224
+ LensFacing?: string;
4240
4225
  /** ☆☆☆☆ ✔ Example: 0 */
4241
4226
  LensManualDistortionAmount?: number;
4242
4227
  /** ☆☆☆☆ ✔ Example: "Example lens make" */
@@ -4273,7 +4258,7 @@ export interface XMPTags {
4273
4258
  Marked?: boolean;
4274
4259
  /** ☆☆☆☆ ✔ Example: "" */
4275
4260
  Mask?: string;
4276
- /** ☆☆☆☆ ✔ Example: 2021-10-26T10:51:01.000+01:00 */
4261
+ /** ☆☆☆☆ ✔ Example: "2021:10:26 11:01:05+01:00" */
4277
4262
  MetadataDate?: ExifDateTime | string;
4278
4263
  /** ☆☆☆☆ ✔ Example: 1 */
4279
4264
  MicroVideo?: number;
@@ -4283,14 +4268,28 @@ export interface XMPTags {
4283
4268
  MicroVideoPresentationTimestampUs?: number;
4284
4269
  /** ☆☆☆☆ ✔ Example: 1 */
4285
4270
  MicroVideoVersion?: number;
4271
+ /** ☆☆☆☆ Example: "image/jpeg" */
4272
+ Mime?: string;
4286
4273
  /** ☆☆☆☆ Example: 240 */
4287
4274
  MobileCountryCode?: number;
4288
4275
  /** ☆☆☆☆ Example: 8 */
4289
4276
  MobileNetworkCode?: number;
4290
- /** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000+01:00 */
4277
+ /** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
4291
4278
  ModificationDate?: ExifDateTime | string;
4292
4279
  /** ☆☆☆☆ Example: "36864,40960,40961,37121,37122,40962,40963,37510,40964,368…B0A1251" */
4293
4280
  NativeDigest?: string;
4281
+ /** ☆☆☆☆ Example: 115.4 */
4282
+ Near?: number;
4283
+ /** ☆☆☆☆ Example: 561 */
4284
+ ObjectAreaHeight?: number;
4285
+ /** ☆☆☆☆ Example: 884 */
4286
+ ObjectAreaWidth?: number;
4287
+ /** ☆☆☆☆ Example: 1 */
4288
+ ObjectNum?: number;
4289
+ /** ☆☆☆☆ Example: 1890 */
4290
+ ObjectPosX?: number;
4291
+ /** ☆☆☆☆ Example: 1796 */
4292
+ ObjectPosY?: number;
4294
4293
  /** ☆☆☆☆ Example: */
4295
4294
  OriginalCreateDateTime?: ExifDateTime | string;
4296
4295
  /** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
@@ -4323,8 +4322,8 @@ export interface XMPTags {
4323
4322
  PerspectiveRotate?: number;
4324
4323
  /** ☆☆☆☆ ✔ Example: 100 */
4325
4324
  PerspectiveScale?: number;
4326
- /** ☆☆☆☆ ✔ Example: 0 */
4327
- PerspectiveUpright?: number;
4325
+ /** ☆☆☆☆ ✔ Example: "Off" */
4326
+ PerspectiveUpright?: string;
4328
4327
  /** ☆☆☆☆ ✔ Example: 0 */
4329
4328
  PerspectiveVertical?: number;
4330
4329
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4353,8 +4352,6 @@ export interface XMPTags {
4353
4352
  ProcessVersion?: number;
4354
4353
  /** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
4355
4354
  Profiles?: Struct[];
4356
- /** ☆☆☆☆ ✔ Example: "equirectangular" */
4357
- ProjectionType?: string;
4358
4355
  /** ☆☆☆☆ ✔ Example: "P2030414.jpg" */
4359
4356
  RawFileName?: string;
4360
4357
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4369,7 +4366,7 @@ export interface XMPTags {
4369
4366
  RegistryID?: Struct[];
4370
4367
  /** ☆☆☆☆ Example: "+90.80" */
4371
4368
  RelativeAltitude?: string;
4372
- /** ☆☆☆☆ ✔ Example: "james robinson taylor" */
4369
+ /** ☆☆☆☆ ✔ Example: "Kawp E. Reite Houldre" */
4373
4370
  Rights?: string;
4374
4371
  /** ☆☆☆☆ ✔ Example: 0 */
4375
4372
  SaturationAdjustmentAqua?: number;
@@ -4387,10 +4384,10 @@ export interface XMPTags {
4387
4384
  SaturationAdjustmentRed?: number;
4388
4385
  /** ☆☆☆☆ ✔ Example: 0 */
4389
4386
  SaturationAdjustmentYellow?: number;
4390
- /** ☆☆☆☆ ✔ Example: "[0.997883, 0.92984027]" */
4391
- SceneDetectResultConfidences?: string;
4392
- /** ☆☆☆☆ ✔ Example: "[901, 60, 0]" */
4393
- SceneDetectResultIds?: string;
4387
+ /** ☆☆☆☆ ✔ Example: "AutoHDR" */
4388
+ Scene?: string;
4389
+ /** ☆☆☆☆ ✔ Example: "Unknown (Standard)" */
4390
+ SceneCaptureType?: string;
4394
4391
  /** ☆☆☆☆ Example: "Undefined" */
4395
4392
  SelfData?: string;
4396
4393
  /** ☆☆☆☆ ✔ Example: 65536 */
@@ -4405,8 +4402,6 @@ export interface XMPTags {
4405
4402
  SharpenRadius?: string;
4406
4403
  /** ☆☆☆☆ ✔ Example: 2 */
4407
4404
  SourcePhotosCount?: number;
4408
- /** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.Spec…TRAIT"] */
4409
- SpecialTypeID?: string[];
4410
4405
  /** ☆☆☆☆ ✔ Example: 0 */
4411
4406
  SplitToningBalance?: number;
4412
4407
  /** ☆☆☆☆ ✔ Example: 0 */
@@ -4421,12 +4416,12 @@ export interface XMPTags {
4421
4416
  State?: string;
4422
4417
  /** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
4423
4418
  StitchingSoftware?: string;
4419
+ /** ☆☆☆☆ ✔ Example: 296185 */
4420
+ SubSecTimeOriginal?: number;
4424
4421
  /** ☆☆☆☆ ✔ Example: ["点像F11"] */
4425
4422
  Subject?: string[];
4426
4423
  /** ☆☆☆☆ ✔ Example: 296185 */
4427
4424
  SubsecTime?: number;
4428
- /** ☆☆☆☆ ✔ Example: "#MB%:{9C0B071B-5553-4D89-B252-934C9EC1E04D}GBMB1:%MB#" */
4429
- Tag?: string;
4430
4425
  /** ☆☆☆☆ ✔ Example: "Yes" */
4431
4426
  Tagged?: string;
4432
4427
  /** ☆☆☆☆ ✔ Example: ["Subjekt/Natur/Pflanzen","Ort/Deutschland/Rangsdorf"] */
@@ -4479,6 +4474,8 @@ export interface XMPTags {
4479
4474
  VignetteAmount?: number;
4480
4475
  /** ☆☆☆☆ Example: [4500] */
4481
4476
  WavelengthFWHM?: number[];
4477
+ /** ☆☆☆☆ Example: "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><…="0" />" */
4478
+ XMPMeta?: string;
4482
4479
  /** ☆☆☆☆ ✔ Example: "XMP toolkit 3.0-28, framework 1.6" */
4483
4480
  XMPToolkit?: string;
4484
4481
  }
@@ -4494,8 +4491,8 @@ export interface XMPTags {
4494
4491
  * devices (like iPhones) An example value, JSON stringified, follows the
4495
4492
  * popularity ratings.
4496
4493
  *
4497
- * Autogenerated by "yarn mktags" by ExifTool 12.45 on Tue Sep 27 2022.
4498
- * 2923 unique tags were found in 9968 photo and video files.
4494
+ * Autogenerated by "yarn mktags" by ExifTool 12.49 on Fri Oct 21 2022.
4495
+ * 2977 unique tags were found in 10019 photo and video files.
4499
4496
  */
4500
4497
  export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, JFIFTags, MPFTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
4501
4498
  errors?: string[];