exiftool-vendored 18.1.0 → 18.3.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/CHANGELOG.md +28 -2
- package/README.md +0 -1
- package/dist/CapturedAtTagNames.d.ts +1 -0
- package/dist/CapturedAtTagNames.js +13 -0
- package/dist/CapturedAtTagNames.js.map +1 -0
- package/dist/ExifTool.d.ts +20 -1
- package/dist/ExifTool.js +6 -1
- package/dist/ExifTool.js.map +1 -1
- package/dist/FirstDateTime.d.ts +9 -0
- package/dist/FirstDateTime.js +27 -0
- package/dist/FirstDateTime.js.map +1 -0
- package/dist/GeoTz.d.ts +2 -0
- package/dist/GeoTz.js +17 -0
- package/dist/GeoTz.js.map +1 -0
- package/dist/MaybeReadonly.d.ts +1 -0
- package/dist/MaybeReadonly.js +3 -0
- package/dist/MaybeReadonly.js.map +1 -0
- package/dist/ReadTask.d.ts +1 -1
- package/dist/ReadTask.js +70 -52
- package/dist/ReadTask.js.map +1 -1
- package/dist/Tags.d.ts +221 -217
- package/dist/Timezones.d.ts +15 -1
- package/dist/Timezones.js +27 -11
- package/dist/Timezones.js.map +1 -1
- package/package.json +17 -18
package/dist/Tags.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ import { Version } from "./Version";
|
|
|
9
9
|
export interface ExifToolTags {
|
|
10
10
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
11
11
|
Error?: string;
|
|
12
|
+
/** ★★★★ ✔ Example: 12.49 */
|
|
13
|
+
ExifToolVersion?: number;
|
|
12
14
|
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
13
15
|
Warning?: string;
|
|
14
16
|
}
|
|
@@ -23,8 +25,18 @@ export interface FileTags {
|
|
|
23
25
|
Compression?: string;
|
|
24
26
|
/** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
|
|
25
27
|
CurrentIPTCDigest?: string;
|
|
28
|
+
/** ★★★★ ✔ Example: "/home/username/pictures" */
|
|
29
|
+
Directory?: string;
|
|
30
|
+
/** ★★★★ ✔ Example: 2022-10-21T12:57:11.000-07:00 */
|
|
31
|
+
FileAccessDate?: ExifDateTime | string;
|
|
32
|
+
/** ★★★★ ✔ Example: 2022-10-21T12:48:56.000-07:00 */
|
|
33
|
+
FileInodeChangeDate?: ExifDateTime | string;
|
|
34
|
+
/** ★★★★ ✔ Example: 2022-10-13T13:19:48.000-07:00 */
|
|
35
|
+
FileModifyDate?: ExifDateTime | string;
|
|
26
36
|
/** ★★★★ ✔ Example: "utc+8_oly.jpg" */
|
|
27
37
|
FileName?: string;
|
|
38
|
+
/** ★★★★ ✔ Example: "-rwxrwxr-x" */
|
|
39
|
+
FilePermissions?: string;
|
|
28
40
|
/** ★★★★ ✔ Example: "990 bytes" */
|
|
29
41
|
FileSize?: string;
|
|
30
42
|
/** ★★★★ ✔ Example: "RW2" */
|
|
@@ -75,27 +87,29 @@ export interface CompositeTags {
|
|
|
75
87
|
DateTimeCreated?: ExifDateTime | string;
|
|
76
88
|
/** ☆☆☆☆ ✔ Example: 2017-02-20T18:06:40.000Z */
|
|
77
89
|
DateTimeOriginal?: ExifDateTime | string;
|
|
90
|
+
/** ☆☆☆☆ ✔ Example: 2021-03-16T18:14:25.000-07:00 */
|
|
91
|
+
DigitalCreationDateTime?: ExifDateTime | string;
|
|
78
92
|
/** ☆☆☆☆ ✔ Example: "4.00x" */
|
|
79
93
|
DigitalZoom?: string;
|
|
80
94
|
/** ★★☆☆ ✔ Example: "Single-frame Shooting" */
|
|
81
95
|
DriveMode?: string;
|
|
82
96
|
/** ☆☆☆☆ ✔ Example: 25.866408 */
|
|
83
97
|
Duration?: number;
|
|
98
|
+
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
99
|
+
ExtenderStatus?: string;
|
|
84
100
|
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
85
101
|
FOV?: string;
|
|
86
102
|
/** ☆☆☆☆ ✔ Example: "Off, Did not fire" */
|
|
87
103
|
Flash?: string;
|
|
88
104
|
/** ☆☆☆☆ ✔ Example: "External" */
|
|
89
105
|
FlashType?: string;
|
|
90
|
-
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
91
|
-
FocalLength35efl?: string;
|
|
92
106
|
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
93
107
|
FocusDistance?: string;
|
|
94
108
|
/** ☆☆☆☆ ✔ Example: 99.8 */
|
|
95
109
|
GPSAltitude?: number;
|
|
96
110
|
/** ☆☆☆☆ ✔ Example: "Above Sea Level" */
|
|
97
111
|
GPSAltitudeRef?: string;
|
|
98
|
-
/** ☆☆☆☆ ✔ Example:
|
|
112
|
+
/** ☆☆☆☆ ✔ Example: 2022-04-13T12:59:47.000Z */
|
|
99
113
|
GPSDateTime?: ExifDateTime | string;
|
|
100
114
|
/** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
|
|
101
115
|
GPSDestLatitude?: string;
|
|
@@ -157,19 +171,17 @@ export interface CompositeTags {
|
|
|
157
171
|
ShutterCurtainHack?: string;
|
|
158
172
|
/** ★★★★ ✔ Example: "inf" */
|
|
159
173
|
ShutterSpeed?: string;
|
|
160
|
-
/** ★☆☆☆ ✔ Example: 2022-
|
|
174
|
+
/** ★☆☆☆ ✔ Example: 2022-10-05T11:42:07.515-07:00 */
|
|
161
175
|
SubSecCreateDate?: ExifDateTime | string;
|
|
162
|
-
/** ★☆☆☆ ✔ Example: 2022-
|
|
176
|
+
/** ★☆☆☆ ✔ Example: 2022-10-05T11:42:07.515-07:00 */
|
|
163
177
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
164
178
|
/** ☆☆☆☆ Example: */
|
|
165
179
|
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
166
|
-
/** ★☆☆☆ ✔ Example: 2022-02-14T12:41:41.996-05:00 */
|
|
167
|
-
SubSecModifyDate?: ExifDateTime | string;
|
|
168
180
|
}
|
|
169
181
|
export interface APP1Tags {
|
|
170
182
|
/** ☆☆☆☆ Example: "59 128 128" */
|
|
171
183
|
AboveColor?: string;
|
|
172
|
-
/** ☆☆☆☆ Example: "
|
|
184
|
+
/** ☆☆☆☆ Example: "5.0 C" */
|
|
173
185
|
AtmosphericTemperature?: string;
|
|
174
186
|
/** ☆☆☆☆ Example: "60 128 128" */
|
|
175
187
|
BelowColor?: string;
|
|
@@ -177,7 +189,7 @@ export interface APP1Tags {
|
|
|
177
189
|
CameraModel?: string;
|
|
178
190
|
/** ☆☆☆☆ Example: "_______________" */
|
|
179
191
|
CameraPartNumber?: string;
|
|
180
|
-
/** ☆☆☆☆ Example:
|
|
192
|
+
/** ☆☆☆☆ Example: 8340330 */
|
|
181
193
|
CameraSerialNumber?: number;
|
|
182
194
|
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
183
195
|
CameraSoftware?: string;
|
|
@@ -185,6 +197,14 @@ export interface APP1Tags {
|
|
|
185
197
|
CreatorSoftware?: string;
|
|
186
198
|
/** ☆☆☆☆ Example: 2013-03-12T16:31:26.000 */
|
|
187
199
|
DateTimeGenerated?: ExifDateTime | string;
|
|
200
|
+
/** ☆☆☆☆ Example: "(Binary data 74741 bytes, use -b option to extract)" */
|
|
201
|
+
EmbeddedImage?: string;
|
|
202
|
+
/** ☆☆☆☆ Example: 960 */
|
|
203
|
+
EmbeddedImageHeight?: number;
|
|
204
|
+
/** ☆☆☆☆ Example: "PNG" */
|
|
205
|
+
EmbeddedImageType?: string;
|
|
206
|
+
/** ☆☆☆☆ Example: 640 */
|
|
207
|
+
EmbeddedImageWidth?: number;
|
|
188
208
|
/** ☆☆☆☆ Example: 1 */
|
|
189
209
|
Emissivity?: number;
|
|
190
210
|
/** ☆☆☆☆ Example: "46.1 deg" */
|
|
@@ -207,8 +227,18 @@ export interface APP1Tags {
|
|
|
207
227
|
GPSImgDirectionRef?: string;
|
|
208
228
|
/** ☆☆☆☆ Example: "WGS84" */
|
|
209
229
|
GPSMapDatum?: string;
|
|
230
|
+
/** ☆☆☆☆ Example: 20.56 */
|
|
231
|
+
GPSSpeed?: number;
|
|
232
|
+
/** ☆☆☆☆ Example: "km/h" */
|
|
233
|
+
GPSSpeedRef?: string;
|
|
234
|
+
/** ☆☆☆☆ Example: 88.01 */
|
|
235
|
+
GPSTrack?: number;
|
|
236
|
+
/** ☆☆☆☆ Example: "True North" */
|
|
237
|
+
GPSTrackRef?: string;
|
|
210
238
|
/** ☆☆☆☆ Example: "Yes" */
|
|
211
239
|
GPSValid?: string;
|
|
240
|
+
/** ☆☆☆☆ Example: "2.2.0.0" */
|
|
241
|
+
GPSVersionID?: string;
|
|
212
242
|
/** ☆☆☆☆ Example: "7.4 C" */
|
|
213
243
|
IRWindowTemperature?: string;
|
|
214
244
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -219,7 +249,7 @@ export interface APP1Tags {
|
|
|
219
249
|
Isotherm2Color?: string;
|
|
220
250
|
/** ☆☆☆☆ Example: "N/A" */
|
|
221
251
|
LensModel?: string;
|
|
222
|
-
/** ☆☆☆☆ Example: "
|
|
252
|
+
/** ☆☆☆☆ Example: "T199104" */
|
|
223
253
|
LensPartNumber?: string;
|
|
224
254
|
/** ☆☆☆☆ Example: "No Lens" */
|
|
225
255
|
LensSerialNumber?: string;
|
|
@@ -237,6 +267,10 @@ export interface APP1Tags {
|
|
|
237
267
|
Meas2Type?: string;
|
|
238
268
|
/** ☆☆☆☆ Example: "9.70 m" */
|
|
239
269
|
ObjectDistance?: string;
|
|
270
|
+
/** ☆☆☆☆ Example: "+98" */
|
|
271
|
+
OffsetX?: string;
|
|
272
|
+
/** ☆☆☆☆ Example: "+51" */
|
|
273
|
+
OffsetY?: string;
|
|
240
274
|
/** ☆☆☆☆ Example: "67 216 98" */
|
|
241
275
|
OverflowColor?: string;
|
|
242
276
|
/** ☆☆☆☆ Example: "(Binary data 672 bytes, use -b option to extract)" */
|
|
@@ -269,6 +303,8 @@ export interface APP1Tags {
|
|
|
269
303
|
RawValueRangeMax?: number;
|
|
270
304
|
/** ☆☆☆☆ Example: 8628 */
|
|
271
305
|
RawValueRangeMin?: number;
|
|
306
|
+
/** ☆☆☆☆ Example: 2.2125397 */
|
|
307
|
+
Real2IR?: number;
|
|
272
308
|
/** ☆☆☆☆ Example: "26.7 C" */
|
|
273
309
|
ReflectedApparentTemperature?: string;
|
|
274
310
|
/** ☆☆☆☆ Example: "80.0 %" */
|
|
@@ -507,7 +543,7 @@ export interface EXIFTags {
|
|
|
507
543
|
CompositeImage?: string;
|
|
508
544
|
/** ★★★★ ✔ Example: 90 */
|
|
509
545
|
CompressedBitsPerPixel?: number;
|
|
510
|
-
/** ★★★☆ ✔ Example: "Unknown (
|
|
546
|
+
/** ★★★☆ ✔ Example: "Unknown (99)" */
|
|
511
547
|
Contrast?: string;
|
|
512
548
|
/** ★★☆☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
|
|
513
549
|
Copyright?: string;
|
|
@@ -541,8 +577,6 @@ export interface EXIFTags {
|
|
|
541
577
|
ExifImageWidth?: number;
|
|
542
578
|
/** ★☆☆☆ ✔ Example: 83 */
|
|
543
579
|
ExposureIndex?: number;
|
|
544
|
-
/** ★★★★ ✔ Example: "Unknown ()" */
|
|
545
|
-
ExposureMode?: string;
|
|
546
580
|
/** ★★★★ ✔ Example: "Unknown (8112)" */
|
|
547
581
|
ExposureProgram?: string;
|
|
548
582
|
/** ★★★★ ✔ Example: "Unknown (DSC)" */
|
|
@@ -561,7 +595,7 @@ export interface EXIFTags {
|
|
|
561
595
|
FocalPlaneYResolution?: number;
|
|
562
596
|
/** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
|
|
563
597
|
GPSAreaInformation?: string;
|
|
564
|
-
/** ☆☆☆☆ ✔ Example:
|
|
598
|
+
/** ☆☆☆☆ ✔ Example: 2022-04-13 */
|
|
565
599
|
GPSDateStamp?: ExifDate | string;
|
|
566
600
|
/** ☆☆☆☆ ✔ Example: 86.180049 */
|
|
567
601
|
GPSDestBearing?: number;
|
|
@@ -569,8 +603,6 @@ export interface EXIFTags {
|
|
|
569
603
|
GPSDestBearingRef?: string;
|
|
570
604
|
/** ☆☆☆☆ ✔ Example: 0.030120052 */
|
|
571
605
|
GPSDestDistance?: number;
|
|
572
|
-
/** ☆☆☆☆ ✔ Example: "Kilometers" */
|
|
573
|
-
GPSDestDistanceRef?: string;
|
|
574
606
|
/** ☆☆☆☆ ✔ Example: "North" */
|
|
575
607
|
GPSDestLatitudeRef?: string;
|
|
576
608
|
/** ☆☆☆☆ ✔ Example: "West" */
|
|
@@ -585,18 +617,10 @@ export interface EXIFTags {
|
|
|
585
617
|
GPSProcessingMethod?: string;
|
|
586
618
|
/** ☆☆☆☆ ✔ Example: "??B??" */
|
|
587
619
|
GPSSatellites?: string;
|
|
588
|
-
/** ☆☆☆☆ ✔ Example: 5 */
|
|
589
|
-
GPSSpeed?: number;
|
|
590
|
-
/** ☆☆☆☆ ✔ Example: "knots" */
|
|
591
|
-
GPSSpeedRef?: string;
|
|
592
620
|
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
593
621
|
GPSStatus?: string;
|
|
594
622
|
/** ☆☆☆☆ ✔ Example: 23:59:41.001 */
|
|
595
623
|
GPSTimeStamp?: ExifTime | string;
|
|
596
|
-
/** ☆☆☆☆ ✔ Example: 74.882813 */
|
|
597
|
-
GPSTrack?: number;
|
|
598
|
-
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
599
|
-
GPSTrackRef?: string;
|
|
600
624
|
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
601
625
|
GainControl?: string;
|
|
602
626
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -605,7 +629,7 @@ export interface EXIFTags {
|
|
|
605
629
|
HighISOMultiplierGreen?: number;
|
|
606
630
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
607
631
|
HighISOMultiplierRed?: number;
|
|
608
|
-
/** ☆☆☆☆ ✔ Example: "iPhone
|
|
632
|
+
/** ☆☆☆☆ ✔ Example: "iPhone 13 Pro Max" */
|
|
609
633
|
HostComputer?: string;
|
|
610
634
|
/** ☆☆☆☆ ✔ Example: 598 */
|
|
611
635
|
ISOSpeed?: number;
|
|
@@ -645,8 +669,6 @@ export interface EXIFTags {
|
|
|
645
669
|
MakerNoteUnknownText?: string;
|
|
646
670
|
/** ★★★★ ✔ Example: 9.1 */
|
|
647
671
|
MaxApertureValue?: number;
|
|
648
|
-
/** ★★★★ ✔ Example: "Unknown (7968)" */
|
|
649
|
-
MeteringMode?: string;
|
|
650
672
|
/** ★★★★ ✔ Example: "x530" */
|
|
651
673
|
Model?: string;
|
|
652
674
|
/** ☆☆☆☆ ✔ Example: "K520C-01044" */
|
|
@@ -737,8 +759,6 @@ export interface EXIFTags {
|
|
|
737
759
|
SamplesPerPixel?: number;
|
|
738
760
|
/** ★★★☆ ✔ Example: "Unknown (8)" */
|
|
739
761
|
Saturation?: string;
|
|
740
|
-
/** ★★★★ ✔ Example: "Unknown (8160)" */
|
|
741
|
-
SceneCaptureType?: string;
|
|
742
762
|
/** ★★★★ ✔ Example: "Unknown (9)" */
|
|
743
763
|
SceneType?: string;
|
|
744
764
|
/** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
|
|
@@ -781,8 +801,6 @@ export interface EXIFTags {
|
|
|
781
801
|
SubSecTime?: number;
|
|
782
802
|
/** ★☆☆☆ ✔ Example: 996 */
|
|
783
803
|
SubSecTimeDigitized?: number;
|
|
784
|
-
/** ★☆☆☆ ✔ Example: 999 */
|
|
785
|
-
SubSecTimeOriginal?: number;
|
|
786
804
|
/** ☆☆☆☆ ✔ Example: "Semantic Mask" */
|
|
787
805
|
SubfileType?: string;
|
|
788
806
|
/** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
|
|
@@ -805,8 +823,6 @@ export interface EXIFTags {
|
|
|
805
823
|
TimeZoneOffset?: number | string;
|
|
806
824
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
|
|
807
825
|
TransferFunction?: string;
|
|
808
|
-
/** ☆☆☆☆ ✔ Example: "motorola XT1254" */
|
|
809
|
-
UniqueCameraModel?: string;
|
|
810
826
|
/** ★★★☆ ✔ Example: "This is a comment." */
|
|
811
827
|
UserComment?: string;
|
|
812
828
|
/** ☆☆☆☆ ✔ Example: "11 0 32 144 352 640 1040 1536 2144 2848 3600 4400 0 0 0 0 0" */
|
|
@@ -819,8 +835,6 @@ export interface EXIFTags {
|
|
|
819
835
|
WBGreenLevel?: number;
|
|
820
836
|
/** ☆☆☆☆ ✔ Example: 737 */
|
|
821
837
|
WBRedLevel?: number;
|
|
822
|
-
/** ★★★★ ✔ Example: "Unknown (65535)" */
|
|
823
|
-
WhiteBalance?: string;
|
|
824
838
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
825
839
|
WhiteLevel?: number;
|
|
826
840
|
/** ☆☆☆☆ ✔ Example: "0.4234 0.399" */
|
|
@@ -863,6 +877,8 @@ export interface APP6Tags {
|
|
|
863
877
|
ProTune?: string;
|
|
864
878
|
/** ☆☆☆☆ ✔ Example: "4_1SEC" */
|
|
865
879
|
Rate?: string;
|
|
880
|
+
/** ☆☆☆☆ ✔ Example: "AUTO" */
|
|
881
|
+
WhiteBalance?: string;
|
|
866
882
|
}
|
|
867
883
|
export interface FlashPixTags {
|
|
868
884
|
/** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
|
|
@@ -901,14 +917,16 @@ export interface IPTCTags {
|
|
|
901
917
|
CodedCharacterSet?: string;
|
|
902
918
|
/** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
|
|
903
919
|
Contact?: string;
|
|
904
|
-
/** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
|
|
905
|
-
CopyrightNotice?: string;
|
|
906
920
|
/** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
|
|
907
921
|
Credit?: string;
|
|
908
922
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
909
923
|
DateSent?: string;
|
|
910
924
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
911
925
|
Destination?: string;
|
|
926
|
+
/** ☆☆☆☆ ✔ Example: 2021-03-16 */
|
|
927
|
+
DigitalCreationDate?: ExifDate | string;
|
|
928
|
+
/** ☆☆☆☆ ✔ Example: 20:25:15 */
|
|
929
|
+
DigitalCreationTime?: ExifTime | string;
|
|
912
930
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
913
931
|
EnvelopeNumber?: string;
|
|
914
932
|
/** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
|
|
@@ -1033,14 +1051,8 @@ export interface PhotoshopTags {
|
|
|
1033
1051
|
PhotoshopThumbnail?: string;
|
|
1034
1052
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1035
1053
|
PixelAspectRatio?: number;
|
|
1036
|
-
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
1037
|
-
PrintPosition?: string;
|
|
1038
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1039
|
-
PrintScale?: number;
|
|
1040
1054
|
/** ☆☆☆☆ ✔ Example: "Centered" */
|
|
1041
1055
|
PrintStyle?: string;
|
|
1042
|
-
/** ☆☆☆☆ ✔ Example: "3 Scans" */
|
|
1043
|
-
ProgressiveScans?: string;
|
|
1044
1056
|
/** ☆☆☆☆ ✔ Example: 72 */
|
|
1045
1057
|
XResolution?: number;
|
|
1046
1058
|
/** ☆☆☆☆ ✔ Example: 72 */
|
|
@@ -1085,7 +1097,7 @@ export interface QuickTimeTags {
|
|
|
1085
1097
|
CompressorID?: string;
|
|
1086
1098
|
/** ☆☆☆☆ ✔ Example: "Track 1" */
|
|
1087
1099
|
ContentDescribes?: string;
|
|
1088
|
-
/** ☆☆☆☆ ✔ Example: 2022-02-
|
|
1100
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T14:31:16.000-08:00 */
|
|
1089
1101
|
CreationDate?: ExifDateTime | string;
|
|
1090
1102
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1091
1103
|
CurrentTime?: string;
|
|
@@ -1151,6 +1163,8 @@ export interface QuickTimeTags {
|
|
|
1151
1163
|
OtherFormat?: string;
|
|
1152
1164
|
/** ☆☆☆☆ ✔ Example: "SEQ_PLAY" */
|
|
1153
1165
|
PlayMode?: string;
|
|
1166
|
+
/** ☆☆☆☆ ✔ Example: 59.94006 */
|
|
1167
|
+
PlaybackFrameRate?: number;
|
|
1154
1168
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1155
1169
|
PosterTime?: string;
|
|
1156
1170
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -1269,6 +1283,8 @@ export interface JFIFTags {
|
|
|
1269
1283
|
ThumbnailImage?: string;
|
|
1270
1284
|
}
|
|
1271
1285
|
export interface MakerNotesTags {
|
|
1286
|
+
/** ☆☆☆☆ Example: "(Binary data 1024 bytes, use -b option to extract)" */
|
|
1287
|
+
ADJDebugInfo?: string;
|
|
1272
1288
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1273
1289
|
ADLBracketingStep?: string;
|
|
1274
1290
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1291,12 +1307,22 @@ export interface MakerNotesTags {
|
|
|
1291
1307
|
AEBXv?: number;
|
|
1292
1308
|
/** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
|
|
1293
1309
|
AEBracketingSteps?: string;
|
|
1310
|
+
/** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
|
|
1311
|
+
AEDebugInfo?: string;
|
|
1294
1312
|
/** ☆☆☆☆ ✔ Example: "1/965" */
|
|
1295
1313
|
AEExposureTime?: string;
|
|
1314
|
+
/** ☆☆☆☆ Example: "(Binary data 4096 bytes, use -b option to extract)" */
|
|
1315
|
+
AEHistogramInfo?: string;
|
|
1296
1316
|
/** ☆☆☆☆ ✔ Example: "Hold" */
|
|
1297
1317
|
AELButton?: string;
|
|
1298
1318
|
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
1299
1319
|
AELExposureIndicator?: string;
|
|
1320
|
+
/** ☆☆☆☆ Example: "(Binary data 4096 bytes, use -b option to extract)" */
|
|
1321
|
+
AELiveViewHistogramInfo?: string;
|
|
1322
|
+
/** ☆☆☆☆ Example: "(Binary data 2048 bytes, use -b option to extract)" */
|
|
1323
|
+
AELiveViewLocalHistogram?: string;
|
|
1324
|
+
/** ☆☆☆☆ Example: "(Binary data 2048 bytes, use -b option to extract)" */
|
|
1325
|
+
AELocalHistogram?: string;
|
|
1300
1326
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1301
1327
|
AELock?: string;
|
|
1302
1328
|
/** ☆☆☆☆ ✔ Example: "AF Lock Only" */
|
|
@@ -1335,8 +1361,6 @@ export interface MakerNotesTags {
|
|
|
1335
1361
|
AFAperture?: number;
|
|
1336
1362
|
/** ☆☆☆☆ ✔ Example: 840 */
|
|
1337
1363
|
AFAreaHeight?: number;
|
|
1338
|
-
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1339
|
-
AFAreaHeights?: string;
|
|
1340
1364
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
1341
1365
|
AFAreaIllumination?: string;
|
|
1342
1366
|
/** ★★★☆ ✔ Example: "Zone AF" */
|
|
@@ -1349,9 +1373,7 @@ export interface MakerNotesTags {
|
|
|
1349
1373
|
AFAreaSelectionMethod?: string;
|
|
1350
1374
|
/** ☆☆☆☆ ✔ Example: 996 */
|
|
1351
1375
|
AFAreaWidth?: number;
|
|
1352
|
-
/**
|
|
1353
|
-
AFAreaWidths?: string;
|
|
1354
|
-
/** ☆☆☆☆ ✔ Example: 3295 */
|
|
1376
|
+
/** ☆☆☆☆ ✔ Example: 4388 */
|
|
1355
1377
|
AFAreaXPosition?: number;
|
|
1356
1378
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1357
1379
|
AFAreaYPosition?: number;
|
|
@@ -1369,6 +1391,8 @@ export interface MakerNotesTags {
|
|
|
1369
1391
|
AFButtonPressed?: string;
|
|
1370
1392
|
/** ☆☆☆☆ ✔ Example: "Case 11" */
|
|
1371
1393
|
AFConfigTool?: string;
|
|
1394
|
+
/** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
|
|
1395
|
+
AFDebugInfo?: string;
|
|
1372
1396
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1373
1397
|
AFDefocus?: number;
|
|
1374
1398
|
/** ☆☆☆☆ ✔ Example: "Quick mode" */
|
|
@@ -1377,13 +1401,13 @@ export interface MakerNotesTags {
|
|
|
1377
1401
|
AFFineTune?: string;
|
|
1378
1402
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1379
1403
|
AFFineTuneAdj?: string;
|
|
1380
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1404
|
+
/** ☆☆☆☆ ✔ Example: "6L of Center" */
|
|
1381
1405
|
AFFocusPointXPosition?: string;
|
|
1382
1406
|
/** ☆☆☆☆ ✔ Example: "5U from Center" */
|
|
1383
1407
|
AFFocusPointYPosition?: string;
|
|
1384
1408
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1385
1409
|
AFIlluminator?: string;
|
|
1386
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1410
|
+
/** ☆☆☆☆ ✔ Example: "0400" */
|
|
1387
1411
|
AFInfo2Version?: string;
|
|
1388
1412
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
1389
1413
|
AFIntegrationTime?: string;
|
|
@@ -1397,13 +1421,11 @@ export interface MakerNotesTags {
|
|
|
1397
1421
|
AFMicroAdjValue?: number;
|
|
1398
1422
|
/** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
|
|
1399
1423
|
AFMicroadjustment?: string;
|
|
1400
|
-
/** ★☆☆☆ ✔ Example: "Zone" */
|
|
1401
|
-
AFMode?: string;
|
|
1402
1424
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1403
1425
|
AFModeRestrictions?: string;
|
|
1404
1426
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
1405
1427
|
AFOnAELockButtonSwitch?: string;
|
|
1406
|
-
/** ☆☆☆☆ ✔ Example: "AF
|
|
1428
|
+
/** ☆☆☆☆ ✔ Example: "AF-On" */
|
|
1407
1429
|
AFOnButton?: string;
|
|
1408
1430
|
/** ★★☆☆ ✔ Example: "Upper-right" */
|
|
1409
1431
|
AFPoint?: string;
|
|
@@ -1415,8 +1437,6 @@ export interface MakerNotesTags {
|
|
|
1415
1437
|
AFPointAtShutterRelease?: string;
|
|
1416
1438
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
1417
1439
|
AFPointBrightness?: string;
|
|
1418
|
-
/** ☆☆☆☆ ✔ Example: "Selected (constant)" */
|
|
1419
|
-
AFPointDisplayDuringFocus?: string;
|
|
1420
1440
|
/** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
|
|
1421
1441
|
AFPointIllumination?: string;
|
|
1422
1442
|
/** ☆☆☆☆ ✔ Example: "Left (vertical)" */
|
|
@@ -1497,12 +1517,8 @@ export interface MakerNotesTags {
|
|
|
1497
1517
|
AddOriginalDecisionData?: string;
|
|
1498
1518
|
/** ☆☆☆☆ Example: "X3F Setting Mode" */
|
|
1499
1519
|
AdjustmentMode?: string;
|
|
1500
|
-
/** ☆☆☆☆ ✔ Example: "Toy Camera" */
|
|
1501
|
-
AdvancedFilter?: string;
|
|
1502
1520
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1503
1521
|
AdvancedSceneType?: number;
|
|
1504
|
-
/** ☆☆☆☆ ✔ Example: "91 m" */
|
|
1505
|
-
Altitude?: string;
|
|
1506
1522
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1507
1523
|
AmbienceSelection?: string;
|
|
1508
1524
|
/** ☆☆☆☆ ✔ Example: "40 C" */
|
|
@@ -1517,6 +1533,8 @@ export interface MakerNotesTags {
|
|
|
1517
1533
|
ApertureRingUse?: string;
|
|
1518
1534
|
/** ☆☆☆☆ ✔ Example: 9.1 */
|
|
1519
1535
|
ApertureSetting?: number;
|
|
1536
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1537
|
+
ApplySettingsToLiveView?: string;
|
|
1520
1538
|
/** ☆☆☆☆ Example: 8 */
|
|
1521
1539
|
ApproximateFNumber?: number;
|
|
1522
1540
|
/** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
|
|
@@ -1569,8 +1587,6 @@ export interface MakerNotesTags {
|
|
|
1569
1587
|
AutoBracketOrder?: string;
|
|
1570
1588
|
/** ☆☆☆☆ ✔ Example: "Exposure" */
|
|
1571
1589
|
AutoBracketSet?: string;
|
|
1572
|
-
/** ★☆☆☆ ✔ Example: "On" */
|
|
1573
|
-
AutoBracketing?: string;
|
|
1574
1590
|
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1575
1591
|
AutoBracketingMode?: string;
|
|
1576
1592
|
/** ☆☆☆☆ ✔ Example: "AE & Flash" */
|
|
@@ -1593,8 +1609,6 @@ export interface MakerNotesTags {
|
|
|
1593
1609
|
AutoLightingOptimizer?: string;
|
|
1594
1610
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1595
1611
|
AutoPortraitFramed?: string;
|
|
1596
|
-
/** ★☆☆☆ ✔ Example: "Rotate 90 CW" */
|
|
1597
|
-
AutoRotate?: string;
|
|
1598
1612
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1599
1613
|
AuxiliaryLens?: string;
|
|
1600
1614
|
/** ☆☆☆☆ ✔ Example: 6.7 */
|
|
@@ -1613,8 +1627,6 @@ export interface MakerNotesTags {
|
|
|
1613
1627
|
BabyName?: string;
|
|
1614
1628
|
/** ☆☆☆☆ ✔ Example: "A0E3S7000218RC" */
|
|
1615
1629
|
Barcode?: string;
|
|
1616
|
-
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
1617
|
-
BarometerInfoVersion?: string;
|
|
1618
1630
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1619
1631
|
BaseExposureCompensation?: number;
|
|
1620
1632
|
/** ★★☆☆ ✔ Example: 800 */
|
|
@@ -1627,8 +1639,6 @@ export interface MakerNotesTags {
|
|
|
1627
1639
|
BatteryState?: string;
|
|
1628
1640
|
/** ☆☆☆☆ ✔ Example: "50.6 C" */
|
|
1629
1641
|
BatteryTemperature?: string;
|
|
1630
|
-
/** ☆☆☆☆ ✔ Example: "NB-13L" */
|
|
1631
|
-
BatteryType?: string;
|
|
1632
1642
|
/** ☆☆☆☆ Example: "8.52 V" */
|
|
1633
1643
|
BatteryVoltage?: string;
|
|
1634
1644
|
/** ☆☆☆☆ Example: "BGGR" */
|
|
@@ -1655,8 +1665,6 @@ export interface MakerNotesTags {
|
|
|
1655
1665
|
BlackPoint?: string;
|
|
1656
1666
|
/** ☆☆☆☆ Example: "n/a" */
|
|
1657
1667
|
BleachBypassToning?: string;
|
|
1658
|
-
/** ☆☆☆☆ Example: "5C" */
|
|
1659
|
-
BlueGain?: string;
|
|
1660
1668
|
/** ☆☆☆☆ Example: "Off; 0; 0; 0" */
|
|
1661
1669
|
BlurControl?: string;
|
|
1662
1670
|
/** ★☆☆☆ ✔ Example: "None" */
|
|
@@ -1697,8 +1705,6 @@ export interface MakerNotesTags {
|
|
|
1697
1705
|
BulbDuration?: number;
|
|
1698
1706
|
/** ☆☆☆☆ ✔ Example: "Unlimited" */
|
|
1699
1707
|
BurstMode?: string;
|
|
1700
|
-
/** ☆☆☆☆ Example: 3 */
|
|
1701
|
-
BurstShot?: number;
|
|
1702
1708
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1703
1709
|
BurstSpeed?: number;
|
|
1704
1710
|
/** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
|
|
@@ -1781,7 +1787,7 @@ export interface MakerNotesTags {
|
|
|
1781
1787
|
CmdDialsChangeMainSub?: string;
|
|
1782
1788
|
/** ☆☆☆☆ ✔ Example: "On (Image Review Excluded)" */
|
|
1783
1789
|
CmdDialsMenuAndPlayback?: string;
|
|
1784
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1790
|
+
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1785
1791
|
CmdDialsReverseRotation?: string;
|
|
1786
1792
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1787
1793
|
ColorAdjustment?: string;
|
|
@@ -1833,8 +1839,6 @@ export interface MakerNotesTags {
|
|
|
1833
1839
|
ColorMatrixNumber?: number;
|
|
1834
1840
|
/** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; M…green 0" */
|
|
1835
1841
|
ColorProfileSettings?: string;
|
|
1836
|
-
/** ★☆☆☆ ✔ Example: "sRGB" */
|
|
1837
|
-
ColorSpace?: string;
|
|
1838
1842
|
/** ☆☆☆☆ ✔ Example: 8059 */
|
|
1839
1843
|
ColorTempAsShot?: number;
|
|
1840
1844
|
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
@@ -1859,7 +1863,7 @@ export interface MakerNotesTags {
|
|
|
1859
1863
|
ColorTempTungsten?: number;
|
|
1860
1864
|
/** ★☆☆☆ ✔ Example: 9900 */
|
|
1861
1865
|
ColorTemperature?: number;
|
|
1862
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1866
|
+
/** ☆☆☆☆ ✔ Example: 7820 */
|
|
1863
1867
|
ColorTemperatureAuto?: number;
|
|
1864
1868
|
/** ☆☆☆☆ ✔ Example: "6300 K" */
|
|
1865
1869
|
ColorTemperatureCustom?: string;
|
|
@@ -1897,8 +1901,6 @@ export interface MakerNotesTags {
|
|
|
1897
1901
|
CommanderInternalFlash?: string;
|
|
1898
1902
|
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1899
1903
|
CommanderInternalManualOutput?: string;
|
|
1900
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1901
|
-
CommanderInternalTTLComp?: number;
|
|
1902
1904
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
1903
1905
|
CommanderInternalTTLCompBuiltin?: number;
|
|
1904
1906
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
@@ -1943,8 +1945,6 @@ export interface MakerNotesTags {
|
|
|
1943
1945
|
ContrastDetectAF?: string;
|
|
1944
1946
|
/** ☆☆☆☆ Example: "496 184 48 48" */
|
|
1945
1947
|
ContrastDetectAFArea?: string;
|
|
1946
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
1947
|
-
ContrastDetectAFInFocus?: string;
|
|
1948
1948
|
/** ☆☆☆☆ Example: 0 */
|
|
1949
1949
|
ContrastHighlight?: number;
|
|
1950
1950
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -2047,7 +2047,7 @@ export interface MakerNotesTags {
|
|
|
2047
2047
|
DateStampMode?: string;
|
|
2048
2048
|
/** ☆☆☆☆ Example: "Off" */
|
|
2049
2049
|
DateTimeStamp?: string;
|
|
2050
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2050
|
+
/** ☆☆☆☆ ✔ Example: */
|
|
2051
2051
|
DateTimeUTC?: ExifDateTime | string;
|
|
2052
2052
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2053
2053
|
DaylightSavings?: string;
|
|
@@ -2063,8 +2063,6 @@ export interface MakerNotesTags {
|
|
|
2063
2063
|
DestinationDST?: string;
|
|
2064
2064
|
/** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
|
|
2065
2065
|
DeviceType?: string;
|
|
2066
|
-
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2067
|
-
DialDirectionTvAv?: string;
|
|
2068
2066
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2069
2067
|
DiffractionCorrection?: string;
|
|
2070
2068
|
/** ☆☆☆☆ Example: "Vivid" */
|
|
@@ -2075,14 +2073,14 @@ export interface MakerNotesTags {
|
|
|
2075
2073
|
DigitalICE?: string;
|
|
2076
2074
|
/** ☆☆☆☆ Example: "On" */
|
|
2077
2075
|
DigitalZoomOn?: string;
|
|
2076
|
+
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2077
|
+
DirectoryNumber?: number;
|
|
2078
2078
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2079
2079
|
DisplayAllAFPoints?: string;
|
|
2080
2080
|
/** ☆☆☆☆ ✔ Example: 9.5 */
|
|
2081
2081
|
DisplayAperture?: number;
|
|
2082
2082
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2083
2083
|
DistortionControl?: string;
|
|
2084
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
2085
|
-
DistortionCorrParamsNumber?: string;
|
|
2086
2084
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2087
2085
|
DistortionCorrParamsPresent?: string;
|
|
2088
2086
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2101,6 +2099,8 @@ export interface MakerNotesTags {
|
|
|
2101
2099
|
DynamicAreaAFDisplay?: string;
|
|
2102
2100
|
/** ☆☆☆☆ ✔ Example: "Wide" */
|
|
2103
2101
|
DynamicRange?: string;
|
|
2102
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2103
|
+
DynamicRangeBoost?: string;
|
|
2104
2104
|
/** ☆☆☆☆ ✔ Example: "On; Enabled; 0; 0" */
|
|
2105
2105
|
DynamicRangeExpansion?: string;
|
|
2106
2106
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
@@ -2117,8 +2117,6 @@ export interface MakerNotesTags {
|
|
|
2117
2117
|
DynamicRangeSetting?: string;
|
|
2118
2118
|
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
2119
2119
|
ETTLII?: string;
|
|
2120
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2121
|
-
EVStepSize?: string;
|
|
2122
2120
|
/** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
|
|
2123
2121
|
EVSteps?: string;
|
|
2124
2122
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
@@ -2193,14 +2191,16 @@ export interface MakerNotesTags {
|
|
|
2193
2191
|
ExposureStandardAdjustment?: number;
|
|
2194
2192
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2195
2193
|
ExposureTuning?: number;
|
|
2196
|
-
/** ★☆☆☆ ✔ Example: "Good" */
|
|
2197
|
-
ExposureWarning?: string;
|
|
2198
2194
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2199
2195
|
ExtendedShutterSpeeds?: string;
|
|
2200
2196
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2201
2197
|
ExtendedWBDetect?: string;
|
|
2202
|
-
/** ☆☆☆☆
|
|
2203
|
-
|
|
2198
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2199
|
+
Extender?: string;
|
|
2200
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2201
|
+
ExtenderFirmwareVersion?: number;
|
|
2202
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
2203
|
+
ExtenderSerialNumber?: string;
|
|
2204
2204
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2205
2205
|
ExternalFlash?: string;
|
|
2206
2206
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2255,8 +2255,6 @@ export interface MakerNotesTags {
|
|
|
2255
2255
|
FaceInfoOffset?: number;
|
|
2256
2256
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
2257
2257
|
FaceName?: string;
|
|
2258
|
-
/** ☆☆☆☆ Example: "67 23" */
|
|
2259
|
-
FacePosition?: string;
|
|
2260
2258
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
2261
2259
|
FacePositions?: string;
|
|
2262
2260
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
@@ -2269,6 +2267,8 @@ export interface MakerNotesTags {
|
|
|
2269
2267
|
Fade?: number;
|
|
2270
2268
|
/** ☆☆☆☆ ✔ Example: 9984 */
|
|
2271
2269
|
FileIndex?: number;
|
|
2270
|
+
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2271
|
+
FileInfoVersion?: string;
|
|
2272
2272
|
/** ★★☆☆ ✔ Example: "986-8698" */
|
|
2273
2273
|
FileNumber?: string;
|
|
2274
2274
|
/** ☆☆☆☆ Example: "Unknown (65537)" */
|
|
@@ -2379,7 +2379,9 @@ export interface MakerNotesTags {
|
|
|
2379
2379
|
FlashGroupCCompensation?: number;
|
|
2380
2380
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2381
2381
|
FlashGroupCControlMode?: string;
|
|
2382
|
-
/**
|
|
2382
|
+
/** ★☆☆☆ ✔ Example: 9 */
|
|
2383
|
+
FlashGuideNumber?: number;
|
|
2384
|
+
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
2383
2385
|
FlashInfoVersion?: string;
|
|
2384
2386
|
/** ☆☆☆☆ ✔ Example: "n/a (x4)" */
|
|
2385
2387
|
FlashIntensity?: string;
|
|
@@ -2397,8 +2399,6 @@ export interface MakerNotesTags {
|
|
|
2397
2399
|
FlashModel?: string;
|
|
2398
2400
|
/** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2399
2401
|
FlashOptions?: string;
|
|
2400
|
-
/** ★☆☆☆ ✔ Example: 94 */
|
|
2401
|
-
FlashOutput?: number;
|
|
2402
2402
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2403
2403
|
FlashRemoteControl?: string;
|
|
2404
2404
|
/** ☆☆☆☆ ✔ Example: "01114671" */
|
|
@@ -2423,14 +2423,18 @@ export interface MakerNotesTags {
|
|
|
2423
2423
|
FlashThreshold?: number;
|
|
2424
2424
|
/** ☆☆☆☆ ✔ Example: "Yes (flash required but disabled)" */
|
|
2425
2425
|
FlashWarning?: string;
|
|
2426
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2427
|
-
|
|
2426
|
+
/** ☆☆☆☆ ✔ Example: "Left to Right" */
|
|
2427
|
+
FlickAdvanceDirection?: string;
|
|
2428
2428
|
/** ☆☆☆☆ Example: "On" */
|
|
2429
2429
|
FlickerReduce?: string;
|
|
2430
2430
|
/** ☆☆☆☆ ✔ Example: "Off (0x3223)" */
|
|
2431
2431
|
FlickerReduction?: string;
|
|
2432
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2432
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2433
2433
|
FlickerReductionShooting?: string;
|
|
2434
|
+
/** ☆☆☆☆ Example: "1321,81,37" */
|
|
2435
|
+
FlightDegree?: string;
|
|
2436
|
+
/** ☆☆☆☆ Example: "9,0,0" */
|
|
2437
|
+
FlightSpeed?: string;
|
|
2434
2438
|
/** ☆☆☆☆ ✔ Example: "70.0 mm" */
|
|
2435
2439
|
FocalLengthTeleZoom?: string;
|
|
2436
2440
|
/** ☆☆☆☆ ✔ Example: "640 428" */
|
|
@@ -2439,12 +2443,6 @@ export interface MakerNotesTags {
|
|
|
2439
2443
|
FocalPlaneAFPointsUsed?: number;
|
|
2440
2444
|
/** ★☆☆☆ ✔ Example: "9.45 mm" */
|
|
2441
2445
|
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
2446
|
/** ★★☆☆ ✔ Example: "32/mm" */
|
|
2449
2447
|
FocalUnits?: string;
|
|
2450
2448
|
/** ☆☆☆☆ Example: "Wide Focus (normal)" */
|
|
@@ -2467,8 +2465,6 @@ export interface MakerNotesTags {
|
|
|
2467
2465
|
FocusHoldButton?: string;
|
|
2468
2466
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2469
2467
|
FocusInfoVersion?: string;
|
|
2470
|
-
/** ☆☆☆☆ ✔ Example: "9504 6336 4306 4356" */
|
|
2471
|
-
FocusLocation?: string;
|
|
2472
2468
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2473
2469
|
FocusLocked?: string;
|
|
2474
2470
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
@@ -2481,6 +2477,8 @@ export interface MakerNotesTags {
|
|
|
2481
2477
|
FocusPeakingLevel?: string;
|
|
2482
2478
|
/** ★☆☆☆ ✔ Example: "972 1296" */
|
|
2483
2479
|
FocusPixel?: string;
|
|
2480
|
+
/** ☆☆☆☆ Example: "Normal" */
|
|
2481
|
+
FocusPointSelectionSpeed?: string;
|
|
2484
2482
|
/** ☆☆☆☆ ✔ Example: "Wrap" */
|
|
2485
2483
|
FocusPointWrap?: string;
|
|
2486
2484
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
@@ -2503,8 +2501,6 @@ export interface MakerNotesTags {
|
|
|
2503
2501
|
FocusStepNear?: number;
|
|
2504
2502
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2505
2503
|
FocusTrackingLockOn?: string;
|
|
2506
|
-
/** ★☆☆☆ ✔ Example: "Out of focus" */
|
|
2507
|
-
FocusWarning?: string;
|
|
2508
2504
|
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2509
2505
|
FocusingScreen?: string;
|
|
2510
2506
|
/** ☆☆☆☆ ✔ Example: 373 */
|
|
@@ -2513,8 +2509,8 @@ export interface MakerNotesTags {
|
|
|
2513
2509
|
FramingGridDisplay?: string;
|
|
2514
2510
|
/** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
|
|
2515
2511
|
FreeBytes?: string;
|
|
2516
|
-
/**
|
|
2517
|
-
|
|
2512
|
+
/** ☆☆☆☆ ✔ Example: "X100V_0100" */
|
|
2513
|
+
FujiModel?: string;
|
|
2518
2514
|
/** ☆☆☆☆ ✔ Example: "9504x6336" */
|
|
2519
2515
|
FullImageSize?: string;
|
|
2520
2516
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -2523,7 +2519,7 @@ export interface MakerNotesTags {
|
|
|
2523
2519
|
Func1Button?: string;
|
|
2524
2520
|
/** ☆☆☆☆ ✔ Example: "Choose Image Area (DX/1.3x)" */
|
|
2525
2521
|
Func1ButtonPlusDials?: string;
|
|
2526
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2522
|
+
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
2527
2523
|
Func2Button?: string;
|
|
2528
2524
|
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
2529
2525
|
FuncButton?: string;
|
|
@@ -2539,10 +2535,14 @@ export interface MakerNotesTags {
|
|
|
2539
2535
|
GEModel?: string;
|
|
2540
2536
|
/** ☆☆☆☆ ✔ Example: 256 */
|
|
2541
2537
|
GainBase?: number;
|
|
2538
|
+
/** ☆☆☆☆ Example: "1279,-900,0" */
|
|
2539
|
+
GimbalDegree?: string;
|
|
2542
2540
|
/** ☆☆☆☆ ✔ Example: "n/a; User-Selected" */
|
|
2543
2541
|
Gradation?: string;
|
|
2544
2542
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2545
|
-
|
|
2543
|
+
GrainEffectRoughness?: string;
|
|
2544
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2545
|
+
GrainEffectSize?: string;
|
|
2546
2546
|
/** ☆☆☆☆ Example: "2E" */
|
|
2547
2547
|
GreenGain?: string;
|
|
2548
2548
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2555,16 +2555,14 @@ export interface MakerNotesTags {
|
|
|
2555
2555
|
GripBatteryState?: string;
|
|
2556
2556
|
/** ☆☆☆☆ ✔ Example: "Squares" */
|
|
2557
2557
|
GroupAreaAFIllumination?: string;
|
|
2558
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
2559
|
-
HDMIBitDepth?: string;
|
|
2560
2558
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2561
2559
|
HDMIExternalRecorder?: string;
|
|
2562
|
-
/**
|
|
2563
|
-
|
|
2560
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2561
|
+
HDMIOutputRange?: string;
|
|
2562
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2563
|
+
HDMIOutputResolution?: string;
|
|
2564
2564
|
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
2565
2565
|
HDREffect?: string;
|
|
2566
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
2567
|
-
HDRImageType?: string;
|
|
2568
2566
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
2569
2567
|
HDRInfoVersion?: string;
|
|
2570
2568
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2589,6 +2587,8 @@ export interface MakerNotesTags {
|
|
|
2589
2587
|
HighlightWarning?: string;
|
|
2590
2588
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2591
2589
|
Highlights?: number;
|
|
2590
|
+
/** ☆☆☆☆ Example: "disable, " */
|
|
2591
|
+
Histogram?: string;
|
|
2592
2592
|
/** ☆☆☆☆ ✔ Example: "ndon" */
|
|
2593
2593
|
HometownCity?: string;
|
|
2594
2594
|
/** ☆☆☆☆ Example: "NYC " */
|
|
@@ -2599,17 +2599,17 @@ export interface MakerNotesTags {
|
|
|
2599
2599
|
HostSoftwareExportVersion?: number;
|
|
2600
2600
|
/** ☆☆☆☆ Example: "Unknown (4 4)" */
|
|
2601
2601
|
HostSoftwareRendering?: string;
|
|
2602
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2603
|
-
Hue?: string;
|
|
2604
2602
|
/** ☆☆☆☆ Example: "Off" */
|
|
2605
2603
|
HueAdjust?: string;
|
|
2606
2604
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2607
2605
|
HueAdjustment?: string;
|
|
2606
|
+
/** ☆☆☆☆ Example: "(Binary data 8 bytes, use -b option to extract)" */
|
|
2607
|
+
HyperlapsDebugInfo?: string;
|
|
2608
2608
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2609
2609
|
ISO2?: number;
|
|
2610
2610
|
/** ☆☆☆☆ Example: "On" */
|
|
2611
2611
|
ISOAuto?: string;
|
|
2612
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2612
|
+
/** ☆☆☆☆ ✔ Example: "Same As Without Flash" */
|
|
2613
2613
|
ISOAutoFlashLimit?: string;
|
|
2614
2614
|
/** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
|
|
2615
2615
|
ISOAutoHiLimit?: string;
|
|
@@ -2637,8 +2637,6 @@ export interface MakerNotesTags {
|
|
|
2637
2637
|
ISOSetting?: number;
|
|
2638
2638
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2639
2639
|
ISOSpeedExpansion?: string;
|
|
2640
|
-
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
2641
|
-
ISOSpeedIncrements?: string;
|
|
2642
2640
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2643
2641
|
ISOStepSize?: string;
|
|
2644
2642
|
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
@@ -2733,8 +2731,6 @@ export interface MakerNotesTags {
|
|
|
2733
2731
|
IntervalMode?: string;
|
|
2734
2732
|
/** ☆☆☆☆ Example: 65797 */
|
|
2735
2733
|
IntervalNumber?: number;
|
|
2736
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
2737
|
-
IntervalShooting?: string;
|
|
2738
2734
|
/** ☆☆☆☆ ✔ Example: "n/a (Movie)" */
|
|
2739
2735
|
JPEGQuality?: string;
|
|
2740
2736
|
/** ☆☆☆☆ ✔ Example: "Optimal Quality" */
|
|
@@ -2763,13 +2759,17 @@ export interface MakerNotesTags {
|
|
|
2763
2759
|
LCDIlluminationDuringBulb?: string;
|
|
2764
2760
|
/** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
|
|
2765
2761
|
LCDPanels?: string;
|
|
2762
|
+
/** ☆☆☆☆ ✔ Example: "English" */
|
|
2763
|
+
Language?: string;
|
|
2766
2764
|
/** ☆☆☆☆ Example: 92 */
|
|
2767
2765
|
LastFileNumber?: number;
|
|
2768
2766
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2769
2767
|
LateralChromaticAberration?: string;
|
|
2770
2768
|
/** ☆☆☆☆ Example: "4.0 to 22" */
|
|
2771
2769
|
LensApertureRange?: string;
|
|
2772
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2770
|
+
/** ☆☆☆☆ ✔ Example: "Aperture" */
|
|
2771
|
+
LensControlRing?: string;
|
|
2772
|
+
/** ☆☆☆☆ ✔ Example: "0802" */
|
|
2773
2773
|
LensDataVersion?: string;
|
|
2774
2774
|
/** ☆☆☆☆ ✔ Example: "97 154 172 70 104 114" */
|
|
2775
2775
|
LensDistortionParams?: string;
|
|
@@ -2791,8 +2791,8 @@ export interface MakerNotesTags {
|
|
|
2791
2791
|
LensFocusFunctionButtons?: string;
|
|
2792
2792
|
/** ☆☆☆☆ ✔ Example: "Unknown (72)" */
|
|
2793
2793
|
LensFormat?: string;
|
|
2794
|
-
/** ☆☆☆☆ ✔ Example: "AF
|
|
2795
|
-
|
|
2794
|
+
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
2795
|
+
LensFunc1Button?: string;
|
|
2796
2796
|
/** ☆☆☆☆ ✔ Example: 93 */
|
|
2797
2797
|
LensIDNumber?: number;
|
|
2798
2798
|
/** ☆☆☆☆ Example: "4 to 4" */
|
|
@@ -2801,6 +2801,8 @@ export interface MakerNotesTags {
|
|
|
2801
2801
|
LensModulationOptimizer?: string;
|
|
2802
2802
|
/** ☆☆☆☆ ✔ Example: "Unknown (74)" */
|
|
2803
2803
|
LensMount?: string;
|
|
2804
|
+
/** ☆☆☆☆ ✔ Example: "0xe253" */
|
|
2805
|
+
LensProperties?: string;
|
|
2804
2806
|
/** ☆☆☆☆ Example: "Xcenter=1456 Ycenter=1068 GainMax=16" */
|
|
2805
2807
|
LensShading?: string;
|
|
2806
2808
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2839,6 +2841,8 @@ export interface MakerNotesTags {
|
|
|
2839
2841
|
LinearityUpperMargin?: number;
|
|
2840
2842
|
/** ☆☆☆☆ Example: "Off" */
|
|
2841
2843
|
LinkAEToAFPoint?: string;
|
|
2844
|
+
/** ☆☆☆☆ ✔ Example: 8192 */
|
|
2845
|
+
LivePhotoVideoIndex?: number;
|
|
2842
2846
|
/** ☆☆☆☆ ✔ Example: "Wide Area" */
|
|
2843
2847
|
LiveViewAF?: string;
|
|
2844
2848
|
/** ☆☆☆☆ ✔ Example: "Face-Priority" */
|
|
@@ -2941,10 +2945,14 @@ export interface MakerNotesTags {
|
|
|
2941
2945
|
MeasuredRGGB?: string;
|
|
2942
2946
|
/** ☆☆☆☆ ✔ Example: "6653 9252 9606 4468" */
|
|
2943
2947
|
MeasuredRGGBData?: string;
|
|
2944
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2948
|
+
/** ☆☆☆☆ ✔ Example: 7 */
|
|
2945
2949
|
MechanicalShutterCount?: number;
|
|
2950
|
+
/** ☆☆☆☆ ✔ Example: "FFCBAC24-E547-4BBC-AF47-38B1A3D845E3" */
|
|
2951
|
+
MediaGroupUUID?: string;
|
|
2946
2952
|
/** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
|
|
2947
2953
|
MemoryCardConfiguration?: string;
|
|
2954
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
2955
|
+
MemoryCardNumber?: number;
|
|
2948
2956
|
/** ☆☆☆☆ ✔ Example: "Previous (top if power off)" */
|
|
2949
2957
|
MenuButtonDisplayPosition?: string;
|
|
2950
2958
|
/** ☆☆☆☆ ✔ Example: "Top" */
|
|
@@ -2957,6 +2965,8 @@ export interface MakerNotesTags {
|
|
|
2957
2965
|
MeterMode?: string;
|
|
2958
2966
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
2959
2967
|
Metering?: string;
|
|
2968
|
+
/** ★★☆☆ ✔ Example: "Unknown (52990)" */
|
|
2969
|
+
MeteringMode?: string;
|
|
2960
2970
|
/** ☆☆☆☆ ✔ Example: "Within Range" */
|
|
2961
2971
|
MeteringOffScaleIndicator?: string;
|
|
2962
2972
|
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
@@ -2969,6 +2979,8 @@ export interface MakerNotesTags {
|
|
|
2969
2979
|
MinFocalLength?: string;
|
|
2970
2980
|
/** ☆☆☆☆ ✔ Example: "2.0 m" */
|
|
2971
2981
|
MinFocusDistance?: string;
|
|
2982
|
+
/** ☆☆☆☆ ✔ Example: 200 */
|
|
2983
|
+
MinimumISO?: number;
|
|
2972
2984
|
/** ☆☆☆☆ Example: 2004-07-05 */
|
|
2973
2985
|
MinoltaDate?: ExifDate | string;
|
|
2974
2986
|
/** ☆☆☆☆ Example: "Unknown (768)" */
|
|
@@ -3035,7 +3047,7 @@ export interface MakerNotesTags {
|
|
|
3035
3047
|
MoonPhase?: string;
|
|
3036
3048
|
/** ☆☆☆☆ Example: 100 */
|
|
3037
3049
|
MotionSensitivity?: number;
|
|
3038
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3050
|
+
/** ☆☆☆☆ ✔ Example: "Single" */
|
|
3039
3051
|
MovieAFAreaMode?: string;
|
|
3040
3052
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
3041
3053
|
MovieAFTrackingSensitivity?: string;
|
|
@@ -3071,6 +3083,8 @@ export interface MakerNotesTags {
|
|
|
3071
3083
|
MovieWhiteBalanceSameAsPhoto?: string;
|
|
3072
3084
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3073
3085
|
MultiControllerWhileMetering?: string;
|
|
3086
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3087
|
+
MultiExposure?: string;
|
|
3074
3088
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3075
3089
|
MultiExposureAutoGain?: string;
|
|
3076
3090
|
/** ☆☆☆☆ ✔ Example: "Bright (comparative)" */
|
|
@@ -3129,8 +3143,8 @@ export interface MakerNotesTags {
|
|
|
3129
3143
|
NumFaceElements?: number;
|
|
3130
3144
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3131
3145
|
NumFacePositions?: number;
|
|
3132
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3133
|
-
|
|
3146
|
+
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3147
|
+
NumberOffsets?: number;
|
|
3134
3148
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
|
|
3135
3149
|
OKButton?: string;
|
|
3136
3150
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
@@ -3231,7 +3245,7 @@ export interface MakerNotesTags {
|
|
|
3231
3245
|
PictureControlName?: string;
|
|
3232
3246
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3233
3247
|
PictureControlQuickAdjust?: string;
|
|
3234
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3248
|
+
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
3235
3249
|
PictureControlVersion?: string;
|
|
3236
3250
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3237
3251
|
PictureEffect?: string;
|
|
@@ -3293,8 +3307,6 @@ export interface MakerNotesTags {
|
|
|
3293
3307
|
PreviewImageBorders?: string;
|
|
3294
3308
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3295
3309
|
PreviewImageValid?: string;
|
|
3296
|
-
/** ★☆☆☆ ✔ Example: 8 */
|
|
3297
|
-
PrimaryAFPoint?: number;
|
|
3298
3310
|
/** ☆☆☆☆ ✔ Example: "XQD Card" */
|
|
3299
3311
|
PrimarySlot?: string;
|
|
3300
3312
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
@@ -3403,8 +3415,6 @@ export interface MakerNotesTags {
|
|
|
3403
3415
|
RecordingMode?: string;
|
|
3404
3416
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3405
3417
|
RedEyeRemoval?: string;
|
|
3406
|
-
/** ☆☆☆☆ Example: "8D" */
|
|
3407
|
-
RedGain?: string;
|
|
3408
3418
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3409
3419
|
ReleaseButtonToUseDial?: string;
|
|
3410
3420
|
/** ☆☆☆☆ ✔ Example: "Unknown (7)" */
|
|
@@ -3429,8 +3439,6 @@ export interface MakerNotesTags {
|
|
|
3429
3439
|
RetouchHistory?: string;
|
|
3430
3440
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
3431
3441
|
RetouchInfoVersion?: string;
|
|
3432
|
-
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3433
|
-
RetractLensOnPowerOff?: string;
|
|
3434
3442
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
3435
3443
|
ReverseExposureCompDial?: string;
|
|
3436
3444
|
/** ☆☆☆☆ ✔ Example: "Not Reversed" */
|
|
@@ -3527,6 +3535,8 @@ export interface MakerNotesTags {
|
|
|
3527
3535
|
SensitivityAdjust?: number;
|
|
3528
3536
|
/** ☆☆☆☆ ✔ Example: "As EV Steps" */
|
|
3529
3537
|
SensitivitySteps?: string;
|
|
3538
|
+
/** ☆☆☆☆ Example: "front-main-mot_s5k5e9" */
|
|
3539
|
+
Sensor?: string;
|
|
3530
3540
|
/** ☆☆☆☆ Example: 14 */
|
|
3531
3541
|
SensorBitDepth?: number;
|
|
3532
3542
|
/** ☆☆☆☆ ✔ Example: 4214 */
|
|
@@ -3539,6 +3549,8 @@ export interface MakerNotesTags {
|
|
|
3539
3549
|
SensorFullHeight?: number;
|
|
3540
3550
|
/** ☆☆☆☆ Example: 3288 */
|
|
3541
3551
|
SensorFullWidth?: number;
|
|
3552
|
+
/** ☆☆☆☆ Example: "1TCTJ8803BJ07G" */
|
|
3553
|
+
SensorID?: string;
|
|
3542
3554
|
/** ☆☆☆☆ ✔ Example: "9.4 x 9.4 um" */
|
|
3543
3555
|
SensorPixelSize?: string;
|
|
3544
3556
|
/** ☆☆☆☆ ✔ Example: 4370 */
|
|
@@ -3595,7 +3607,7 @@ export interface MakerNotesTags {
|
|
|
3595
3607
|
SharpnessTable?: string;
|
|
3596
3608
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
3597
3609
|
ShootingInfoDisplay?: string;
|
|
3598
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3610
|
+
/** ☆☆☆☆ ✔ Example: "4 s" */
|
|
3599
3611
|
ShootingInfoMonitorOffTime?: string;
|
|
3600
3612
|
/** ☆☆☆☆ ✔ Example: "Continuous" */
|
|
3601
3613
|
ShootingModeSetting?: string;
|
|
@@ -3603,14 +3615,12 @@ export interface MakerNotesTags {
|
|
|
3603
3615
|
ShortOwnerName?: string;
|
|
3604
3616
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3605
3617
|
ShortReleaseTimeLag?: string;
|
|
3606
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3618
|
+
/** ☆☆☆☆ ✔ Example: "0807" */
|
|
3607
3619
|
ShotInfoVersion?: string;
|
|
3608
3620
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
3609
3621
|
ShotNumberSincePowerUp?: number;
|
|
3610
3622
|
/** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
|
|
3611
3623
|
ShutterAELButton?: string;
|
|
3612
|
-
/** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
|
|
3613
|
-
ShutterButtonAFOnButton?: string;
|
|
3614
3624
|
/** ☆☆☆☆ ✔ Example: 98 */
|
|
3615
3625
|
ShutterCount?: number;
|
|
3616
3626
|
/** ☆☆☆☆ Example: */
|
|
@@ -3637,8 +3647,6 @@ export interface MakerNotesTags {
|
|
|
3637
3647
|
ShutterSpeedSetting?: string;
|
|
3638
3648
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3639
3649
|
ShutterType?: string;
|
|
3640
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3641
|
-
SilentPhotography?: string;
|
|
3642
3650
|
/** ☆☆☆☆ ✔ Example: "Low" */
|
|
3643
3651
|
SingleFrameBracketing?: string;
|
|
3644
3652
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -3647,8 +3655,6 @@ export interface MakerNotesTags {
|
|
|
3647
3655
|
SlaveFlashMeteringSegments?: string;
|
|
3648
3656
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3649
3657
|
SlowShutter?: string;
|
|
3650
|
-
/** ★☆☆☆ ✔ Example: "On" */
|
|
3651
|
-
SlowSync?: string;
|
|
3652
3658
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3653
3659
|
SmartAlbumColor?: string;
|
|
3654
3660
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3657,7 +3663,7 @@ export interface MakerNotesTags {
|
|
|
3657
3663
|
SmileShutterMode?: string;
|
|
3658
3664
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3659
3665
|
SoftSkinEffect?: string;
|
|
3660
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3666
|
+
/** ☆☆☆☆ ✔ Example: 2022-10-05T11:42:07.000-07:00 */
|
|
3661
3667
|
SonyDateTime?: ExifDateTime | string;
|
|
3662
3668
|
/** ☆☆☆☆ ✔ Example: "1/82" */
|
|
3663
3669
|
SonyExposureTime?: string;
|
|
@@ -3695,8 +3701,6 @@ export interface MakerNotesTags {
|
|
|
3695
3701
|
SpecialEffectMode?: string;
|
|
3696
3702
|
/** ☆☆☆☆ Example: "Unknown (15)" */
|
|
3697
3703
|
SpecialEffectSetting?: string;
|
|
3698
|
-
/** ★☆☆☆ ✔ Example: "Unknown (962), Sequence: 0, Panorama: (none)" */
|
|
3699
|
-
SpecialMode?: string;
|
|
3700
3704
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3701
3705
|
SpecularWhiteLevel?: number;
|
|
3702
3706
|
/** ☆☆☆☆ Example: "+0.10" */
|
|
@@ -3713,6 +3717,8 @@ export interface MakerNotesTags {
|
|
|
3713
3717
|
SpotMeterLinkToAFPoint?: string;
|
|
3714
3718
|
/** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
|
|
3715
3719
|
StackedImage?: string;
|
|
3720
|
+
/** ☆☆☆☆ ✔ Example: "30 s" */
|
|
3721
|
+
StandbyMonitorOffTime?: string;
|
|
3716
3722
|
/** ☆☆☆☆ ✔ Example: "6 s" */
|
|
3717
3723
|
StandbyTimer?: string;
|
|
3718
3724
|
/** ☆☆☆☆ ✔ Example: "Default (from LV)" */
|
|
@@ -3729,9 +3735,7 @@ export interface MakerNotesTags {
|
|
|
3729
3735
|
SubSelectorAssignment?: string;
|
|
3730
3736
|
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
3731
3737
|
SubSelectorCenter?: string;
|
|
3732
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3733
|
-
SubSelectorPlusDials?: string;
|
|
3734
|
-
/** ☆☆☆☆ ✔ Example: "Middle" */
|
|
3738
|
+
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
3735
3739
|
SubjectMotion?: string;
|
|
3736
3740
|
/** ☆☆☆☆ Example: "None" */
|
|
3737
3741
|
SubjectProgram?: string;
|
|
@@ -3789,7 +3793,7 @@ export interface MakerNotesTags {
|
|
|
3789
3793
|
TimeLapseShotNumber?: number;
|
|
3790
3794
|
/** ☆☆☆☆ ✔ Example: 01:48:53.630 */
|
|
3791
3795
|
TimeSincePowerOn?: ExifTime | string;
|
|
3792
|
-
/** ☆☆☆☆ ✔ Example: 2022-
|
|
3796
|
+
/** ☆☆☆☆ ✔ Example: 2022-03-15T09:52:18.000Z */
|
|
3793
3797
|
TimeStamp?: ExifDateTime | string;
|
|
3794
3798
|
/** ☆☆☆☆ ✔ Example: "-09:00" */
|
|
3795
3799
|
TimeZone?: string;
|
|
@@ -3799,24 +3803,16 @@ export interface MakerNotesTags {
|
|
|
3799
3803
|
TimeZoneCode?: number;
|
|
3800
3804
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3801
3805
|
TimeZoneInfo?: number;
|
|
3802
|
-
/** ☆☆☆☆ ✔ Example: "Self-timer" */
|
|
3803
|
-
TimerFunctionButton?: string;
|
|
3804
3806
|
/** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
|
|
3805
3807
|
TimerLength?: string;
|
|
3806
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3807
|
-
TimerRecording?: string;
|
|
3808
3808
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
3809
3809
|
Title?: string;
|
|
3810
|
-
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3811
|
-
ToneComp?: string;
|
|
3812
3810
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
3813
3811
|
ToneCurve?: string;
|
|
3814
3812
|
/** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
|
|
3815
3813
|
ToneCurveMatching?: string;
|
|
3816
3814
|
/** ☆☆☆☆ ✔ Example: "(Binary data 1679 bytes, use -b option to extract)" */
|
|
3817
3815
|
ToneCurveTable?: string;
|
|
3818
|
-
/** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
|
|
3819
|
-
ToneLevel?: string;
|
|
3820
3816
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3821
3817
|
ToningEffect?: string;
|
|
3822
3818
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -3825,8 +3821,6 @@ export interface MakerNotesTags {
|
|
|
3825
3821
|
ToningSaturation?: string;
|
|
3826
3822
|
/** ☆☆☆☆ Example: 5 */
|
|
3827
3823
|
TotalZoom?: number;
|
|
3828
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3829
|
-
TouchAE?: string;
|
|
3830
3824
|
/** ☆☆☆☆ Example: "Off" */
|
|
3831
3825
|
Transform?: string;
|
|
3832
3826
|
/** ☆☆☆☆ ✔ Example: "Normal (set center AF point)" */
|
|
@@ -3861,18 +3855,20 @@ export interface MakerNotesTags {
|
|
|
3861
3855
|
VRMode?: string;
|
|
3862
3856
|
/** ☆☆☆☆ ✔ Example: "12 0" */
|
|
3863
3857
|
ValidBits?: string;
|
|
3858
|
+
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
3859
|
+
VariProgram?: string;
|
|
3864
3860
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3865
3861
|
VariableLowPassFilter?: string;
|
|
3866
3862
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
|
|
3867
3863
|
VerticalAFOnButton?: string;
|
|
3868
|
-
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3869
|
-
VerticalFuncButton?: string;
|
|
3870
3864
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3871
3865
|
VerticalFuncButtonPlusDials?: string;
|
|
3872
3866
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On" */
|
|
3873
3867
|
VerticalMovieAFOnButton?: string;
|
|
3874
3868
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3875
3869
|
VerticalMovieFuncButton?: string;
|
|
3870
|
+
/** ☆☆☆☆ ✔ Example: "Same as MultiSelector" */
|
|
3871
|
+
VerticalMultiSelector?: string;
|
|
3876
3872
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3877
3873
|
VibrationReduction?: string;
|
|
3878
3874
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3895,7 +3891,7 @@ export interface MakerNotesTags {
|
|
|
3895
3891
|
VignetteControl?: string;
|
|
3896
3892
|
/** ☆☆☆☆ Example: "Off" */
|
|
3897
3893
|
Vignetting?: string;
|
|
3898
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3894
|
+
/** ☆☆☆☆ ✔ Example: 97 */
|
|
3899
3895
|
VignettingCorrVersion?: number;
|
|
3900
3896
|
/** ☆☆☆☆ Example: "Off" */
|
|
3901
3897
|
VoiceMemo?: string;
|
|
@@ -3919,8 +3915,6 @@ export interface MakerNotesTags {
|
|
|
3919
3915
|
WBShiftCreativeControl?: number;
|
|
3920
3916
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3921
3917
|
WBShiftGM?: number;
|
|
3922
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3923
|
-
WBShiftIntelligentAuto?: number;
|
|
3924
3918
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3925
3919
|
WhiteBalanceAutoAdjustment?: string;
|
|
3926
3920
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -3931,8 +3925,6 @@ export interface MakerNotesTags {
|
|
|
3931
3925
|
WhiteBalanceBracket?: string;
|
|
3932
3926
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3933
3927
|
WhiteBalanceBracketing?: string;
|
|
3934
|
-
/** ★☆☆☆ ✔ Example: 3 */
|
|
3935
|
-
WhiteBalanceFineTune?: number;
|
|
3936
3928
|
/** ☆☆☆☆ ✔ 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
3929
|
WhiteBalanceMatching?: string;
|
|
3938
3930
|
/** ☆☆☆☆ ✔ Example: "User-Selected" */
|
|
@@ -3959,11 +3951,13 @@ export interface MakerNotesTags {
|
|
|
3959
3951
|
WorldTimeLocation?: string;
|
|
3960
3952
|
/** ☆☆☆☆ Example: 0.2 */
|
|
3961
3953
|
X3FillLight?: number;
|
|
3954
|
+
/** ☆☆☆☆ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
3955
|
+
Xidiri?: string;
|
|
3962
3956
|
/** ☆☆☆☆ ✔ Example: "Unknown (512)" */
|
|
3963
3957
|
YCbCrPositioning?: string;
|
|
3964
3958
|
/** ☆☆☆☆ Example: -96.7 */
|
|
3965
3959
|
Yaw?: number;
|
|
3966
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3960
|
+
/** ☆☆☆☆ ✔ Example: 93.8 */
|
|
3967
3961
|
YawAngle?: number;
|
|
3968
3962
|
/** ☆☆☆☆ Example: 2006 */
|
|
3969
3963
|
YearCreated?: number;
|
|
@@ -4005,7 +3999,7 @@ export interface XMPTags {
|
|
|
4005
3999
|
AsrClimaxScene?: string;
|
|
4006
4000
|
/** ☆☆☆☆ Example: 0 */
|
|
4007
4001
|
AsrIsMacroRange?: number;
|
|
4008
|
-
/** ☆☆☆☆ Example: "
|
|
4002
|
+
/** ☆☆☆☆ Example: "Stable" */
|
|
4009
4003
|
AsrSceneCondition?: string;
|
|
4010
4004
|
/** ☆☆☆☆ Example: "NightPortrait" */
|
|
4011
4005
|
AsrSceneMode?: string;
|
|
@@ -4037,8 +4031,10 @@ export interface XMPTags {
|
|
|
4037
4031
|
CameraProfileDigest?: string;
|
|
4038
4032
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4039
4033
|
CameraUnit?: string;
|
|
4040
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4034
|
+
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","De…ical"}] */
|
|
4041
4035
|
Cameras?: Struct[];
|
|
4036
|
+
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4037
|
+
CaptureMode?: string;
|
|
4042
4038
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4043
4039
|
CaptureSoftware?: string;
|
|
4044
4040
|
/** ☆☆☆☆ ✔ Example: ["Subjekt|Natur|Pflanzen","Ort|Deutschland|Rangsdorf"] */
|
|
@@ -4067,9 +4063,11 @@ export interface XMPTags {
|
|
|
4067
4063
|
ColorNoiseReductionDetail?: number;
|
|
4068
4064
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4069
4065
|
ColorNoiseReductionSmoothness?: number;
|
|
4066
|
+
/** ☆☆☆☆ ✔ Example: "sRGB" */
|
|
4067
|
+
ColorSpace?: string;
|
|
4070
4068
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4071
4069
|
Colorlabels?: string;
|
|
4072
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"
|
|
4070
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
|
|
4073
4071
|
Container?: Struct;
|
|
4074
4072
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4075
4073
|
ConvertToGrayscale?: boolean;
|
|
@@ -4095,14 +4093,6 @@ export interface XMPTags {
|
|
|
4095
4093
|
CropConstrainToWarp?: number;
|
|
4096
4094
|
/** ☆☆☆☆ Example: 1 */
|
|
4097
4095
|
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
4096
|
/** ☆☆☆☆ ✔ Example: 2014-05-11T13:08:25.659-04:00 */
|
|
4107
4097
|
DateAcquired?: ExifDateTime | string;
|
|
4108
4098
|
/** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
|
|
@@ -4135,6 +4125,16 @@ export interface XMPTags {
|
|
|
4135
4125
|
DocumentID?: string;
|
|
4136
4126
|
/** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
|
|
4137
4127
|
ExifVersion?: string;
|
|
4128
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (Auto exposure)" */
|
|
4129
|
+
ExposureMode?: string;
|
|
4130
|
+
/** ☆☆☆☆ Example: [{"FaceAnglePitch":0.009265,"FaceAngleRoll":-0.021281,"Fa…re":4}] */
|
|
4131
|
+
Face?: Struct[];
|
|
4132
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4133
|
+
FaceNum?: number;
|
|
4134
|
+
/** ☆☆☆☆ Example: 0 */
|
|
4135
|
+
FaceSelectedIndex?: number;
|
|
4136
|
+
/** ☆☆☆☆ Example: 8 */
|
|
4137
|
+
Far?: number;
|
|
4138
4138
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4139
4139
|
Firmware?: number;
|
|
4140
4140
|
/** ☆☆☆☆ ✔ Example: "Example flash make" */
|
|
@@ -4149,15 +4149,15 @@ export interface XMPTags {
|
|
|
4149
4149
|
FlightRollDegree?: number;
|
|
4150
4150
|
/** ☆☆☆☆ Example: 88.699997 */
|
|
4151
4151
|
FlightYawDegree?: number;
|
|
4152
|
-
/** ☆☆☆☆ Example:
|
|
4152
|
+
/** ☆☆☆☆ Example: 6553500 */
|
|
4153
4153
|
FocusAreaHeight?: number;
|
|
4154
4154
|
/** ☆☆☆☆ Example: 1 */
|
|
4155
4155
|
FocusAreaNum?: number;
|
|
4156
|
-
/** ☆☆☆☆ Example:
|
|
4156
|
+
/** ☆☆☆☆ Example: 6553500 */
|
|
4157
4157
|
FocusAreaWidth?: number;
|
|
4158
4158
|
/** ☆☆☆☆ Example: 0 */
|
|
4159
4159
|
FocusIsLensMoving?: number;
|
|
4160
|
-
/** ☆☆☆☆ Example:
|
|
4160
|
+
/** ☆☆☆☆ Example: 3372647 */
|
|
4161
4161
|
FocusPosX?: number;
|
|
4162
4162
|
/** ☆☆☆☆ Example: 936214 */
|
|
4163
4163
|
FocusPosY?: number;
|
|
@@ -4165,19 +4165,13 @@ export interface XMPTags {
|
|
|
4165
4165
|
FocusState?: string;
|
|
4166
4166
|
/** ☆☆☆☆ ✔ Example: "image/jpg" */
|
|
4167
4167
|
Format?: string;
|
|
4168
|
-
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4169
|
-
FullPanoHeightPixels?: number;
|
|
4170
|
-
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
4171
|
-
FullPanoWidthPixels?: number;
|
|
4172
|
-
/** ☆☆☆☆ ✔ Example: "2.2.0.0" */
|
|
4173
|
-
GPSVersionID?: string;
|
|
4174
4168
|
/** ☆☆☆☆ Example: -90 */
|
|
4175
4169
|
GimbalPitchDegree?: number;
|
|
4176
4170
|
/** ☆☆☆☆ Example: 0 */
|
|
4177
4171
|
GimbalReverse?: number;
|
|
4178
4172
|
/** ☆☆☆☆ Example: "+0.00" */
|
|
4179
4173
|
GimbalRollDegree?: string;
|
|
4180
|
-
/** ☆☆☆☆ Example:
|
|
4174
|
+
/** ☆☆☆☆ Example: */
|
|
4181
4175
|
GimbalYawDegree?: string;
|
|
4182
4176
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4183
4177
|
GrainAmount?: number;
|
|
@@ -4185,8 +4179,6 @@ export interface XMPTags {
|
|
|
4185
4179
|
GreenHue?: number;
|
|
4186
4180
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4187
4181
|
GreenSaturation?: number;
|
|
4188
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 53037 bytes, use -b option to extract)" */
|
|
4189
|
-
HDRPMakerNote?: string;
|
|
4190
4182
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4191
4183
|
HasCrop?: boolean;
|
|
4192
4184
|
/** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
|
|
@@ -4227,16 +4219,16 @@ export interface XMPTags {
|
|
|
4227
4219
|
InteroperabilityIndex?: string;
|
|
4228
4220
|
/** ☆☆☆☆ ✔ Example: "18, 25, 24.96" */
|
|
4229
4221
|
InteroperabilityVersion?: string;
|
|
4230
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4222
|
+
/** ☆☆☆☆ ✔ Example: true */
|
|
4231
4223
|
IsBokehActive?: boolean;
|
|
4232
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4233
|
-
|
|
4234
|
-
/** ☆☆☆☆ ✔ Example: "選択" */
|
|
4235
|
-
Label?: string;
|
|
4224
|
+
/** ☆☆☆☆ ✔ Example: true */
|
|
4225
|
+
IsHDRActive?: boolean;
|
|
4236
4226
|
/** ☆☆☆☆ ✔ Example: ["red fish","bluefish"] */
|
|
4237
4227
|
LastKeywordXMP?: string[];
|
|
4238
4228
|
/** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
|
|
4239
4229
|
LegacyIPTCDigest?: string;
|
|
4230
|
+
/** ☆☆☆☆ ✔ Example: "Back" */
|
|
4231
|
+
LensFacing?: string;
|
|
4240
4232
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4241
4233
|
LensManualDistortionAmount?: number;
|
|
4242
4234
|
/** ☆☆☆☆ ✔ Example: "Example lens make" */
|
|
@@ -4273,7 +4265,7 @@ export interface XMPTags {
|
|
|
4273
4265
|
Marked?: boolean;
|
|
4274
4266
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4275
4267
|
Mask?: string;
|
|
4276
|
-
/** ☆☆☆☆ ✔ Example: 2021-10-
|
|
4268
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-26T11:01:05.000+01:00 */
|
|
4277
4269
|
MetadataDate?: ExifDateTime | string;
|
|
4278
4270
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4279
4271
|
MicroVideo?: number;
|
|
@@ -4283,6 +4275,8 @@ export interface XMPTags {
|
|
|
4283
4275
|
MicroVideoPresentationTimestampUs?: number;
|
|
4284
4276
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4285
4277
|
MicroVideoVersion?: number;
|
|
4278
|
+
/** ☆☆☆☆ Example: "image/jpeg" */
|
|
4279
|
+
Mime?: string;
|
|
4286
4280
|
/** ☆☆☆☆ Example: 240 */
|
|
4287
4281
|
MobileCountryCode?: number;
|
|
4288
4282
|
/** ☆☆☆☆ Example: 8 */
|
|
@@ -4291,6 +4285,18 @@ export interface XMPTags {
|
|
|
4291
4285
|
ModificationDate?: ExifDateTime | string;
|
|
4292
4286
|
/** ☆☆☆☆ Example: "36864,40960,40961,37121,37122,40962,40963,37510,40964,368…B0A1251" */
|
|
4293
4287
|
NativeDigest?: string;
|
|
4288
|
+
/** ☆☆☆☆ Example: 115.4 */
|
|
4289
|
+
Near?: number;
|
|
4290
|
+
/** ☆☆☆☆ Example: 561 */
|
|
4291
|
+
ObjectAreaHeight?: number;
|
|
4292
|
+
/** ☆☆☆☆ Example: 884 */
|
|
4293
|
+
ObjectAreaWidth?: number;
|
|
4294
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4295
|
+
ObjectNum?: number;
|
|
4296
|
+
/** ☆☆☆☆ Example: 1890 */
|
|
4297
|
+
ObjectPosX?: number;
|
|
4298
|
+
/** ☆☆☆☆ Example: 1796 */
|
|
4299
|
+
ObjectPosY?: number;
|
|
4294
4300
|
/** ☆☆☆☆ Example: */
|
|
4295
4301
|
OriginalCreateDateTime?: ExifDateTime | string;
|
|
4296
4302
|
/** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
|
|
@@ -4323,8 +4329,8 @@ export interface XMPTags {
|
|
|
4323
4329
|
PerspectiveRotate?: number;
|
|
4324
4330
|
/** ☆☆☆☆ ✔ Example: 100 */
|
|
4325
4331
|
PerspectiveScale?: number;
|
|
4326
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4327
|
-
PerspectiveUpright?:
|
|
4332
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4333
|
+
PerspectiveUpright?: string;
|
|
4328
4334
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4329
4335
|
PerspectiveVertical?: number;
|
|
4330
4336
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4351,10 +4357,8 @@ export interface XMPTags {
|
|
|
4351
4357
|
PreservedFileName?: string;
|
|
4352
4358
|
/** ☆☆☆☆ ✔ Example: 11 */
|
|
4353
4359
|
ProcessVersion?: number;
|
|
4354
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4360
|
+
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4355
4361
|
Profiles?: Struct[];
|
|
4356
|
-
/** ☆☆☆☆ ✔ Example: "equirectangular" */
|
|
4357
|
-
ProjectionType?: string;
|
|
4358
4362
|
/** ☆☆☆☆ ✔ Example: "P2030414.jpg" */
|
|
4359
4363
|
RawFileName?: string;
|
|
4360
4364
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4387,10 +4391,10 @@ export interface XMPTags {
|
|
|
4387
4391
|
SaturationAdjustmentRed?: number;
|
|
4388
4392
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4389
4393
|
SaturationAdjustmentYellow?: number;
|
|
4390
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4391
|
-
|
|
4392
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4393
|
-
|
|
4394
|
+
/** ☆☆☆☆ ✔ Example: "AutoHDR" */
|
|
4395
|
+
Scene?: string;
|
|
4396
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (Standard)" */
|
|
4397
|
+
SceneCaptureType?: string;
|
|
4394
4398
|
/** ☆☆☆☆ Example: "Undefined" */
|
|
4395
4399
|
SelfData?: string;
|
|
4396
4400
|
/** ☆☆☆☆ ✔ Example: 65536 */
|
|
@@ -4405,8 +4409,6 @@ export interface XMPTags {
|
|
|
4405
4409
|
SharpenRadius?: string;
|
|
4406
4410
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
4407
4411
|
SourcePhotosCount?: number;
|
|
4408
|
-
/** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.Spec…TRAIT"] */
|
|
4409
|
-
SpecialTypeID?: string[];
|
|
4410
4412
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4411
4413
|
SplitToningBalance?: number;
|
|
4412
4414
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4421,12 +4423,12 @@ export interface XMPTags {
|
|
|
4421
4423
|
State?: string;
|
|
4422
4424
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4423
4425
|
StitchingSoftware?: string;
|
|
4426
|
+
/** ☆☆☆☆ ✔ Example: 296185 */
|
|
4427
|
+
SubSecTimeOriginal?: number;
|
|
4424
4428
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4425
4429
|
Subject?: string[];
|
|
4426
4430
|
/** ☆☆☆☆ ✔ Example: 296185 */
|
|
4427
4431
|
SubsecTime?: number;
|
|
4428
|
-
/** ☆☆☆☆ ✔ Example: "#MB%:{9C0B071B-5553-4D89-B252-934C9EC1E04D}GBMB1:%MB#" */
|
|
4429
|
-
Tag?: string;
|
|
4430
4432
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
4431
4433
|
Tagged?: string;
|
|
4432
4434
|
/** ☆☆☆☆ ✔ Example: ["Subjekt/Natur/Pflanzen","Ort/Deutschland/Rangsdorf"] */
|
|
@@ -4479,6 +4481,8 @@ export interface XMPTags {
|
|
|
4479
4481
|
VignetteAmount?: number;
|
|
4480
4482
|
/** ☆☆☆☆ Example: [4500] */
|
|
4481
4483
|
WavelengthFWHM?: number[];
|
|
4484
|
+
/** ☆☆☆☆ Example: "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><…="0" />" */
|
|
4485
|
+
XMPMeta?: string;
|
|
4482
4486
|
/** ☆☆☆☆ ✔ Example: "XMP toolkit 3.0-28, framework 1.6" */
|
|
4483
4487
|
XMPToolkit?: string;
|
|
4484
4488
|
}
|
|
@@ -4494,8 +4498,8 @@ export interface XMPTags {
|
|
|
4494
4498
|
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
4495
4499
|
* popularity ratings.
|
|
4496
4500
|
*
|
|
4497
|
-
* Autogenerated by "yarn mktags" by ExifTool 12.
|
|
4498
|
-
*
|
|
4501
|
+
* Autogenerated by "yarn mktags" by ExifTool 12.49 on Fri Oct 21 2022.
|
|
4502
|
+
* 2975 unique tags were found in 10019 photo and video files.
|
|
4499
4503
|
*/
|
|
4500
4504
|
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
4505
|
errors?: string[];
|