exiftool-vendored 15.12.1 → 16.2.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 +84 -2
- package/README.md +54 -72
- package/dist/ExifDateTime.d.ts +6 -2
- package/dist/ExifDateTime.js +53 -18
- package/dist/ExifDateTime.js.map +1 -1
- package/dist/ExifTool.d.ts +20 -9
- package/dist/ExifTool.js +11 -4
- package/dist/ExifTool.js.map +1 -1
- package/dist/ExifToolTask.js +5 -1
- package/dist/ExifToolTask.js.map +1 -1
- package/dist/JSON.js.map +1 -1
- package/dist/Object.d.ts +2 -0
- package/dist/Object.js +19 -1
- package/dist/Object.js.map +1 -1
- package/dist/ReadRawTask.js +5 -1
- package/dist/ReadRawTask.js.map +1 -1
- package/dist/ReadTask.d.ts +1 -6
- package/dist/ReadTask.js +126 -91
- package/dist/ReadTask.js.map +1 -1
- package/dist/ResourceEvent.d.ts +13 -0
- package/dist/ResourceEvent.js +3 -0
- package/dist/ResourceEvent.js.map +1 -0
- package/dist/RewriteAllTagsTask.js +5 -1
- package/dist/RewriteAllTagsTask.js.map +1 -1
- package/dist/Struct.js +4 -4
- package/dist/Struct.js.map +1 -1
- package/dist/Tags.d.ts +139 -752
- package/dist/Timezones.d.ts +2 -1
- package/dist/Timezones.js +35 -24
- package/dist/Timezones.js.map +1 -1
- package/dist/Version.d.ts +13 -0
- package/dist/Version.js +3 -0
- package/dist/Version.js.map +1 -0
- package/dist/WriteTask.js +6 -1
- package/dist/WriteTask.js.map +1 -1
- package/package.json +15 -15
package/dist/Tags.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ import { ExifDate } from "./ExifDate";
|
|
|
3
3
|
import { ExifDateTime } from "./ExifDateTime";
|
|
4
4
|
import { ExifTime } from "./ExifTime";
|
|
5
5
|
import { ICCProfileTags } from "./ICCProfileTags";
|
|
6
|
+
import { ResourceEvent } from "./ResourceEvent";
|
|
6
7
|
import { Struct } from "./Struct";
|
|
8
|
+
import { Version } from "./Version";
|
|
7
9
|
export interface ExifToolTags {
|
|
8
10
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
9
11
|
Error?: string;
|
|
10
|
-
/** ★★★★ ✔ Example: 12.4 */
|
|
11
|
-
ExifToolVersion?: number;
|
|
12
12
|
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
13
13
|
Warning?: string;
|
|
14
14
|
}
|
|
@@ -17,32 +17,14 @@ export interface FileTags {
|
|
|
17
17
|
BMPVersion?: string;
|
|
18
18
|
/** ☆☆☆☆ ✔ Example: 24 */
|
|
19
19
|
BitDepth?: number;
|
|
20
|
-
/** ★★★★ ✔ Example: 8 */
|
|
21
|
-
BitsPerSample?: number;
|
|
22
|
-
/** ★★★★ ✔ Example: 3 */
|
|
23
|
-
ColorComponents?: number;
|
|
24
20
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
25
21
|
Comment?: string;
|
|
26
22
|
/** ☆☆☆☆ ✔ Example: "MJPG" */
|
|
27
23
|
Compression?: string;
|
|
28
24
|
/** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
|
|
29
25
|
CurrentIPTCDigest?: string;
|
|
30
|
-
/** ★★★★ ✔ Example: "/home/username/pictures" */
|
|
31
|
-
Directory?: string;
|
|
32
|
-
/** ★★★★ ✔ Example: "Progressive DCT, Huffman coding" */
|
|
33
|
-
EncodingProcess?: string;
|
|
34
|
-
/** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
|
|
35
|
-
ExifByteOrder?: string;
|
|
36
|
-
/** ★★★★ ✔ Example: 2022-02-24T22:06:50.000-08:00 */
|
|
37
|
-
FileAccessDate?: ExifDateTime | string;
|
|
38
|
-
/** ★★★★ ✔ Example: 2022-02-22T22:04:12.000-08:00 */
|
|
39
|
-
FileInodeChangeDate?: ExifDateTime | string;
|
|
40
|
-
/** ★★★★ ✔ Example: 2022-01-04T09:34:09.000-08:00 */
|
|
41
|
-
FileModifyDate?: ExifDateTime | string;
|
|
42
26
|
/** ★★★★ ✔ Example: "utc+8_oly.jpg" */
|
|
43
27
|
FileName?: string;
|
|
44
|
-
/** ★★★★ ✔ Example: "-rwxrwxr-x" */
|
|
45
|
-
FilePermissions?: string;
|
|
46
28
|
/** ★★★★ ✔ Example: "990 bytes" */
|
|
47
29
|
FileSize?: string;
|
|
48
30
|
/** ★★★★ ✔ Example: "RW2" */
|
|
@@ -53,7 +35,7 @@ export interface FileTags {
|
|
|
53
35
|
ImageHeight?: number;
|
|
54
36
|
/** ☆☆☆☆ ✔ Example: 230400 */
|
|
55
37
|
ImageLength?: number;
|
|
56
|
-
/** ★★★★ ✔ Example:
|
|
38
|
+
/** ★★★★ ✔ Example: 8256 */
|
|
57
39
|
ImageWidth?: number;
|
|
58
40
|
/** ★★★★ ✔ Example: "video/x-msvideo" */
|
|
59
41
|
MIMEType?: string;
|
|
@@ -69,14 +51,10 @@ export interface FileTags {
|
|
|
69
51
|
Planes?: number;
|
|
70
52
|
/** ☆☆☆☆ ✔ Example: "(Binary data 93064 bytes, use -b option to extract)" */
|
|
71
53
|
PreviewImage?: string;
|
|
72
|
-
/** ★★★★ ✔ Example: "YCbCr4:4:4 (1 1)" */
|
|
73
|
-
YCbCrSubSampling?: string;
|
|
74
54
|
}
|
|
75
55
|
export interface CompositeTags {
|
|
76
56
|
/** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
|
|
77
57
|
AdvancedSceneMode?: string;
|
|
78
|
-
/** ★★★★ ✔ Example: 90 */
|
|
79
|
-
Aperture?: number;
|
|
80
58
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
81
59
|
AutoFocus?: string;
|
|
82
60
|
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
@@ -92,25 +70,19 @@ export interface CompositeTags {
|
|
|
92
70
|
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
93
71
|
DOF?: string;
|
|
94
72
|
/** ☆☆☆☆ Example: 2006-12-19 */
|
|
95
|
-
DateCreated?:
|
|
73
|
+
DateCreated?: ExifDateTime | string;
|
|
96
74
|
/** ☆☆☆☆ ✔ Example: undefined */
|
|
97
75
|
DateTimeCreated?: ExifDateTime | string;
|
|
98
76
|
/** ☆☆☆☆ ✔ Example: 2017-02-20T18:06:40.000Z */
|
|
99
77
|
DateTimeOriginal?: ExifDateTime | string;
|
|
100
|
-
/** ☆☆☆☆ ✔ Example: 2021-03-16T18:14:25.000-07:00 */
|
|
101
|
-
DigitalCreationDateTime?: ExifDateTime | string;
|
|
102
78
|
/** ☆☆☆☆ ✔ Example: "4.00x" */
|
|
103
79
|
DigitalZoom?: string;
|
|
104
80
|
/** ★★☆☆ ✔ Example: "Single-frame Shooting" */
|
|
105
81
|
DriveMode?: string;
|
|
106
82
|
/** ☆☆☆☆ ✔ Example: 25.866408 */
|
|
107
83
|
Duration?: number;
|
|
108
|
-
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
109
|
-
ExtenderStatus?: string;
|
|
110
84
|
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
111
85
|
FOV?: string;
|
|
112
|
-
/** ☆☆☆☆ ✔ Example: "897-9769" */
|
|
113
|
-
FileNumber?: string;
|
|
114
86
|
/** ☆☆☆☆ ✔ Example: "Off, Did not fire" */
|
|
115
87
|
Flash?: string;
|
|
116
88
|
/** ☆☆☆☆ ✔ Example: "External" */
|
|
@@ -119,11 +91,9 @@ export interface CompositeTags {
|
|
|
119
91
|
FocalLength35efl?: string;
|
|
120
92
|
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
121
93
|
FocusDistance?: string;
|
|
122
|
-
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
123
|
-
FocusDistance2?: string;
|
|
124
94
|
/** ☆☆☆☆ ✔ Example: 99.8 */
|
|
125
95
|
GPSAltitude?: number;
|
|
126
|
-
/** ☆☆☆☆
|
|
96
|
+
/** ☆☆☆☆ ✔ Example: "Above Sea Level" */
|
|
127
97
|
GPSAltitudeRef?: string;
|
|
128
98
|
/** ☆☆☆☆ ✔ Example: 2020-10-23T09:27:26.000Z */
|
|
129
99
|
GPSDateTime?: ExifDateTime | string;
|
|
@@ -191,6 +161,8 @@ export interface CompositeTags {
|
|
|
191
161
|
SubSecCreateDate?: ExifDateTime | string;
|
|
192
162
|
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
193
163
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
164
|
+
/** ☆☆☆☆ Example: */
|
|
165
|
+
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
194
166
|
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
195
167
|
SubSecModifyDate?: ExifDateTime | string;
|
|
196
168
|
}
|
|
@@ -213,14 +185,6 @@ export interface APP1Tags {
|
|
|
213
185
|
CreatorSoftware?: string;
|
|
214
186
|
/** ☆☆☆☆ Example: 2013-03-12T16:31:26.000 */
|
|
215
187
|
DateTimeGenerated?: ExifDateTime | string;
|
|
216
|
-
/** ☆☆☆☆ Example: "(Binary data 74741 bytes, use -b option to extract)" */
|
|
217
|
-
EmbeddedImage?: string;
|
|
218
|
-
/** ☆☆☆☆ Example: 768 */
|
|
219
|
-
EmbeddedImageHeight?: number;
|
|
220
|
-
/** ☆☆☆☆ Example: "PNG" */
|
|
221
|
-
EmbeddedImageType?: string;
|
|
222
|
-
/** ☆☆☆☆ Example: 640 */
|
|
223
|
-
EmbeddedImageWidth?: number;
|
|
224
188
|
/** ☆☆☆☆ Example: 1 */
|
|
225
189
|
Emissivity?: number;
|
|
226
190
|
/** ☆☆☆☆ Example: "46.1 deg" */
|
|
@@ -273,10 +237,6 @@ export interface APP1Tags {
|
|
|
273
237
|
Meas2Type?: string;
|
|
274
238
|
/** ☆☆☆☆ Example: "9.70 m" */
|
|
275
239
|
ObjectDistance?: string;
|
|
276
|
-
/** ☆☆☆☆ Example: "+98" */
|
|
277
|
-
OffsetX?: string;
|
|
278
|
-
/** ☆☆☆☆ Example: "+51" */
|
|
279
|
-
OffsetY?: string;
|
|
280
240
|
/** ☆☆☆☆ Example: "67 216 98" */
|
|
281
241
|
OverflowColor?: string;
|
|
282
242
|
/** ☆☆☆☆ Example: "(Binary data 672 bytes, use -b option to extract)" */
|
|
@@ -309,8 +269,6 @@ export interface APP1Tags {
|
|
|
309
269
|
RawValueRangeMax?: number;
|
|
310
270
|
/** ☆☆☆☆ Example: 8628 */
|
|
311
271
|
RawValueRangeMin?: number;
|
|
312
|
-
/** ☆☆☆☆ Example: 2.2125397 */
|
|
313
|
-
Real2IR?: number;
|
|
314
272
|
/** ☆☆☆☆ Example: "26.7 C" */
|
|
315
273
|
ReflectedApparentTemperature?: string;
|
|
316
274
|
/** ☆☆☆☆ Example: "80.0 %" */
|
|
@@ -321,6 +279,8 @@ export interface APP1Tags {
|
|
|
321
279
|
export interface APP12Tags {
|
|
322
280
|
/** ☆☆☆☆ Example: 388 */
|
|
323
281
|
Again?: number;
|
|
282
|
+
/** ☆☆☆☆ Example: 2 */
|
|
283
|
+
Aperture?: number;
|
|
324
284
|
/** ☆☆☆☆ Example: 3383 */
|
|
325
285
|
B5100?: number;
|
|
326
286
|
/** ☆☆☆☆ Example: 216 */
|
|
@@ -489,10 +449,6 @@ export interface APP12Tags {
|
|
|
489
449
|
ZoomPos?: number;
|
|
490
450
|
}
|
|
491
451
|
export interface APP14Tags {
|
|
492
|
-
/** ☆☆☆☆ ✔ Example: "[14], Encoded with Blend=1 downsampling" */
|
|
493
|
-
APP14Flags0?: string;
|
|
494
|
-
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
495
|
-
APP14Flags1?: string;
|
|
496
452
|
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
497
453
|
ColorTransform?: string;
|
|
498
454
|
/** ☆☆☆☆ ✔ Example: 100 */
|
|
@@ -511,19 +467,23 @@ export interface APP5Tags {
|
|
|
511
467
|
Compass?: string;
|
|
512
468
|
}
|
|
513
469
|
export interface EXIFTags {
|
|
514
|
-
/** ☆☆☆☆ ✔ Example:
|
|
515
|
-
|
|
516
|
-
/** ☆☆☆☆ ✔ Example: "22.6 C" */
|
|
517
|
-
AmbientTemperature?: string;
|
|
470
|
+
/** ☆☆☆☆ ✔ Example: "2.225585938 1 2.039794922" */
|
|
471
|
+
AnalogBalance?: string;
|
|
518
472
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
519
473
|
AntiAliasStrength?: number;
|
|
520
474
|
/** ★★★☆ ✔ Example: 9016997700 */
|
|
521
475
|
ApertureValue?: number;
|
|
522
476
|
/** ★☆☆☆ ✔ Example: "Arturo DeImage" */
|
|
523
477
|
Artist?: string;
|
|
524
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
478
|
+
/** ☆☆☆☆ ✔ Example: "1 1 1" */
|
|
525
479
|
AsShotNeutral?: string;
|
|
526
|
-
/** ☆☆☆☆ ✔ Example:
|
|
480
|
+
/** ☆☆☆☆ ✔ Example: 3.0021124 */
|
|
481
|
+
BaselineExposure?: number;
|
|
482
|
+
/** ☆☆☆☆ ✔ Example: 1.5 */
|
|
483
|
+
BaselineSharpness?: number;
|
|
484
|
+
/** ☆☆☆☆ ✔ Example: "8 8 8" */
|
|
485
|
+
BitsPerSample?: string;
|
|
486
|
+
/** ☆☆☆☆ ✔ Example: 528 */
|
|
527
487
|
BlackLevel?: number;
|
|
528
488
|
/** ☆☆☆☆ ✔ Example: 128 */
|
|
529
489
|
BlackLevelBlue?: number;
|
|
@@ -531,22 +491,18 @@ export interface EXIFTags {
|
|
|
531
491
|
BlackLevelGreen?: number;
|
|
532
492
|
/** ☆☆☆☆ ✔ Example: 128 */
|
|
533
493
|
BlackLevelRed?: number;
|
|
494
|
+
/** ☆☆☆☆ ✔ Example: "1 1" */
|
|
495
|
+
BlackLevelRepeatDim?: string;
|
|
534
496
|
/** ★★☆☆ ✔ Example: 9.9919505 */
|
|
535
497
|
BrightnessValue?: number;
|
|
536
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
537
|
-
|
|
498
|
+
/** ☆☆☆☆ ✔ Example: "Red,Green,Blue" */
|
|
499
|
+
CFAPlaneColor?: string;
|
|
538
500
|
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
539
501
|
CFARepeatPatternDim?: string;
|
|
540
502
|
/** ☆☆☆☆ ✔ Example: "22 -128 0 0 0 128 128 256 384 384 512 640 1152 1152 1152 1024 89…" */
|
|
541
503
|
ChromaticAberrationCorrParams?: string;
|
|
542
504
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
543
505
|
ChromaticAberrationCorrection?: string;
|
|
544
|
-
/** ☆☆☆☆ ✔ Example: "0.8519287109 -0.3260498047 -0.02795410156 -0.5080566406 1.345947…" */
|
|
545
|
-
ColorMatrix1?: string;
|
|
546
|
-
/** ★★★★ ✔ Example: "sRGB" */
|
|
547
|
-
ColorSpace?: string;
|
|
548
|
-
/** ★★★★ ✔ Example: "Y, Cr, Cb, -" */
|
|
549
|
-
ComponentsConfiguration?: string;
|
|
550
506
|
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
551
507
|
CompositeImage?: string;
|
|
552
508
|
/** ★★★★ ✔ Example: 90 */
|
|
@@ -559,6 +515,12 @@ export interface EXIFTags {
|
|
|
559
515
|
CreateDate?: ExifDateTime | string;
|
|
560
516
|
/** ★★★★ ✔ Example: "Unknown (5840)" */
|
|
561
517
|
CustomRendered?: string;
|
|
518
|
+
/** ☆☆☆☆ ✔ Example: "1.3.0.0" */
|
|
519
|
+
DNGBackwardVersion?: string;
|
|
520
|
+
/** ☆☆☆☆ ✔ Example: "1.6.0.0" */
|
|
521
|
+
DNGVersion?: string;
|
|
522
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
523
|
+
DefaultBlackRender?: string;
|
|
562
524
|
/** ☆☆☆☆ ✔ Example: "8 8" */
|
|
563
525
|
DefaultCropOrigin?: string;
|
|
564
526
|
/** ☆☆☆☆ ✔ Example: "8272 6200" */
|
|
@@ -577,8 +539,6 @@ export interface EXIFTags {
|
|
|
577
539
|
ExifImageHeight?: number;
|
|
578
540
|
/** ★★★★ ✔ Example: 999 */
|
|
579
541
|
ExifImageWidth?: number;
|
|
580
|
-
/** ★★★★ ✔ Example: "Version 2.2" */
|
|
581
|
-
ExifVersion?: string;
|
|
582
542
|
/** ★☆☆☆ ✔ Example: 83 */
|
|
583
543
|
ExposureIndex?: number;
|
|
584
544
|
/** ★★★★ ✔ Example: "Unknown ()" */
|
|
@@ -589,8 +549,6 @@ export interface EXIFTags {
|
|
|
589
549
|
FileSource?: string;
|
|
590
550
|
/** ☆☆☆☆ ✔ Example: 54 */
|
|
591
551
|
FlashEnergy?: number;
|
|
592
|
-
/** ★★★★ ✔ Example: "?" */
|
|
593
|
-
FlashpixVersion?: string;
|
|
594
552
|
/** ★★★★ ✔ Example: "99.7 mm" */
|
|
595
553
|
FocalLength?: string;
|
|
596
554
|
/** ★★★☆ ✔ Example: "9920 mm" */
|
|
@@ -635,12 +593,10 @@ export interface EXIFTags {
|
|
|
635
593
|
GPSStatus?: string;
|
|
636
594
|
/** ☆☆☆☆ ✔ Example: 23:59:41.001 */
|
|
637
595
|
GPSTimeStamp?: ExifTime | string;
|
|
638
|
-
/** ☆☆☆☆ ✔ Example:
|
|
596
|
+
/** ☆☆☆☆ ✔ Example: 74.882813 */
|
|
639
597
|
GPSTrack?: number;
|
|
640
598
|
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
641
599
|
GPSTrackRef?: string;
|
|
642
|
-
/** ★☆☆☆ ✔ Example: "50.51.48.48" */
|
|
643
|
-
GPSVersionID?: string;
|
|
644
600
|
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
645
601
|
GainControl?: string;
|
|
646
602
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -659,10 +615,6 @@ export interface EXIFTags {
|
|
|
659
615
|
ImageNumber?: number;
|
|
660
616
|
/** ☆☆☆☆ ✔ Example: "fa5fdfee65f3a6e05fe7d4692b9112a7" */
|
|
661
617
|
ImageUniqueID?: string;
|
|
662
|
-
/** ★★★★ ✔ Example: "Unknown ([None])" */
|
|
663
|
-
InteropIndex?: string;
|
|
664
|
-
/** ★★★★ ✔ Example: "undef undef undef" */
|
|
665
|
-
InteropVersion?: string;
|
|
666
618
|
/** ☆☆☆☆ ✔ Example: "(Binary data 926720 bytes, use -b option to extract)" */
|
|
667
619
|
JpgFromRaw?: string;
|
|
668
620
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
@@ -681,10 +633,10 @@ export interface EXIFTags {
|
|
|
681
633
|
LinearityLimitGreen?: number;
|
|
682
634
|
/** ☆☆☆☆ ✔ Example: 4095 */
|
|
683
635
|
LinearityLimitRed?: number;
|
|
636
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 22629 bytes, use -b option to extract)" */
|
|
637
|
+
LinearizationTable?: string;
|
|
684
638
|
/** ★★★★ ✔ Example: "samsung" */
|
|
685
639
|
Make?: string;
|
|
686
|
-
/** ☆☆☆☆ Example: "(Binary data 688 bytes, use -b option to extract)" */
|
|
687
|
-
MakerNoteMinolta3?: string;
|
|
688
640
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3072 bytes, use -b option to extract)" */
|
|
689
641
|
MakerNoteSamsung1a?: string;
|
|
690
642
|
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
@@ -703,6 +655,10 @@ export interface EXIFTags {
|
|
|
703
655
|
ModifyDate?: ExifDateTime | string;
|
|
704
656
|
/** ☆☆☆☆ ✔ Example: 6 */
|
|
705
657
|
Noise?: number;
|
|
658
|
+
/** ☆☆☆☆ ✔ Example: "3e-05 3e-08" */
|
|
659
|
+
NoiseProfile?: string;
|
|
660
|
+
/** ☆☆☆☆ ✔ Example: 0.94999999 */
|
|
661
|
+
NoiseReductionApplied?: number;
|
|
706
662
|
/** ☆☆☆☆ ✔ Example: "5 100 4 4 4 200 8 8 8 400 16 16 16 800 32 32 32 1600 64 64 64" */
|
|
707
663
|
NoiseReductionParams?: string;
|
|
708
664
|
/** ☆☆☆☆ ✔ Example: 58 */
|
|
@@ -731,10 +687,6 @@ export interface EXIFTags {
|
|
|
731
687
|
PanasonicRawVersion?: string;
|
|
732
688
|
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
733
689
|
PhotometricInterpretation?: string;
|
|
734
|
-
/** ☆☆☆☆ ✔ Example: "Chunky" */
|
|
735
|
-
PlanarConfiguration?: string;
|
|
736
|
-
/** ☆☆☆☆ ✔ Example: 1022 */
|
|
737
|
-
Pressure?: number;
|
|
738
690
|
/** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000+01:00 */
|
|
739
691
|
PreviewDateTime?: ExifDateTime | string;
|
|
740
692
|
/** ☆☆☆☆ ✔ Example: 895146 */
|
|
@@ -747,6 +699,12 @@ export interface EXIFTags {
|
|
|
747
699
|
PrimaryChromaticities?: string;
|
|
748
700
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
749
701
|
ProcessingSoftware?: string;
|
|
702
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 822464 bytes, use -b option to extract)" */
|
|
703
|
+
ProfileGainTableMap?: string;
|
|
704
|
+
/** ☆☆☆☆ ✔ Example: "Apple Embedded Color Profile" */
|
|
705
|
+
ProfileName?: string;
|
|
706
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 7195 bytes, use -b option to extract)" */
|
|
707
|
+
ProfileToneCurve?: string;
|
|
750
708
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
751
709
|
Rating?: number;
|
|
752
710
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
@@ -771,8 +729,6 @@ export interface EXIFTags {
|
|
|
771
729
|
RelatedImageWidth?: number;
|
|
772
730
|
/** ☆☆☆☆ ✔ Example: "xxx.avi" */
|
|
773
731
|
RelatedSoundFile?: string;
|
|
774
|
-
/** ★★★★ ✔ Example: "inches" */
|
|
775
|
-
ResolutionUnit?: string;
|
|
776
732
|
/** ☆☆☆☆ ✔ Example: 96 */
|
|
777
733
|
RowsPerStrip?: number;
|
|
778
734
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
@@ -785,6 +741,8 @@ export interface EXIFTags {
|
|
|
785
741
|
SceneCaptureType?: string;
|
|
786
742
|
/** ★★★★ ✔ Example: "Unknown (9)" */
|
|
787
743
|
SceneType?: string;
|
|
744
|
+
/** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
|
|
745
|
+
SemanticName?: string;
|
|
788
746
|
/** ★★★☆ ✔ Example: "Unknown (74)" */
|
|
789
747
|
SensingMethod?: string;
|
|
790
748
|
/** ★★☆☆ ✔ Example: "Unknown" */
|
|
@@ -825,7 +783,7 @@ export interface EXIFTags {
|
|
|
825
783
|
SubSecTimeDigitized?: number;
|
|
826
784
|
/** ★☆☆☆ ✔ Example: 999 */
|
|
827
785
|
SubSecTimeOriginal?: number;
|
|
828
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
786
|
+
/** ☆☆☆☆ ✔ Example: "Semantic Mask" */
|
|
829
787
|
SubfileType?: string;
|
|
830
788
|
/** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
|
|
831
789
|
SubjectArea?: string;
|
|
@@ -833,22 +791,18 @@ export interface EXIFTags {
|
|
|
833
791
|
SubjectDistance?: string;
|
|
834
792
|
/** ★★★☆ ✔ Example: "Unknown (4400)" */
|
|
835
793
|
SubjectDistanceRange?: string;
|
|
836
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
837
|
-
SubjectLocation?: number;
|
|
838
|
-
/** ★★★★ ✔ Example: "(Binary data 9998 bytes, use -b option to extract)" */
|
|
839
|
-
ThumbnailImage?: string;
|
|
840
|
-
/** ★★★★ ✔ Example: 9998 */
|
|
841
|
-
ThumbnailLength?: number;
|
|
842
|
-
/** ★★★★ ✔ Example: 998 */
|
|
843
|
-
ThumbnailOffset?: number;
|
|
844
794
|
/** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
|
|
845
795
|
ThumbnailTIFF?: string;
|
|
796
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
|
|
797
|
+
TileByteCounts?: string;
|
|
846
798
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
847
799
|
TileLength?: number;
|
|
800
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 562 bytes, use -b option to extract)" */
|
|
801
|
+
TileOffsets?: string;
|
|
848
802
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
849
803
|
TileWidth?: number;
|
|
850
804
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
851
|
-
TimeZoneOffset?: number;
|
|
805
|
+
TimeZoneOffset?: number | string;
|
|
852
806
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
|
|
853
807
|
TransferFunction?: string;
|
|
854
808
|
/** ☆☆☆☆ ✔ Example: "motorola XT1254" */
|
|
@@ -865,15 +819,13 @@ export interface EXIFTags {
|
|
|
865
819
|
WBGreenLevel?: number;
|
|
866
820
|
/** ☆☆☆☆ ✔ Example: 737 */
|
|
867
821
|
WBRedLevel?: number;
|
|
868
|
-
/** ☆☆☆☆ ✔ Example: 0.1 */
|
|
869
|
-
WaterDepth?: number;
|
|
870
822
|
/** ★★★★ ✔ Example: "Unknown (65535)" */
|
|
871
823
|
WhiteBalance?: string;
|
|
872
824
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
873
825
|
WhiteLevel?: number;
|
|
874
826
|
/** ☆☆☆☆ ✔ Example: "0.4234 0.399" */
|
|
875
827
|
WhitePoint?: string;
|
|
876
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
828
|
+
/** ☆☆☆☆ ✔ Example: "Nom De Plume" */
|
|
877
829
|
XPAuthor?: string;
|
|
878
830
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
879
831
|
XPComment?: string;
|
|
@@ -883,14 +835,10 @@ export interface EXIFTags {
|
|
|
883
835
|
XPSubject?: string;
|
|
884
836
|
/** ☆☆☆☆ ✔ Example: "楆慮敤琠牡敤攠汉慨䈠汥Ⅱ" */
|
|
885
837
|
XPTitle?: string;
|
|
886
|
-
/** ★★★★ ✔ Example: 99 */
|
|
887
|
-
XResolution?: number;
|
|
888
838
|
/** ☆☆☆☆ ✔ Example: "0.299 0.587 0.114" */
|
|
889
839
|
YCbCrCoefficients?: string;
|
|
890
|
-
/**
|
|
891
|
-
|
|
892
|
-
/** ★★★★ ✔ Example: 99 */
|
|
893
|
-
YResolution?: number;
|
|
840
|
+
/** ☆☆☆☆ ✔ Example: "YCbCr4:2:2 (2 1)" */
|
|
841
|
+
YCbCrSubSampling?: string;
|
|
894
842
|
}
|
|
895
843
|
export interface APP6Tags {
|
|
896
844
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
@@ -943,32 +891,28 @@ export interface FlashPixTags {
|
|
|
943
891
|
export interface IPTCTags {
|
|
944
892
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
945
893
|
ApplicationRecordVersion?: number;
|
|
894
|
+
/** ☆☆☆☆ Example: */
|
|
895
|
+
"Caption-Abstract"?: string;
|
|
946
896
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
947
897
|
Category?: string;
|
|
948
898
|
/** ☆☆☆☆ ✔ Example: "Seattle" */
|
|
949
899
|
City?: string;
|
|
950
900
|
/** ☆☆☆☆ ✔ Example: "UTF8" */
|
|
951
901
|
CodedCharacterSet?: string;
|
|
952
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
902
|
+
/** ☆☆☆☆ ✔ Example: "Donna Ringmanumba" */
|
|
953
903
|
Contact?: string;
|
|
954
904
|
/** ☆☆☆☆ ✔ Example: "Creative Commons Attribution 4.0 International" */
|
|
955
905
|
CopyrightNotice?: string;
|
|
956
|
-
/** ☆☆☆☆ ✔ Example: "photo by Jenny
|
|
906
|
+
/** ☆☆☆☆ ✔ Example: "photo by Jenny Snapsalot" */
|
|
957
907
|
Credit?: string;
|
|
958
908
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
959
909
|
DateSent?: string;
|
|
960
910
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
961
911
|
Destination?: string;
|
|
962
|
-
/** ☆☆☆☆ ✔ Example: 2021-03-16 */
|
|
963
|
-
DigitalCreationDate?: ExifDate | string;
|
|
964
|
-
/** ☆☆☆☆ ✔ Example: 20:25:15 */
|
|
965
|
-
DigitalCreationTime?: ExifTime | string;
|
|
966
912
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
967
913
|
EnvelopeNumber?: string;
|
|
968
914
|
/** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
|
|
969
915
|
EnvelopePriority?: string;
|
|
970
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
971
|
-
EnvelopeRecordVersion?: number;
|
|
972
916
|
/** ☆☆☆☆ ✔ Example: "Tagged Image File Format (Adobe/Aldus Image data)" */
|
|
973
917
|
FileFormat?: string;
|
|
974
918
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
@@ -995,7 +939,7 @@ export interface IPTCTags {
|
|
|
995
939
|
SpecialInstructions?: string;
|
|
996
940
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
997
941
|
SupplementalCategories?: string;
|
|
998
|
-
/** ☆☆☆☆ ✔ Example: 23:
|
|
942
|
+
/** ☆☆☆☆ ✔ Example: 23:46:26 */
|
|
999
943
|
TimeCreated?: ExifTime | string;
|
|
1000
944
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1001
945
|
TimeSent?: string;
|
|
@@ -1011,12 +955,6 @@ export interface MPFTags {
|
|
|
1011
955
|
ImageUIDList?: string;
|
|
1012
956
|
/** ★★☆☆ ✔ Example: "0100" */
|
|
1013
957
|
MPFVersion?: string;
|
|
1014
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 1669333760 bytes, use -b option to extract)" */
|
|
1015
|
-
MPImage1?: string;
|
|
1016
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 826278144 bytes, use -b option to extract)" */
|
|
1017
|
-
MPImage2?: string;
|
|
1018
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 963518 bytes, use -b option to extract)" */
|
|
1019
|
-
MPImage3?: string;
|
|
1020
958
|
/** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
|
|
1021
959
|
MPImageFlags?: string;
|
|
1022
960
|
/** ★★☆☆ ✔ Example: "Unknown (4)" */
|
|
@@ -1073,34 +1011,10 @@ export interface MetaTags {
|
|
|
1073
1011
|
WatermarkType?: number;
|
|
1074
1012
|
}
|
|
1075
1013
|
export interface PanasonicRawTags {
|
|
1076
|
-
/** ☆☆☆☆ ✔ Example: 0.015594482 */
|
|
1077
|
-
DistortionParam02?: number;
|
|
1078
|
-
/** ☆☆☆☆ ✔ Example: 0.0054016113 */
|
|
1079
|
-
DistortionParam04?: number;
|
|
1080
|
-
/** ☆☆☆☆ ✔ Example: 0.09475708 */
|
|
1081
|
-
DistortionParam08?: number;
|
|
1082
|
-
/** ☆☆☆☆ ✔ Example: 0.019195557 */
|
|
1083
|
-
DistortionParam09?: number;
|
|
1084
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1085
|
-
DistortionParam11?: number;
|
|
1086
1014
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1087
1015
|
DistortionScale?: number;
|
|
1088
1016
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
1089
1017
|
NumWBEntries?: number;
|
|
1090
|
-
/** ☆☆☆☆ ✔ Example: "Fine Weather" */
|
|
1091
|
-
WBType1?: string;
|
|
1092
|
-
/** ☆☆☆☆ ✔ Example: "Cloudy" */
|
|
1093
|
-
WBType2?: string;
|
|
1094
|
-
/** ☆☆☆☆ ✔ Example: "Shade" */
|
|
1095
|
-
WBType3?: string;
|
|
1096
|
-
/** ☆☆☆☆ ✔ Example: "Tungsten (Incandescent)" */
|
|
1097
|
-
WBType4?: string;
|
|
1098
|
-
/** ☆☆☆☆ ✔ Example: "Flash" */
|
|
1099
|
-
WBType5?: string;
|
|
1100
|
-
/** ☆☆☆☆ ✔ Example: "D55" */
|
|
1101
|
-
WBType6?: string;
|
|
1102
|
-
/** ☆☆☆☆ ✔ Example: "ISO Studio Tungsten" */
|
|
1103
|
-
WBType7?: string;
|
|
1104
1018
|
}
|
|
1105
1019
|
export interface PhotoshopTags {
|
|
1106
1020
|
/** ☆☆☆☆ ✔ Example: true */
|
|
@@ -1109,16 +1023,8 @@ export interface PhotoshopTags {
|
|
|
1109
1023
|
DisplayedUnitsX?: string;
|
|
1110
1024
|
/** ☆☆☆☆ ✔ Example: "inches" */
|
|
1111
1025
|
DisplayedUnitsY?: string;
|
|
1112
|
-
/** ☆☆☆☆ ✔ Example: 30 */
|
|
1113
|
-
GlobalAltitude?: number;
|
|
1114
|
-
/** ☆☆☆☆ ✔ Example: 90 */
|
|
1115
|
-
GlobalAngle?: number;
|
|
1116
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
1117
|
-
HasRealMergedData?: string;
|
|
1118
1026
|
/** ☆☆☆☆ ✔ Example: "fd826cdf97ac15335b426a20d23c1041" */
|
|
1119
1027
|
IPTCDigest?: string;
|
|
1120
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1121
|
-
NumSlices?: number;
|
|
1122
1028
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1123
1029
|
PhotoshopFormat?: string;
|
|
1124
1030
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
@@ -1135,12 +1041,10 @@ export interface PhotoshopTags {
|
|
|
1135
1041
|
PrintStyle?: string;
|
|
1136
1042
|
/** ☆☆☆☆ ✔ Example: "3 Scans" */
|
|
1137
1043
|
ProgressiveScans?: string;
|
|
1138
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1139
|
-
|
|
1140
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1141
|
-
|
|
1142
|
-
/** ☆☆☆☆ ✔ Example: "Adobe Photoshop" */
|
|
1143
|
-
WriterName?: string;
|
|
1044
|
+
/** ☆☆☆☆ ✔ Example: 72 */
|
|
1045
|
+
XResolution?: number;
|
|
1046
|
+
/** ☆☆☆☆ ✔ Example: 72 */
|
|
1047
|
+
YResolution?: number;
|
|
1144
1048
|
}
|
|
1145
1049
|
export interface PrintIMTags {
|
|
1146
1050
|
/** ★★★☆ ✔ Example: "0300" */
|
|
@@ -1163,13 +1067,13 @@ export interface QuickTimeTags {
|
|
|
1163
1067
|
AudioSampleRate?: number;
|
|
1164
1068
|
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1165
1069
|
AudioVendorID?: string;
|
|
1166
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1070
|
+
/** ☆☆☆☆ ✔ Example: "Nom De Plume" */
|
|
1167
1071
|
Author?: string;
|
|
1168
1072
|
/** ☆☆☆☆ ✔ Example: "65535 65535 65535" */
|
|
1169
1073
|
BackgroundColor?: string;
|
|
1170
1074
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1171
1075
|
ChapterListTrackID?: number;
|
|
1172
|
-
/** ☆☆☆☆
|
|
1076
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1173
1077
|
CleanApertureDimensions?: string;
|
|
1174
1078
|
/** ☆☆☆☆ ✔ Example: "nclx 9 1 9" */
|
|
1175
1079
|
ColorRepresentation?: string;
|
|
@@ -1177,20 +1081,16 @@ export interface QuickTimeTags {
|
|
|
1177
1081
|
CompatibleBrands?: string[];
|
|
1178
1082
|
/** ☆☆☆☆ ✔ Example: "jpeg" */
|
|
1179
1083
|
CompressorID?: string;
|
|
1180
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1181
|
-
CompressorName?: string;
|
|
1182
|
-
/** ☆☆☆☆ Example: "Track 1" */
|
|
1084
|
+
/** ☆☆☆☆ ✔ Example: "Track 1" */
|
|
1183
1085
|
ContentDescribes?: string;
|
|
1184
|
-
/** ☆☆☆☆
|
|
1086
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T14:31:16.000-08:00 */
|
|
1185
1087
|
CreationDate?: ExifDateTime | string;
|
|
1186
1088
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1187
1089
|
CurrentTime?: string;
|
|
1188
|
-
/** ☆☆☆☆
|
|
1090
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1189
1091
|
EncodedPixelsDimensions?: string;
|
|
1190
1092
|
/** ☆☆☆☆ ✔ Example: "Helvetica" */
|
|
1191
1093
|
FontName?: string;
|
|
1192
|
-
/** ☆☆☆☆ ✔ Example: "51 deg 28' 58.44" N, 3 deg 11' 9.96" W, 13.739 m Above Sea Level" */
|
|
1193
|
-
GPSCoordinates?: string;
|
|
1194
1094
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1195
1095
|
GenBalance?: number;
|
|
1196
1096
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
@@ -1211,13 +1111,13 @@ export interface QuickTimeTags {
|
|
|
1211
1111
|
HandlerType?: string;
|
|
1212
1112
|
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1213
1113
|
HandlerVendorID?: string;
|
|
1214
|
-
/** ☆☆☆☆
|
|
1114
|
+
/** ☆☆☆☆ ✔ Example: 4.798027 */
|
|
1215
1115
|
LocationAccuracyHorizontal?: number;
|
|
1216
1116
|
/** ☆☆☆☆ ✔ Example: "MP4 v2 [ISO 14496-14]" */
|
|
1217
1117
|
MajorBrand?: string;
|
|
1218
1118
|
/** ☆☆☆☆ ✔ Example: "1 0 0 0 1 0 0 0 1" */
|
|
1219
1119
|
MatrixStructure?: string;
|
|
1220
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1120
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000-08:00 */
|
|
1221
1121
|
MediaCreateDate?: ExifDateTime | string;
|
|
1222
1122
|
/** ☆☆☆☆ ✔ Example: 98304 */
|
|
1223
1123
|
MediaDataOffset?: number;
|
|
@@ -1229,11 +1129,11 @@ export interface QuickTimeTags {
|
|
|
1229
1129
|
MediaHeaderVersion?: number;
|
|
1230
1130
|
/** ☆☆☆☆ ✔ Example: "und" */
|
|
1231
1131
|
MediaLanguageCode?: string;
|
|
1232
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1132
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000-08:00 */
|
|
1233
1133
|
MediaModifyDate?: ExifDateTime | string;
|
|
1234
1134
|
/** ☆☆☆☆ ✔ Example: 8000 */
|
|
1235
1135
|
MediaTimeScale?: number;
|
|
1236
|
-
/** ☆☆☆☆
|
|
1136
|
+
/** ☆☆☆☆ ✔ Example: "mebx" */
|
|
1237
1137
|
MetaFormat?: string;
|
|
1238
1138
|
/** ☆☆☆☆ ✔ Example: "2011.7.0" */
|
|
1239
1139
|
MinorVersion?: string;
|
|
@@ -1257,9 +1157,9 @@ export interface QuickTimeTags {
|
|
|
1257
1157
|
PreviewDuration?: number;
|
|
1258
1158
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1259
1159
|
PreviewTime?: string;
|
|
1260
|
-
/** ☆☆☆☆
|
|
1160
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1261
1161
|
ProductionApertureDimensions?: string;
|
|
1262
|
-
/** ☆☆☆☆
|
|
1162
|
+
/** ☆☆☆☆ ✔ Example: "mp4a" */
|
|
1263
1163
|
PurchaseFileFormat?: string;
|
|
1264
1164
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1265
1165
|
SelectionDuration?: number;
|
|
@@ -1283,7 +1183,7 @@ export interface QuickTimeTags {
|
|
|
1283
1183
|
TimeCode?: number;
|
|
1284
1184
|
/** ☆☆☆☆ ✔ Example: 90000 */
|
|
1285
1185
|
TimeScale?: number;
|
|
1286
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1186
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000-08:00 */
|
|
1287
1187
|
TrackCreateDate?: ExifDateTime | string;
|
|
1288
1188
|
/** ☆☆☆☆ ✔ Example: 9.5095 */
|
|
1289
1189
|
TrackDuration?: number;
|
|
@@ -1293,7 +1193,7 @@ export interface QuickTimeTags {
|
|
|
1293
1193
|
TrackID?: number;
|
|
1294
1194
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1295
1195
|
TrackLayer?: number;
|
|
1296
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1196
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000-08:00 */
|
|
1297
1197
|
TrackModifyDate?: ExifDateTime | string;
|
|
1298
1198
|
/** ☆☆☆☆ ✔ Example: "0.00%" */
|
|
1299
1199
|
TrackVolume?: string;
|
|
@@ -1357,6 +1257,10 @@ export interface RIFFTags {
|
|
|
1357
1257
|
export interface JFIFTags {
|
|
1358
1258
|
/** ★★★☆ ✔ Example: 1.02 */
|
|
1359
1259
|
JFIFVersion?: number;
|
|
1260
|
+
/** ★★★☆ ✔ Example: "inches" */
|
|
1261
|
+
ResolutionUnit?: string;
|
|
1262
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 6105 bytes, use -b option to extract)" */
|
|
1263
|
+
ThumbnailImage?: string;
|
|
1360
1264
|
}
|
|
1361
1265
|
export interface MakerNotesTags {
|
|
1362
1266
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1397,12 +1301,8 @@ export interface MakerNotesTags {
|
|
|
1397
1301
|
AELockMeterModeAfterFocus?: string;
|
|
1398
1302
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
1399
1303
|
AEMaxAperture?: number;
|
|
1400
|
-
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
1401
|
-
AEMaxAperture2?: number;
|
|
1402
1304
|
/** ☆☆☆☆ ✔ Example: "[1], [2]" */
|
|
1403
1305
|
AEMeteringMode?: string;
|
|
1404
|
-
/** ☆☆☆☆ Example: "Multi-segment" */
|
|
1405
|
-
AEMeteringMode2?: string;
|
|
1406
1306
|
/** ☆☆☆☆ ✔ Example: "9.8 9.4 7.9 8.6 9.2 8.5 9.4 8.9 8.1 8.6 8.0 10.4 8.5 10.6 9.5 9.…" */
|
|
1407
1307
|
AEMeteringSegments?: string;
|
|
1408
1308
|
/** ☆☆☆☆ ✔ Example: "Enable; 0; 8; 0" */
|
|
@@ -1413,8 +1313,6 @@ export interface MakerNotesTags {
|
|
|
1413
1313
|
AEMinExposureTime?: string;
|
|
1414
1314
|
/** ☆☆☆☆ ✔ Example: "Sv or Green Mode" */
|
|
1415
1315
|
AEProgramMode?: string;
|
|
1416
|
-
/** ★☆☆☆ ✔ Example: "Normal AE" */
|
|
1417
|
-
AESetting?: string;
|
|
1418
1316
|
/** ☆☆☆☆ Example: "Daylight Fluorescent" */
|
|
1419
1317
|
AEWhiteBalance?: string;
|
|
1420
1318
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
@@ -1437,8 +1335,6 @@ export interface MakerNotesTags {
|
|
|
1437
1335
|
AFAreaIllumination?: string;
|
|
1438
1336
|
/** ★★★☆ ✔ Example: "Zone AF" */
|
|
1439
1337
|
AFAreaMode?: string;
|
|
1440
|
-
/** ☆☆☆☆ ✔ Example: "Wide" */
|
|
1441
|
-
AFAreaModeSetting?: string;
|
|
1442
1338
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1443
1339
|
AFAreaPointSize?: string;
|
|
1444
1340
|
/** ☆☆☆☆ ✔ Example: "AF area selection button" */
|
|
@@ -1451,16 +1347,8 @@ export interface MakerNotesTags {
|
|
|
1451
1347
|
AFAreaWidths?: string;
|
|
1452
1348
|
/** ☆☆☆☆ ✔ Example: 3295 */
|
|
1453
1349
|
AFAreaXPosition?: number;
|
|
1454
|
-
/** ☆☆☆☆ Example: 632 */
|
|
1455
|
-
AFAreaXPosition1?: number;
|
|
1456
|
-
/** ★☆☆☆ ✔ Example: "999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 …" */
|
|
1457
|
-
AFAreaXPositions?: string;
|
|
1458
1350
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1459
1351
|
AFAreaYPosition?: number;
|
|
1460
|
-
/** ☆☆☆☆ Example: 420 */
|
|
1461
|
-
AFAreaYPosition1?: number;
|
|
1462
|
-
/** ★☆☆☆ ✔ Example: "9 0 0 0 0 0 0 0 0" */
|
|
1463
|
-
AFAreaYPositions?: string;
|
|
1464
1352
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1465
1353
|
AFAreaZoneSize?: string;
|
|
1466
1354
|
/** ☆☆☆☆ ✔ Example: "none" */
|
|
@@ -1483,20 +1371,12 @@ export interface MakerNotesTags {
|
|
|
1483
1371
|
AFFineTune?: string;
|
|
1484
1372
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1485
1373
|
AFFineTuneAdj?: string;
|
|
1486
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1487
|
-
AFFineTuneAdjTele?: number;
|
|
1488
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1489
|
-
AFFineTuneIndex?: string;
|
|
1490
1374
|
/** ☆☆☆☆ ✔ Example: "5L of Center" */
|
|
1491
1375
|
AFFocusPointXPosition?: string;
|
|
1492
1376
|
/** ☆☆☆☆ ✔ Example: "5U from Center" */
|
|
1493
1377
|
AFFocusPointYPosition?: string;
|
|
1494
1378
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1495
1379
|
AFIlluminator?: string;
|
|
1496
|
-
/** ★☆☆☆ ✔ Example: 88 */
|
|
1497
|
-
AFImageHeight?: number;
|
|
1498
|
-
/** ★☆☆☆ ✔ Example: 8688 */
|
|
1499
|
-
AFImageWidth?: number;
|
|
1500
1380
|
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
1501
1381
|
AFInfo2Version?: string;
|
|
1502
1382
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
@@ -1527,8 +1407,6 @@ export interface MakerNotesTags {
|
|
|
1527
1407
|
AFPointAreaExpansion?: string;
|
|
1528
1408
|
/** ☆☆☆☆ ✔ Example: "Left (vertical)" */
|
|
1529
1409
|
AFPointAtShutterRelease?: string;
|
|
1530
|
-
/** ☆☆☆☆ ✔ Example: "Control-direct:disable/Main:enable" */
|
|
1531
|
-
AFPointAutoSelection?: string;
|
|
1532
1410
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
1533
1411
|
AFPointBrightness?: string;
|
|
1534
1412
|
/** ☆☆☆☆ ✔ Example: "Selected (constant)" */
|
|
@@ -1547,8 +1425,6 @@ export interface MakerNotesTags {
|
|
|
1547
1425
|
AFPointSel?: string;
|
|
1548
1426
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1549
1427
|
AFPointSelected?: string;
|
|
1550
|
-
/** ☆☆☆☆ ✔ Example: "[11], [13]" */
|
|
1551
|
-
AFPointSelected2?: string;
|
|
1552
1428
|
/** ☆☆☆☆ ✔ Example: "H=AF+Main/V=AF+Command" */
|
|
1553
1429
|
AFPointSelection?: string;
|
|
1554
1430
|
/** ☆☆☆☆ ✔ Example: "Unknown (1046 1046)" */
|
|
@@ -1573,16 +1449,12 @@ export interface MakerNotesTags {
|
|
|
1573
1449
|
AFPointsUsed?: string;
|
|
1574
1450
|
/** ☆☆☆☆ ✔ Example: 903 */
|
|
1575
1451
|
AFPredictor?: number;
|
|
1576
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1577
|
-
AFTracking?: string;
|
|
1578
1452
|
/** ☆☆☆☆ ✔ Example: 127 */
|
|
1579
1453
|
AFTrackingSensitivity?: number;
|
|
1580
1454
|
/** ☆☆☆☆ ✔ Example: "79-point" */
|
|
1581
1455
|
AFType?: string;
|
|
1582
1456
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1583
1457
|
AFWithShutter?: string;
|
|
1584
|
-
/** ☆☆☆☆ ✔ Example: "Shooting not possible without focus" */
|
|
1585
|
-
AIServoContinuousShooting?: string;
|
|
1586
1458
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1587
1459
|
AIServoFirstImage?: string;
|
|
1588
1460
|
/** ☆☆☆☆ ✔ Example: "Equal priority" */
|
|
@@ -1631,6 +1503,8 @@ export interface MakerNotesTags {
|
|
|
1631
1503
|
Altitude?: string;
|
|
1632
1504
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1633
1505
|
AmbienceSelection?: string;
|
|
1506
|
+
/** ☆☆☆☆ ✔ Example: "40 C" */
|
|
1507
|
+
AmbientTemperature?: string;
|
|
1634
1508
|
/** ☆☆☆☆ Example: "95 F" */
|
|
1635
1509
|
AmbientTemperatureFahrenheit?: string;
|
|
1636
1510
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1641,16 +1515,10 @@ export interface MakerNotesTags {
|
|
|
1641
1515
|
ApertureRingUse?: string;
|
|
1642
1516
|
/** ☆☆☆☆ ✔ Example: 9.1 */
|
|
1643
1517
|
ApertureSetting?: number;
|
|
1644
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1645
|
-
ApplySettingsToLiveView?: string;
|
|
1646
|
-
/** ☆☆☆☆ ✔ Example: "Enable; 1; 2; 1; 128; 48; 0; 1" */
|
|
1647
|
-
ApplyShootingMeteringMode?: string;
|
|
1648
1518
|
/** ☆☆☆☆ Example: 8 */
|
|
1649
1519
|
ApproximateFNumber?: number;
|
|
1650
1520
|
/** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
|
|
1651
1521
|
ArtFilter?: string;
|
|
1652
|
-
/** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter; 0; 0;…" */
|
|
1653
|
-
ArtFilterEffect?: string;
|
|
1654
1522
|
/** ☆☆☆☆ Example: "Unknown (8305)" */
|
|
1655
1523
|
ArtMode?: string;
|
|
1656
1524
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
@@ -1735,8 +1603,6 @@ export interface MakerNotesTags {
|
|
|
1735
1603
|
AverageBlackLevel?: string;
|
|
1736
1604
|
/** ☆☆☆☆ ✔ Example: 9.875 */
|
|
1737
1605
|
AverageLV?: number;
|
|
1738
|
-
/** ☆☆☆☆ Example: 8 */
|
|
1739
|
-
BWFilter?: number;
|
|
1740
1606
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1741
1607
|
BWMode?: string;
|
|
1742
1608
|
/** ☆☆☆☆ ✔ Example: "99:99:99 00:00:00" */
|
|
@@ -1763,10 +1629,6 @@ export interface MakerNotesTags {
|
|
|
1763
1629
|
BatteryType?: string;
|
|
1764
1630
|
/** ☆☆☆☆ Example: "8.52 V" */
|
|
1765
1631
|
BatteryVoltage?: string;
|
|
1766
|
-
/** ☆☆☆☆ ✔ Example: "7.39 V" */
|
|
1767
|
-
BatteryVoltage1?: string;
|
|
1768
|
-
/** ☆☆☆☆ ✔ Example: "7.34 V" */
|
|
1769
|
-
BatteryVoltage2?: string;
|
|
1770
1632
|
/** ☆☆☆☆ Example: "BGGR" */
|
|
1771
1633
|
BayerPattern?: string;
|
|
1772
1634
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -1777,8 +1639,6 @@ export interface MakerNotesTags {
|
|
|
1777
1639
|
BeepVolume?: string;
|
|
1778
1640
|
/** ☆☆☆☆ Example: "Sports CS" */
|
|
1779
1641
|
BestShotMode?: string;
|
|
1780
|
-
/** ☆☆☆☆ ✔ Example: "94 95 93 93" */
|
|
1781
|
-
BlackLevel2?: string;
|
|
1782
1642
|
/** ☆☆☆☆ ✔ Example: "128 128 128 128" */
|
|
1783
1643
|
BlackLevels?: string;
|
|
1784
1644
|
/** ☆☆☆☆ ✔ Example: 2209 */
|
|
@@ -1807,14 +1667,6 @@ export interface MakerNotesTags {
|
|
|
1807
1667
|
BodyBatteryADNoLoad?: number;
|
|
1808
1668
|
/** ☆☆☆☆ ✔ Example: "Running Low" */
|
|
1809
1669
|
BodyBatteryState?: string;
|
|
1810
|
-
/** ☆☆☆☆ Example: "9.84 V" */
|
|
1811
|
-
BodyBatteryVoltage1?: string;
|
|
1812
|
-
/** ☆☆☆☆ Example: "9.49 V" */
|
|
1813
|
-
BodyBatteryVoltage2?: string;
|
|
1814
|
-
/** ☆☆☆☆ Example: "8.72 V" */
|
|
1815
|
-
BodyBatteryVoltage3?: string;
|
|
1816
|
-
/** ☆☆☆☆ Example: "7.30 V" */
|
|
1817
|
-
BodyBatteryVoltage4?: string;
|
|
1818
1670
|
/** ☆☆☆☆ Example: "RS1 :V01500000 " */
|
|
1819
1671
|
BodyFirmware?: string;
|
|
1820
1672
|
/** ☆☆☆☆ ✔ Example: 81 */
|
|
@@ -1829,12 +1681,8 @@ export interface MakerNotesTags {
|
|
|
1829
1681
|
BracketSequence?: string;
|
|
1830
1682
|
/** ☆☆☆☆ ✔ Example: "AE/Flash" */
|
|
1831
1683
|
BracketSet?: string;
|
|
1832
|
-
/** ☆☆☆☆ ✔ Example: "No Bracket" */
|
|
1833
|
-
BracketSettings?: string;
|
|
1834
1684
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1835
1685
|
BracketShotNumber?: number;
|
|
1836
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1837
|
-
BracketShotNumber2?: number;
|
|
1838
1686
|
/** ☆☆☆☆ Example: "Unknown (429458713)" */
|
|
1839
1687
|
BracketStep?: string;
|
|
1840
1688
|
/** ☆☆☆☆ ✔ Example: 12 */
|
|
@@ -1853,8 +1701,6 @@ export interface MakerNotesTags {
|
|
|
1853
1701
|
BurstSpeed?: number;
|
|
1854
1702
|
/** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
|
|
1855
1703
|
BurstUUID?: string;
|
|
1856
|
-
/** ☆☆☆☆ ✔ Example: "Normal (enable)" */
|
|
1857
|
-
ButtonFunctionControlOff?: string;
|
|
1858
1704
|
/** ☆☆☆☆ Example: 2 */
|
|
1859
1705
|
CCDBoardVersion?: number;
|
|
1860
1706
|
/** ☆☆☆☆ ✔ Example: "Interlaced" */
|
|
@@ -1881,8 +1727,6 @@ export interface MakerNotesTags {
|
|
|
1881
1727
|
CameraISO?: string;
|
|
1882
1728
|
/** ☆☆☆☆ ✔ Example: "Unknown (155)" */
|
|
1883
1729
|
CameraOrientation?: string;
|
|
1884
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 8964 bytes, use -b option to extract)" */
|
|
1885
|
-
CameraParameters?: string;
|
|
1886
1730
|
/** ☆☆☆☆ ✔ Example: "User Defined 3" */
|
|
1887
1731
|
CameraPictureStyle?: string;
|
|
1888
1732
|
/** ☆☆☆☆ Example: -90 */
|
|
@@ -1891,8 +1735,6 @@ export interface MakerNotesTags {
|
|
|
1891
1735
|
CameraRoll?: string;
|
|
1892
1736
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
1893
1737
|
CameraSettingsVersion?: string;
|
|
1894
|
-
/** ☆☆☆☆ ✔ Example: "uTough-3000" */
|
|
1895
|
-
CameraType2?: string;
|
|
1896
1738
|
/** ☆☆☆☆ Example: "+90.80" */
|
|
1897
1739
|
CameraYaw?: string;
|
|
1898
1740
|
/** ★★☆☆ ✔ Example: "Unknown (-1)" */
|
|
@@ -1905,14 +1747,10 @@ export interface MakerNotesTags {
|
|
|
1905
1747
|
CanonFirmwareVersion?: string;
|
|
1906
1748
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1907
1749
|
CanonFlashMode?: string;
|
|
1908
|
-
/** ★☆☆☆ ✔ Example: 768 */
|
|
1909
|
-
CanonImageHeight?: number;
|
|
1910
1750
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1911
1751
|
CanonImageSize?: string;
|
|
1912
1752
|
/** ★★☆☆ ✔ Example: "PIC:DC50 JPEG" */
|
|
1913
1753
|
CanonImageType?: string;
|
|
1914
|
-
/** ★☆☆☆ ✔ Example: 8688 */
|
|
1915
|
-
CanonImageWidth?: number;
|
|
1916
1754
|
/** ★★☆☆ ✔ Example: "XH A1S" */
|
|
1917
1755
|
CanonModelID?: string;
|
|
1918
1756
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1926,13 +1764,9 @@ export interface MakerNotesTags {
|
|
|
1926
1764
|
/** ☆☆☆☆ ✔ Example: "8 mm" */
|
|
1927
1765
|
CenterWeightedAreaSize?: string;
|
|
1928
1766
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1929
|
-
ChromaticAberrationCorr?: string;
|
|
1930
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1931
1767
|
ChromaticAberrationSetting?: string;
|
|
1932
1768
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
1933
1769
|
ChrominanceNoiseReduction?: string;
|
|
1934
|
-
/** ☆☆☆☆ ✔ Example: "San Francisco" */
|
|
1935
|
-
City2?: string;
|
|
1936
1770
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1937
1771
|
Clarity?: number;
|
|
1938
1772
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -1991,16 +1825,14 @@ export interface MakerNotesTags {
|
|
|
1991
1825
|
ColorMatrix?: string;
|
|
1992
1826
|
/** ☆☆☆☆ Example: "1.66016 -0.66016 0.00000 -0.20703 1.52734 -0.32031 -0.13281 -0.2…" */
|
|
1993
1827
|
ColorMatrixA?: string;
|
|
1994
|
-
/** ☆☆☆☆ Example: "5857 2334 0 0 8192 0 0 335 7856" */
|
|
1995
|
-
ColorMatrixA2?: string;
|
|
1996
1828
|
/** ☆☆☆☆ Example: "1.12793 -0.03674 -0.09119 -0.20703 1.52734 -0.32031 -0.13574 -0.…" */
|
|
1997
1829
|
ColorMatrixB?: string;
|
|
1998
|
-
/** ☆☆☆☆ Example: "13952 -4416 -1344 -1472 13792 -4128 128 -2816 10880" */
|
|
1999
|
-
ColorMatrixB2?: string;
|
|
2000
1830
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
2001
1831
|
ColorMatrixNumber?: number;
|
|
2002
1832
|
/** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; Magenta …" */
|
|
2003
1833
|
ColorProfileSettings?: string;
|
|
1834
|
+
/** ★☆☆☆ ✔ Example: "sRGB" */
|
|
1835
|
+
ColorSpace?: string;
|
|
2004
1836
|
/** ☆☆☆☆ ✔ Example: 8059 */
|
|
2005
1837
|
ColorTempAsShot?: number;
|
|
2006
1838
|
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
@@ -2009,10 +1841,6 @@ export interface MakerNotesTags {
|
|
|
2009
1841
|
ColorTempCloudy?: number;
|
|
2010
1842
|
/** ☆☆☆☆ ✔ Example: 5210 */
|
|
2011
1843
|
ColorTempCustom?: number;
|
|
2012
|
-
/** ☆☆☆☆ ✔ Example: 5200 */
|
|
2013
|
-
ColorTempCustom1?: number;
|
|
2014
|
-
/** ☆☆☆☆ ✔ Example: 5200 */
|
|
2015
|
-
ColorTempCustom2?: number;
|
|
2016
1844
|
/** ☆☆☆☆ ✔ Example: 5820 */
|
|
2017
1845
|
ColorTempDaylight?: number;
|
|
2018
1846
|
/** ☆☆☆☆ ✔ Example: 9826 */
|
|
@@ -2023,12 +1851,6 @@ export interface MakerNotesTags {
|
|
|
2023
1851
|
ColorTempKelvin?: number;
|
|
2024
1852
|
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
2025
1853
|
ColorTempMeasured?: number;
|
|
2026
|
-
/** ☆☆☆☆ ✔ Example: 5200 */
|
|
2027
|
-
ColorTempPC1?: number;
|
|
2028
|
-
/** ☆☆☆☆ ✔ Example: 5200 */
|
|
2029
|
-
ColorTempPC2?: number;
|
|
2030
|
-
/** ☆☆☆☆ ✔ Example: 5200 */
|
|
2031
|
-
ColorTempPC3?: number;
|
|
2032
1854
|
/** ☆☆☆☆ ✔ Example: 7563 */
|
|
2033
1855
|
ColorTempShade?: number;
|
|
2034
1856
|
/** ☆☆☆☆ ✔ Example: 3205 */
|
|
@@ -2049,22 +1871,6 @@ export interface MakerNotesTags {
|
|
|
2049
1871
|
ColorTone?: string;
|
|
2050
1872
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2051
1873
|
ColorToneAuto?: number;
|
|
2052
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2053
|
-
ColorToneFaithful?: number;
|
|
2054
|
-
/** ☆☆☆☆ ✔ Example: 11 */
|
|
2055
|
-
ColorToneLandscape?: number;
|
|
2056
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2057
|
-
ColorToneNeutral?: number;
|
|
2058
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2059
|
-
ColorTonePortrait?: number;
|
|
2060
|
-
/** ☆☆☆☆ ✔ Example: 15663191 */
|
|
2061
|
-
ColorToneStandard?: number;
|
|
2062
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2063
|
-
ColorToneUserDef1?: number;
|
|
2064
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
2065
|
-
ColorToneUserDef2?: number;
|
|
2066
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2067
|
-
ColorToneUserDef3?: number;
|
|
2068
1874
|
/** ☆☆☆☆ ✔ Example: "Standard (Main Shutter, Sub Aperture)" */
|
|
2069
1875
|
CommandDials?: string;
|
|
2070
1876
|
/** ☆☆☆☆ ✔ Example: "Sub-command Dial" */
|
|
@@ -2137,34 +1943,16 @@ export interface MakerNotesTags {
|
|
|
2137
1943
|
ContrastDetectAFArea?: string;
|
|
2138
1944
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2139
1945
|
ContrastDetectAFInFocus?: string;
|
|
2140
|
-
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2141
|
-
ContrastFaithful?: number;
|
|
2142
1946
|
/** ☆☆☆☆ Example: 0 */
|
|
2143
1947
|
ContrastHighlight?: number;
|
|
2144
1948
|
/** ☆☆☆☆ Example: "Off" */
|
|
2145
1949
|
ContrastHighlightShadowAdj?: string;
|
|
2146
|
-
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2147
|
-
ContrastLandscape?: number;
|
|
2148
1950
|
/** ☆☆☆☆ ✔ Example: "Unknown (19)" */
|
|
2149
1951
|
ContrastMode?: string;
|
|
2150
|
-
/** ☆☆☆☆ ✔ Example: 524288 */
|
|
2151
|
-
ContrastMonochrome?: number;
|
|
2152
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2153
|
-
ContrastNeutral?: number;
|
|
2154
|
-
/** ☆☆☆☆ ✔ Example: 9699328 */
|
|
2155
|
-
ContrastPortrait?: number;
|
|
2156
1952
|
/** ☆☆☆☆ ✔ Example: "1 (min -5, max 5)" */
|
|
2157
1953
|
ContrastSetting?: string;
|
|
2158
1954
|
/** ☆☆☆☆ Example: 0 */
|
|
2159
1955
|
ContrastShadow?: number;
|
|
2160
|
-
/** ☆☆☆☆ ✔ Example: 12058626 */
|
|
2161
|
-
ContrastStandard?: number;
|
|
2162
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
2163
|
-
ContrastUserDef1?: number;
|
|
2164
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2165
|
-
ContrastUserDef2?: number;
|
|
2166
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2167
|
-
ContrastUserDef3?: number;
|
|
2168
1956
|
/** ☆☆☆☆ ✔ Example: "Shutter Speed" */
|
|
2169
1957
|
ControlDialSet?: string;
|
|
2170
1958
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
@@ -2177,8 +1965,6 @@ export interface MakerNotesTags {
|
|
|
2177
1965
|
ConversionLens?: string;
|
|
2178
1966
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2179
1967
|
Converter?: number;
|
|
2180
|
-
/** ☆☆☆☆ ✔ Example: 72 */
|
|
2181
|
-
CoringFilter?: number;
|
|
2182
1968
|
/** ☆☆☆☆ Example: 6807 */
|
|
2183
1969
|
CorrelatedColorTemp?: number;
|
|
2184
1970
|
/** ☆☆☆☆ ✔ Example: "United States" */
|
|
@@ -2219,8 +2005,6 @@ export interface MakerNotesTags {
|
|
|
2219
2005
|
CroppedImageWidth?: number;
|
|
2220
2006
|
/** ☆☆☆☆ Example: "Off" */
|
|
2221
2007
|
CrossProcess?: string;
|
|
2222
|
-
/** ☆☆☆☆ ✔ Example: "20 0 19 2 0 65535 65535 65535 2 2 0 65535 65535 65535 18 2 4 2 8…" */
|
|
2223
|
-
CustomControls?: string;
|
|
2224
2008
|
/** ☆☆☆☆ ✔ Example: "P-STUDIO" */
|
|
2225
2009
|
CustomPictureStyleFileName?: string;
|
|
2226
2010
|
/** ☆☆☆☆ ✔ Example: "CS3 (min CS0, max CS4)" */
|
|
@@ -2249,8 +2033,6 @@ export interface MakerNotesTags {
|
|
|
2249
2033
|
DarkFocusEnvironment?: string;
|
|
2250
2034
|
/** ★★☆☆ ✔ Example: "(Binary data 8918 bytes, use -b option to extract)" */
|
|
2251
2035
|
DataDump?: string;
|
|
2252
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 6660 bytes, use -b option to extract)" */
|
|
2253
|
-
DataDump2?: string;
|
|
2254
2036
|
/** ☆☆☆☆ ✔ Example: 8289 */
|
|
2255
2037
|
DataScaling?: number;
|
|
2256
2038
|
/** ☆☆☆☆ ✔ Example: 2016-03-30 */
|
|
@@ -2261,14 +2043,10 @@ export interface MakerNotesTags {
|
|
|
2261
2043
|
DateImprint?: string;
|
|
2262
2044
|
/** ★★☆☆ ✔ Example: "Off" */
|
|
2263
2045
|
DateStampMode?: string;
|
|
2264
|
-
/** ☆☆☆☆ ✔ Example: 2016-10-13T00:12:27.000 */
|
|
2265
|
-
DateTime1?: ExifDateTime | string;
|
|
2266
|
-
/** ☆☆☆☆ ✔ Example: 2016-10-13T00:12:27.000 */
|
|
2267
|
-
DateTime2?: ExifDateTime | string;
|
|
2268
2046
|
/** ☆☆☆☆ Example: "Off" */
|
|
2269
2047
|
DateTimeStamp?: string;
|
|
2270
2048
|
/** ☆☆☆☆ ✔ Example: "0000:00:00 00:00:00" */
|
|
2271
|
-
DateTimeUTC?: string;
|
|
2049
|
+
DateTimeUTC?: ExifDateTime | string;
|
|
2272
2050
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2273
2051
|
DaylightSavings?: string;
|
|
2274
2052
|
/** ☆☆☆☆ ✔ Example: "Erase selected" */
|
|
@@ -2281,8 +2059,6 @@ export interface MakerNotesTags {
|
|
|
2281
2059
|
DestinationCityCode?: string;
|
|
2282
2060
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2283
2061
|
DestinationDST?: string;
|
|
2284
|
-
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2285
|
-
DevelopmentDynamicRange?: number;
|
|
2286
2062
|
/** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
|
|
2287
2063
|
DeviceType?: string;
|
|
2288
2064
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
@@ -2291,20 +2067,12 @@ export interface MakerNotesTags {
|
|
|
2291
2067
|
DiffractionCorrection?: string;
|
|
2292
2068
|
/** ☆☆☆☆ Example: "Vivid" */
|
|
2293
2069
|
DigitalFilter?: string;
|
|
2294
|
-
/** ☆☆☆☆ Example: ["Toy Camera","Shading=2","Blur=2","ToneBreak=Red"] */
|
|
2295
|
-
DigitalFilter01?: string[];
|
|
2296
2070
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2297
2071
|
DigitalGain?: number;
|
|
2298
2072
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2299
2073
|
DigitalICE?: string;
|
|
2300
2074
|
/** ☆☆☆☆ Example: "On" */
|
|
2301
2075
|
DigitalZoomOn?: string;
|
|
2302
|
-
/** ☆☆☆☆ ✔ Example: 897 */
|
|
2303
|
-
DirectoryIndex?: number;
|
|
2304
|
-
/** ☆☆☆☆ ✔ Example: 103 */
|
|
2305
|
-
DirectoryIndex2?: number;
|
|
2306
|
-
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2307
|
-
DirectoryNumber?: number;
|
|
2308
2076
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2309
2077
|
DisplayAllAFPoints?: string;
|
|
2310
2078
|
/** ☆☆☆☆ ✔ Example: 9.5 */
|
|
@@ -2315,14 +2083,8 @@ export interface MakerNotesTags {
|
|
|
2315
2083
|
DistortionCorrParamsNumber?: string;
|
|
2316
2084
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2317
2085
|
DistortionCorrParamsPresent?: string;
|
|
2318
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2319
|
-
DistortionCorrection2?: string;
|
|
2320
2086
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2321
2087
|
DistortionCorrectionSetting?: string;
|
|
2322
|
-
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2323
|
-
DistortionCorrectionValue?: number;
|
|
2324
|
-
/** ☆☆☆☆ ✔ Example: "Speed Priority Continuous" */
|
|
2325
|
-
DriveMode2?: string;
|
|
2326
2088
|
/** ☆☆☆☆ ✔ Example: "Single Frame" */
|
|
2327
2089
|
DriveModeSetting?: string;
|
|
2328
2090
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2403,8 +2165,6 @@ export interface MakerNotesTags {
|
|
|
2403
2165
|
ExposureCompAutoCancel?: string;
|
|
2404
2166
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2405
2167
|
ExposureCompStepSize?: string;
|
|
2406
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2407
|
-
ExposureCompensation2?: number;
|
|
2408
2168
|
/** ☆☆☆☆ ✔ Example: "Ambient and Flash" */
|
|
2409
2169
|
ExposureCompensationMode?: string;
|
|
2410
2170
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2428,11 +2188,7 @@ export interface MakerNotesTags {
|
|
|
2428
2188
|
/** ☆☆☆☆ ✔ Example: "Spot metering" */
|
|
2429
2189
|
ExposureModeInManual?: string;
|
|
2430
2190
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2431
|
-
ExposureShift?: number;
|
|
2432
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2433
2191
|
ExposureStandardAdjustment?: number;
|
|
2434
|
-
/** ☆☆☆☆ Example: "1/80" */
|
|
2435
|
-
ExposureTime2?: string;
|
|
2436
2192
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2437
2193
|
ExposureTuning?: number;
|
|
2438
2194
|
/** ★☆☆☆ ✔ Example: "Good" */
|
|
@@ -2441,14 +2197,8 @@ export interface MakerNotesTags {
|
|
|
2441
2197
|
ExtendedShutterSpeeds?: string;
|
|
2442
2198
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2443
2199
|
ExtendedWBDetect?: string;
|
|
2444
|
-
/** ☆☆☆☆
|
|
2445
|
-
|
|
2446
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2447
|
-
ExtenderFirmwareVersion?: number;
|
|
2448
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
2449
|
-
ExtenderModel?: string;
|
|
2450
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
2451
|
-
ExtenderSerialNumber?: string;
|
|
2200
|
+
/** ☆☆☆☆ Example: "Not attached" */
|
|
2201
|
+
ExtenderStatus?: string;
|
|
2452
2202
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2453
2203
|
ExternalFlash?: string;
|
|
2454
2204
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2475,8 +2225,6 @@ export interface MakerNotesTags {
|
|
|
2475
2225
|
ExternalFlashZoom?: number;
|
|
2476
2226
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
2477
2227
|
ExternalFlashZoomOverride?: string;
|
|
2478
|
-
/** ☆☆☆☆ Example: 9.14 */
|
|
2479
|
-
ExternalSensorBrightnessValue?: number;
|
|
2480
2228
|
/** ☆☆☆☆ ✔ Example: "0.1.0.1" */
|
|
2481
2229
|
ExtraInfoVersion?: string;
|
|
2482
2230
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2509,8 +2257,6 @@ export interface MakerNotesTags {
|
|
|
2509
2257
|
FacePosition?: string;
|
|
2510
2258
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
2511
2259
|
FacePositions?: string;
|
|
2512
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2513
|
-
FaceRecognition?: string;
|
|
2514
2260
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2515
2261
|
FaceWidth?: number;
|
|
2516
2262
|
/** ★★★☆ ✔ Example: 65535 */
|
|
@@ -2521,10 +2267,8 @@ export interface MakerNotesTags {
|
|
|
2521
2267
|
Fade?: number;
|
|
2522
2268
|
/** ☆☆☆☆ ✔ Example: 9984 */
|
|
2523
2269
|
FileIndex?: number;
|
|
2524
|
-
/**
|
|
2525
|
-
|
|
2526
|
-
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2527
|
-
FileInfoVersion?: string;
|
|
2270
|
+
/** ★★☆☆ ✔ Example: "986-8698" */
|
|
2271
|
+
FileNumber?: string;
|
|
2528
2272
|
/** ☆☆☆☆ Example: "Unknown (65537)" */
|
|
2529
2273
|
FileNumberMemory?: string;
|
|
2530
2274
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2541,14 +2285,6 @@ export interface MakerNotesTags {
|
|
|
2541
2285
|
FilterEffect?: string;
|
|
2542
2286
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2543
2287
|
FilterEffectAuto?: string;
|
|
2544
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
|
|
2545
|
-
FilterEffectMonochrome?: string;
|
|
2546
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2547
|
-
FilterEffectUserDef1?: string;
|
|
2548
|
-
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2549
|
-
FilterEffectUserDef2?: string;
|
|
2550
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0xfb0000)" */
|
|
2551
|
-
FilterEffectUserDef3?: string;
|
|
2552
2288
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2553
2289
|
FinderDisplayDuringExposure?: string;
|
|
2554
2290
|
/** ☆☆☆☆ ✔ Example: "On; Normal" */
|
|
@@ -2561,29 +2297,15 @@ export interface MakerNotesTags {
|
|
|
2561
2297
|
FineTuneOptMatrixMetering?: number;
|
|
2562
2298
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2563
2299
|
FineTuneOptSpotMetering?: number;
|
|
2564
|
-
/** ☆☆☆☆ ✔ Example: "u77" */
|
|
2565
|
-
Firmware?: string;
|
|
2566
|
-
/** ☆☆☆☆ Example: 8864 */
|
|
2567
|
-
Firmware2?: number;
|
|
2568
2300
|
/** ☆☆☆☆ Example: "2015:11:09 08:38" */
|
|
2569
2301
|
FirmwareDate?: string;
|
|
2570
2302
|
/** ☆☆☆☆ ✔ Example: "NX1_000000" */
|
|
2571
2303
|
FirmwareName?: string;
|
|
2572
2304
|
/** ★☆☆☆ ✔ Example: "Rev01500000" */
|
|
2573
2305
|
FirmwareRevision?: string;
|
|
2574
|
-
/** ☆☆☆☆ Example: "Rev01500000" */
|
|
2575
|
-
FirmwareRevision2?: string;
|
|
2576
|
-
/** ☆☆☆☆ ✔ Example: "01.00.d0" */
|
|
2577
|
-
FirmwareVersion2?: string;
|
|
2578
|
-
/** ☆☆☆☆ ✔ Example: "01.00.00" */
|
|
2579
|
-
FirmwareVersion3?: string;
|
|
2580
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2581
|
-
FisheyeFilter?: string;
|
|
2582
2306
|
/** ☆☆☆☆ ✔ Example: "Fired" */
|
|
2583
2307
|
FlashAction?: string;
|
|
2584
2308
|
/** ☆☆☆☆ ✔ Example: "Did not fire" */
|
|
2585
|
-
FlashAction2?: string;
|
|
2586
|
-
/** ☆☆☆☆ ✔ Example: "Did not fire" */
|
|
2587
2309
|
FlashActionExternal?: string;
|
|
2588
2310
|
/** ☆☆☆☆ ✔ Example: 255 */
|
|
2589
2311
|
FlashActivity?: number;
|
|
@@ -2619,18 +2341,10 @@ export interface MakerNotesTags {
|
|
|
2619
2341
|
FlashExposureBracketValue?: number;
|
|
2620
2342
|
/** ★★★☆ ✔ Example: 10 */
|
|
2621
2343
|
FlashExposureComp?: number;
|
|
2622
|
-
/** ☆☆☆☆ ✔ Example: */
|
|
2623
|
-
FlashExposureComp2?: string;
|
|
2624
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2625
|
-
FlashExposureComp3?: number;
|
|
2626
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2627
|
-
FlashExposureComp4?: number;
|
|
2628
2344
|
/** ☆☆☆☆ ✔ Example: "Entire frame" */
|
|
2629
2345
|
FlashExposureCompArea?: string;
|
|
2630
2346
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2631
2347
|
FlashExposureCompSet?: number;
|
|
2632
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2633
|
-
FlashExposureCompSet2?: number;
|
|
2634
2348
|
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
2635
2349
|
FlashExposureIndicator?: string;
|
|
2636
2350
|
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
@@ -2663,8 +2377,6 @@ export interface MakerNotesTags {
|
|
|
2663
2377
|
FlashGroupCCompensation?: number;
|
|
2664
2378
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2665
2379
|
FlashGroupCControlMode?: string;
|
|
2666
|
-
/** ★★☆☆ ✔ Example: 9 */
|
|
2667
|
-
FlashGuideNumber?: number;
|
|
2668
2380
|
/** ☆☆☆☆ ✔ Example: "0300" */
|
|
2669
2381
|
FlashInfoVersion?: string;
|
|
2670
2382
|
/** ☆☆☆☆ ✔ Example: "n/a (x4)" */
|
|
@@ -2683,8 +2395,6 @@ export interface MakerNotesTags {
|
|
|
2683
2395
|
FlashModel?: string;
|
|
2684
2396
|
/** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2685
2397
|
FlashOptions?: string;
|
|
2686
|
-
/** ☆☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2687
|
-
FlashOptions2?: string;
|
|
2688
2398
|
/** ★☆☆☆ ✔ Example: 94 */
|
|
2689
2399
|
FlashOutput?: number;
|
|
2690
2400
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2713,50 +2423,16 @@ export interface MakerNotesTags {
|
|
|
2713
2423
|
FlashWarning?: string;
|
|
2714
2424
|
/** ☆☆☆☆ ✔ Example: "320 262" */
|
|
2715
2425
|
FlexibleSpotPosition?: string;
|
|
2716
|
-
/** ☆☆☆☆ ✔ Example: "Left to Right" */
|
|
2717
|
-
FlickAdvanceDirection?: string;
|
|
2718
2426
|
/** ☆☆☆☆ Example: "On" */
|
|
2719
2427
|
FlickerReduce?: string;
|
|
2720
2428
|
/** ☆☆☆☆ ✔ Example: "Off (0x3223)" */
|
|
2721
2429
|
FlickerReduction?: string;
|
|
2722
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2723
|
-
FlickerReductionIndicator?: string;
|
|
2724
2430
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2725
2431
|
FlickerReductionShooting?: string;
|
|
2726
|
-
/** ☆☆☆☆ ✔ Example: "73.4 mm" */
|
|
2727
|
-
FocalLength2?: string;
|
|
2728
2432
|
/** ☆☆☆☆ ✔ Example: "70.0 mm" */
|
|
2729
2433
|
FocalLengthTeleZoom?: string;
|
|
2730
2434
|
/** ☆☆☆☆ ✔ Example: "640 428" */
|
|
2731
2435
|
FocalPlaneAFPointArea?: string;
|
|
2732
|
-
/** ☆☆☆☆ ✔ Example: "458 260" */
|
|
2733
|
-
FocalPlaneAFPointLocation1?: string;
|
|
2734
|
-
/** ☆☆☆☆ ✔ Example: "375 156" */
|
|
2735
|
-
FocalPlaneAFPointLocation10?: string;
|
|
2736
|
-
/** ☆☆☆☆ ✔ Example: "375 115" */
|
|
2737
|
-
FocalPlaneAFPointLocation11?: string;
|
|
2738
|
-
/** ☆☆☆☆ ✔ Example: "393 156" */
|
|
2739
|
-
FocalPlaneAFPointLocation12?: string;
|
|
2740
|
-
/** ☆☆☆☆ ✔ Example: "393 176" */
|
|
2741
|
-
FocalPlaneAFPointLocation13?: string;
|
|
2742
|
-
/** ☆☆☆☆ ✔ Example: "375 176" */
|
|
2743
|
-
FocalPlaneAFPointLocation14?: string;
|
|
2744
|
-
/** ☆☆☆☆ ✔ Example: "481 260" */
|
|
2745
|
-
FocalPlaneAFPointLocation2?: string;
|
|
2746
|
-
/** ☆☆☆☆ ✔ Example: "481 284" */
|
|
2747
|
-
FocalPlaneAFPointLocation3?: string;
|
|
2748
|
-
/** ☆☆☆☆ ✔ Example: "458 284" */
|
|
2749
|
-
FocalPlaneAFPointLocation4?: string;
|
|
2750
|
-
/** ☆☆☆☆ ✔ Example: "435 284" */
|
|
2751
|
-
FocalPlaneAFPointLocation5?: string;
|
|
2752
|
-
/** ☆☆☆☆ ✔ Example: "435 260" */
|
|
2753
|
-
FocalPlaneAFPointLocation6?: string;
|
|
2754
|
-
/** ☆☆☆☆ ✔ Example: "435 236" */
|
|
2755
|
-
FocalPlaneAFPointLocation7?: string;
|
|
2756
|
-
/** ☆☆☆☆ ✔ Example: "458 236" */
|
|
2757
|
-
FocalPlaneAFPointLocation8?: string;
|
|
2758
|
-
/** ☆☆☆☆ ✔ Example: "481 236" */
|
|
2759
|
-
FocalPlaneAFPointLocation9?: string;
|
|
2760
2436
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
2761
2437
|
FocalPlaneAFPointsUsed?: number;
|
|
2762
2438
|
/** ★☆☆☆ ✔ Example: "9.45 mm" */
|
|
@@ -2781,10 +2457,6 @@ export interface MakerNotesTags {
|
|
|
2781
2457
|
FocusContinuous?: string;
|
|
2782
2458
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2783
2459
|
FocusDisplayAIServoAndMF?: string;
|
|
2784
|
-
/** ★☆☆☆ ✔ Example: "inf" */
|
|
2785
|
-
FocusDistanceLower?: string;
|
|
2786
|
-
/** ★☆☆☆ ✔ Example: "inf" */
|
|
2787
|
-
FocusDistanceUpper?: string;
|
|
2788
2460
|
/** ☆☆☆☆ ✔ Example: "450x359" */
|
|
2789
2461
|
FocusFrameSize?: string;
|
|
2790
2462
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
@@ -2796,8 +2468,6 @@ export interface MakerNotesTags {
|
|
|
2796
2468
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2797
2469
|
FocusLocked?: string;
|
|
2798
2470
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2799
|
-
FocusMode2?: string;
|
|
2800
|
-
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2801
2471
|
FocusModeSetting?: string;
|
|
2802
2472
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
2803
2473
|
FocusModeSwitch?: string;
|
|
@@ -2811,8 +2481,6 @@ export interface MakerNotesTags {
|
|
|
2811
2481
|
FocusPointWrap?: string;
|
|
2812
2482
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2813
2483
|
FocusPosition?: number;
|
|
2814
|
-
/** ☆☆☆☆ ✔ Example: 255 */
|
|
2815
|
-
FocusPosition2?: number;
|
|
2816
2484
|
/** ☆☆☆☆ ✔ Example: "AF Used; 96" */
|
|
2817
2485
|
FocusProcess?: string;
|
|
2818
2486
|
/** ★★☆☆ ✔ Example: "Unknown (2)" */
|
|
@@ -2835,16 +2503,12 @@ export interface MakerNotesTags {
|
|
|
2835
2503
|
FocusWarning?: string;
|
|
2836
2504
|
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2837
2505
|
FocusingScreen?: string;
|
|
2838
|
-
/** ☆☆☆☆ Example: "Standard Form" */
|
|
2839
|
-
FolderName?: string;
|
|
2840
2506
|
/** ☆☆☆☆ ✔ Example: 373 */
|
|
2841
2507
|
FolderNumber?: number;
|
|
2842
2508
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2843
2509
|
FramingGridDisplay?: string;
|
|
2844
2510
|
/** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
|
|
2845
2511
|
FreeBytes?: string;
|
|
2846
|
-
/** ☆☆☆☆ ✔ Example: 805 */
|
|
2847
|
-
FreeMemoryCardImages?: number;
|
|
2848
2512
|
/** ★☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2849
2513
|
FujiFlashMode?: string;
|
|
2850
2514
|
/** ☆☆☆☆ ✔ Example: "9504x6336" */
|
|
@@ -2875,8 +2539,6 @@ export interface MakerNotesTags {
|
|
|
2875
2539
|
Gradation?: string;
|
|
2876
2540
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2877
2541
|
GrainEffect?: string;
|
|
2878
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2879
|
-
GrainyBWFilter?: string;
|
|
2880
2542
|
/** ☆☆☆☆ Example: "2E" */
|
|
2881
2543
|
GreenGain?: string;
|
|
2882
2544
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2893,10 +2555,6 @@ export interface MakerNotesTags {
|
|
|
2893
2555
|
HDMIBitDepth?: string;
|
|
2894
2556
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2895
2557
|
HDMIExternalRecorder?: string;
|
|
2896
|
-
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2897
|
-
HDMIOutputRange?: string;
|
|
2898
|
-
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2899
|
-
HDMIOutputResolution?: string;
|
|
2900
2558
|
/** ★☆☆☆ ✔ Example: "On" */
|
|
2901
2559
|
HDR?: string;
|
|
2902
2560
|
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
@@ -2907,16 +2565,12 @@ export interface MakerNotesTags {
|
|
|
2907
2565
|
HDRInfoVersion?: string;
|
|
2908
2566
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2909
2567
|
HDRLevel?: string;
|
|
2910
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2911
|
-
HDRLevel2?: string;
|
|
2912
2568
|
/** ☆☆☆☆ ✔ Example: "Unknown (1)" */
|
|
2913
2569
|
HDRShot?: string;
|
|
2914
2570
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2915
2571
|
HDRSmoothing?: string;
|
|
2916
2572
|
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
2917
2573
|
HighISONoiseReduction?: string;
|
|
2918
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2919
|
-
HighISONoiseReduction2?: string;
|
|
2920
2574
|
/** ☆☆☆☆ Example: 4 */
|
|
2921
2575
|
HighLowKeyAdj?: number;
|
|
2922
2576
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2925,8 +2579,6 @@ export interface MakerNotesTags {
|
|
|
2925
2579
|
Highlight?: number;
|
|
2926
2580
|
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
2927
2581
|
HighlightShadow?: string;
|
|
2928
|
-
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
2929
|
-
HighlightTone?: string;
|
|
2930
2582
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2931
2583
|
HighlightTonePriority?: string;
|
|
2932
2584
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
@@ -2969,8 +2621,6 @@ export interface MakerNotesTags {
|
|
|
2969
2621
|
ISODisplay?: string;
|
|
2970
2622
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2971
2623
|
ISOExpansion?: string;
|
|
2972
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2973
|
-
ISOExpansion2?: string;
|
|
2974
2624
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2975
2625
|
ISOFloor?: number;
|
|
2976
2626
|
/** ☆☆☆☆ Example: "Auto" */
|
|
@@ -2985,8 +2635,6 @@ export interface MakerNotesTags {
|
|
|
2985
2635
|
ISOSpeedExpansion?: string;
|
|
2986
2636
|
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
2987
2637
|
ISOSpeedIncrements?: string;
|
|
2988
|
-
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
2989
|
-
ISOSpeedRange?: string;
|
|
2990
2638
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2991
2639
|
ISOStepSize?: string;
|
|
2992
2640
|
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
@@ -3011,12 +2659,8 @@ export interface MakerNotesTags {
|
|
|
3011
2659
|
ImageEditing?: string;
|
|
3012
2660
|
/** ☆☆☆☆ Example: "Standard" */
|
|
3013
2661
|
ImageEffects?: string;
|
|
3014
|
-
/** ☆☆☆☆ ✔ Example: "Re-developed from RAW" */
|
|
3015
|
-
ImageGeneration?: string;
|
|
3016
2662
|
/** ☆☆☆☆ Example: 912 */
|
|
3017
2663
|
ImageIDNumber?: number;
|
|
3018
|
-
/** ☆☆☆☆ Example: 804 */
|
|
3019
|
-
ImageNumber2?: number;
|
|
3020
2664
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3021
2665
|
ImageOptimization?: string;
|
|
3022
2666
|
/** ☆☆☆☆ ✔ Example: "Red Eye Ruduction ;" */
|
|
@@ -3025,8 +2669,6 @@ export interface MakerNotesTags {
|
|
|
3025
2669
|
ImageProcessingVersion?: string;
|
|
3026
2670
|
/** ☆☆☆☆ ✔ Example: "Very High" */
|
|
3027
2671
|
ImageQuality?: string;
|
|
3028
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (6)" */
|
|
3029
|
-
ImageQuality2?: string;
|
|
3030
2672
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3031
2673
|
ImageReview?: string;
|
|
3032
2674
|
/** ☆☆☆☆ ✔ Example: "4 s" */
|
|
@@ -3049,8 +2691,6 @@ export interface MakerNotesTags {
|
|
|
3049
2691
|
ImageTemperatureMin?: number;
|
|
3050
2692
|
/** ☆☆☆☆ ✔ Example: "Vibrant" */
|
|
3051
2693
|
ImageTone?: string;
|
|
3052
|
-
/** ☆☆☆☆ ✔ Example: "Displays shooting functions" */
|
|
3053
|
-
InfoButtonWhenShooting?: string;
|
|
3054
2694
|
/** ☆☆☆☆ Example: "On" */
|
|
3055
2695
|
InfraredIlluminator?: string;
|
|
3056
2696
|
/** ☆☆☆☆ ✔ Example: "Manual AF point" */
|
|
@@ -3101,14 +2741,6 @@ export interface MakerNotesTags {
|
|
|
3101
2741
|
JpgRecordedPixels?: string;
|
|
3102
2742
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3103
2743
|
KeystoneCompensation?: string;
|
|
3104
|
-
/** ☆☆☆☆ ✔ Example: "Vertical" */
|
|
3105
|
-
KeystoneDirection?: string;
|
|
3106
|
-
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
3107
|
-
KeystoneValue?: string;
|
|
3108
|
-
/** ☆☆☆☆ Example: 864 */
|
|
3109
|
-
KodakImageHeight?: number;
|
|
3110
|
-
/** ☆☆☆☆ Example: 800 */
|
|
3111
|
-
KodakImageWidth?: number;
|
|
3112
2744
|
/** ☆☆☆☆ Example: "SKodakCommonInfo Jaguar7" */
|
|
3113
2745
|
KodakInfoType?: string;
|
|
3114
2746
|
/** ☆☆☆☆ Example: "Kodak " */
|
|
@@ -3129,20 +2761,12 @@ export interface MakerNotesTags {
|
|
|
3129
2761
|
LCDIlluminationDuringBulb?: string;
|
|
3130
2762
|
/** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
|
|
3131
2763
|
LCDPanels?: string;
|
|
3132
|
-
/** ☆☆☆☆ ✔ Example: "Masked" */
|
|
3133
|
-
LVShootingAreaDisplay?: string;
|
|
3134
|
-
/** ☆☆☆☆ ✔ Example: "UNICORN THEATRE FOR CHILDREN" */
|
|
3135
|
-
Landmark?: string;
|
|
3136
|
-
/** ☆☆☆☆ ✔ Example: "English" */
|
|
3137
|
-
Language?: string;
|
|
3138
2764
|
/** ☆☆☆☆ Example: 92 */
|
|
3139
2765
|
LastFileNumber?: number;
|
|
3140
2766
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3141
2767
|
LateralChromaticAberration?: string;
|
|
3142
2768
|
/** ☆☆☆☆ Example: "4.0 to 22" */
|
|
3143
2769
|
LensApertureRange?: string;
|
|
3144
|
-
/** ☆☆☆☆ ✔ Example: "Aperture" */
|
|
3145
|
-
LensControlRing?: string;
|
|
3146
2770
|
/** ☆☆☆☆ ✔ Example: "0801" */
|
|
3147
2771
|
LensDataVersion?: string;
|
|
3148
2772
|
/** ☆☆☆☆ ✔ Example: "97 154 172 70 104 114" */
|
|
@@ -3165,8 +2789,6 @@ export interface MakerNotesTags {
|
|
|
3165
2789
|
LensFocusFunctionButtons?: string;
|
|
3166
2790
|
/** ☆☆☆☆ ✔ Example: "Unknown (72)" */
|
|
3167
2791
|
LensFormat?: string;
|
|
3168
|
-
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3169
|
-
LensFunc1Button?: string;
|
|
3170
2792
|
/** ☆☆☆☆ ✔ Example: "AF-On" */
|
|
3171
2793
|
LensFunc2Button?: string;
|
|
3172
2794
|
/** ☆☆☆☆ ✔ Example: 93 */
|
|
@@ -3177,21 +2799,15 @@ export interface MakerNotesTags {
|
|
|
3177
2799
|
LensModulationOptimizer?: string;
|
|
3178
2800
|
/** ☆☆☆☆ ✔ Example: "Unknown (74)" */
|
|
3179
2801
|
LensMount?: string;
|
|
3180
|
-
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
3181
|
-
LensMount2?: string;
|
|
3182
|
-
/** ☆☆☆☆ ✔ Example: "0xe253" */
|
|
3183
|
-
LensProperties?: string;
|
|
3184
2802
|
/** ☆☆☆☆ Example: "Xcenter=1456 Ycenter=1068 GainMax=16" */
|
|
3185
2803
|
LensShading?: string;
|
|
3186
2804
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3187
2805
|
LensShutterLock?: string;
|
|
3188
|
-
/** ☆☆☆☆ ✔ Example: "ZA SSM II" */
|
|
3189
|
-
LensSpecFeatures?: string;
|
|
3190
2806
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
3191
2807
|
LensTemperature?: number;
|
|
3192
|
-
/** ☆☆☆☆
|
|
2808
|
+
/** ☆☆☆☆ Example: */
|
|
3193
2809
|
LensType2?: string;
|
|
3194
|
-
/** ☆☆☆☆
|
|
2810
|
+
/** ☆☆☆☆ Example: */
|
|
3195
2811
|
LensType3?: string;
|
|
3196
2812
|
/** ☆☆☆☆ Example: 2 */
|
|
3197
2813
|
LensTypeMake?: number;
|
|
@@ -3205,8 +2821,6 @@ export interface MakerNotesTags {
|
|
|
3205
2821
|
LevelOrientation?: string;
|
|
3206
2822
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3207
2823
|
LightCondition?: number;
|
|
3208
|
-
/** ☆☆☆☆ Example: 8 */
|
|
3209
|
-
LightReading?: number;
|
|
3210
2824
|
/** ☆☆☆☆ Example: "Unknown (512)" */
|
|
3211
2825
|
LightSourceSpecial?: string;
|
|
3212
2826
|
/** ☆☆☆☆ ✔ Example: "LCD Backlight and Shooting Information" */
|
|
@@ -3233,8 +2847,6 @@ export interface MakerNotesTags {
|
|
|
3233
2847
|
LiveViewAFMode?: string;
|
|
3234
2848
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3235
2849
|
LiveViewButtonOptions?: string;
|
|
3236
|
-
/** ☆☆☆☆ ✔ Example: "Enable (simulates exposure)" */
|
|
3237
|
-
LiveViewExposureSimulation?: string;
|
|
3238
2850
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
3239
2851
|
LiveViewFocusMode?: string;
|
|
3240
2852
|
/** ☆☆☆☆ ✔ Example: "40 Segment" */
|
|
@@ -3258,8 +2870,6 @@ export interface MakerNotesTags {
|
|
|
3258
2870
|
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
3259
2871
|
LongExposureNoiseReduction?: string;
|
|
3260
2872
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3261
|
-
LongExposureNoiseReduction2?: string;
|
|
3262
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3263
2873
|
LowLightAF?: string;
|
|
3264
2874
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
3265
2875
|
LuminanceNoiseReduction?: string;
|
|
@@ -3305,12 +2915,6 @@ export interface MakerNotesTags {
|
|
|
3305
2915
|
ManualFocusRingInAFMode?: string;
|
|
3306
2916
|
/** ☆☆☆☆ ✔ Example: "Tv=Main/Av=Control" */
|
|
3307
2917
|
ManualTv?: string;
|
|
3308
|
-
/** ☆☆☆☆ ✔ Example: 2016-02-04 */
|
|
3309
|
-
ManufactureDate?: ExifDate | string;
|
|
3310
|
-
/** ☆☆☆☆ Example: 2011-11-05 */
|
|
3311
|
-
ManufactureDate1?: ExifDate | string;
|
|
3312
|
-
/** ☆☆☆☆ Example: 2011-11-14 */
|
|
3313
|
-
ManufactureDate2?: ExifDate | string;
|
|
3314
2918
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3315
2919
|
MasterGain?: number;
|
|
3316
2920
|
/** ☆☆☆☆ ✔ Example: "Face Detection On" */
|
|
@@ -3329,10 +2933,6 @@ export interface MakerNotesTags {
|
|
|
3329
2933
|
MaxFocalLength?: string;
|
|
3330
2934
|
/** ★★☆☆ ✔ Example: 9.97 */
|
|
3331
2935
|
MeasuredEV?: number;
|
|
3332
|
-
/** ☆☆☆☆ ✔ Example: 9.875 */
|
|
3333
|
-
MeasuredEV2?: number;
|
|
3334
|
-
/** ☆☆☆☆ ✔ Example: 3.625 */
|
|
3335
|
-
MeasuredEV3?: number;
|
|
3336
2936
|
/** ☆☆☆☆ ✔ Example: 9.375 */
|
|
3337
2937
|
MeasuredLV?: number;
|
|
3338
2938
|
/** ☆☆☆☆ ✔ Example: "988 1024 1024 636" */
|
|
@@ -3341,14 +2941,8 @@ export interface MakerNotesTags {
|
|
|
3341
2941
|
MeasuredRGGBData?: string;
|
|
3342
2942
|
/** ☆☆☆☆ ✔ Example: 6 */
|
|
3343
2943
|
MechanicalShutterCount?: number;
|
|
3344
|
-
/** ☆☆☆☆ ✔ Example: "FFCBAC24-E547-4BBC-AF47-38B1A3D845E3" */
|
|
3345
|
-
MediaGroupUUID?: string;
|
|
3346
|
-
/** ☆☆☆☆ ✔ Example: "High (48 kHz)" */
|
|
3347
|
-
MemoAudioQuality?: string;
|
|
3348
2944
|
/** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
|
|
3349
2945
|
MemoryCardConfiguration?: string;
|
|
3350
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3351
|
-
MemoryCardNumber?: number;
|
|
3352
2946
|
/** ☆☆☆☆ ✔ Example: "Previous (top if power off)" */
|
|
3353
2947
|
MenuButtonDisplayPosition?: string;
|
|
3354
2948
|
/** ☆☆☆☆ ✔ Example: "Top" */
|
|
@@ -3361,10 +2955,6 @@ export interface MakerNotesTags {
|
|
|
3361
2955
|
MeterMode?: string;
|
|
3362
2956
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
3363
2957
|
Metering?: string;
|
|
3364
|
-
/** ☆☆☆☆ ✔ Example: "Multi-segment" */
|
|
3365
|
-
MeteringMode2?: string;
|
|
3366
|
-
/** ☆☆☆☆ ✔ Example: "Multi-segment" */
|
|
3367
|
-
MeteringMode3?: string;
|
|
3368
2958
|
/** ☆☆☆☆ ✔ Example: "Within Range" */
|
|
3369
2959
|
MeteringOffScaleIndicator?: string;
|
|
3370
2960
|
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
@@ -3377,16 +2967,6 @@ export interface MakerNotesTags {
|
|
|
3377
2967
|
MinFocalLength?: string;
|
|
3378
2968
|
/** ☆☆☆☆ ✔ Example: "2.0 m" */
|
|
3379
2969
|
MinFocusDistance?: string;
|
|
3380
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3381
|
-
MiniatureFilter?: string;
|
|
3382
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (-1)" */
|
|
3383
|
-
MiniatureFilterOrientation?: string;
|
|
3384
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3385
|
-
MiniatureFilterParameter?: number;
|
|
3386
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3387
|
-
MiniatureFilterPosition?: number;
|
|
3388
|
-
/** ☆☆☆☆ Example: "(Binary data 734 bytes, use -b option to extract)" */
|
|
3389
|
-
MinoltaCameraSettings2?: string;
|
|
3390
2970
|
/** ☆☆☆☆ Example: 2004-07-05 */
|
|
3391
2971
|
MinoltaDate?: ExifDate | string;
|
|
3392
2972
|
/** ☆☆☆☆ Example: "Unknown (768)" */
|
|
@@ -3439,8 +3019,6 @@ export interface MakerNotesTags {
|
|
|
3439
3019
|
MonitorOffTime?: string;
|
|
3440
3020
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
3441
3021
|
MonochromeColor?: string;
|
|
3442
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3443
|
-
MonochromeFilterEffect?: string;
|
|
3444
3022
|
/** ☆☆☆☆ Example: "Off" */
|
|
3445
3023
|
MonochromeGrainEffect?: string;
|
|
3446
3024
|
/** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
|
|
@@ -3455,8 +3033,6 @@ export interface MakerNotesTags {
|
|
|
3455
3033
|
MoonPhase?: string;
|
|
3456
3034
|
/** ☆☆☆☆ Example: 100 */
|
|
3457
3035
|
MotionSensitivity?: number;
|
|
3458
|
-
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3459
|
-
MovieAELockButtonAssignment?: string;
|
|
3460
3036
|
/** ☆☆☆☆ ✔ Example: "Auto (People)" */
|
|
3461
3037
|
MovieAFAreaMode?: string;
|
|
3462
3038
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
@@ -3493,8 +3069,6 @@ export interface MakerNotesTags {
|
|
|
3493
3069
|
MovieWhiteBalanceSameAsPhoto?: string;
|
|
3494
3070
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3495
3071
|
MultiControllerWhileMetering?: string;
|
|
3496
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3497
|
-
MultiExposure?: string;
|
|
3498
3072
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3499
3073
|
MultiExposureAutoGain?: string;
|
|
3500
3074
|
/** ☆☆☆☆ ✔ Example: "Bright (comparative)" */
|
|
@@ -3519,24 +3093,18 @@ export interface MakerNotesTags {
|
|
|
3519
3093
|
MultiSelectorPlaybackMode?: string;
|
|
3520
3094
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point (Reset)" */
|
|
3521
3095
|
MultiSelectorShootMode?: string;
|
|
3522
|
-
/** ☆☆☆☆ ✔ Example: "On (2 frames); 1" */
|
|
3523
|
-
MultipleExposureMode?: string;
|
|
3524
3096
|
/** ☆☆☆☆ ✔ Example: "Unknown (15)" */
|
|
3525
3097
|
MultipleExposureSet?: string;
|
|
3526
3098
|
/** ★☆☆☆ ✔ Example: "Vivid" */
|
|
3527
3099
|
MyColorMode?: string;
|
|
3528
3100
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3529
3101
|
NDFilter?: string;
|
|
3530
|
-
/** ☆☆☆☆ ✔ Example: "n/a (JPEG)" */
|
|
3531
|
-
NEFBitDepth?: string;
|
|
3532
3102
|
/** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
|
|
3533
3103
|
NEFCompression?: string;
|
|
3534
3104
|
/** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
|
|
3535
3105
|
NEFLinearizationTable?: string;
|
|
3536
3106
|
/** ☆☆☆☆ Example: "Off" */
|
|
3537
3107
|
NeutralDensityFilter?: string;
|
|
3538
|
-
/** ☆☆☆☆ ✔ Example: "ViewNX 2.8 M" */
|
|
3539
|
-
NikonCaptureVersion?: string;
|
|
3540
3108
|
/** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
|
|
3541
3109
|
NikonImageSize?: string;
|
|
3542
3110
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
@@ -3547,8 +3115,6 @@ export interface MakerNotesTags {
|
|
|
3547
3115
|
NoiseFilter?: string;
|
|
3548
3116
|
/** ★★☆☆ ✔ Example: "[4]" */
|
|
3549
3117
|
NoiseReduction?: string;
|
|
3550
|
-
/** ☆☆☆☆ ✔ Example: "Noise Reduction" */
|
|
3551
|
-
NoiseReduction2?: string;
|
|
3552
3118
|
/** ☆☆☆☆ Example: 0 */
|
|
3553
3119
|
NoiseReductionStrength?: number;
|
|
3554
3120
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
@@ -3557,16 +3123,12 @@ export interface MakerNotesTags {
|
|
|
3557
3123
|
NominalMinAperture?: number;
|
|
3558
3124
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3559
3125
|
NormalWhiteLevel?: number;
|
|
3560
|
-
/** ★☆☆☆ ✔ Example: 9 */
|
|
3561
|
-
NumAFPoints?: number;
|
|
3562
3126
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3563
3127
|
NumFaceElements?: number;
|
|
3564
3128
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3565
3129
|
NumFacePositions?: number;
|
|
3566
3130
|
/** ☆☆☆☆ ✔ Example: "55 Points" */
|
|
3567
3131
|
NumberOfFocusPoints?: string;
|
|
3568
|
-
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3569
|
-
NumberOffsets?: number;
|
|
3570
3132
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
|
|
3571
3133
|
OKButton?: string;
|
|
3572
3134
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
@@ -3587,66 +3149,20 @@ export interface MakerNotesTags {
|
|
|
3587
3149
|
OpticalZoomOn?: string;
|
|
3588
3150
|
/** ☆☆☆☆ ✔ Example: 668058300 */
|
|
3589
3151
|
OrderNumber?: number;
|
|
3590
|
-
/** ☆☆☆☆ ✔ Example: "Rotate 270 CW" */
|
|
3591
|
-
Orientation2?: string;
|
|
3592
3152
|
/** ☆☆☆☆ ✔ Example: "Separate Vert/Horiz Points" */
|
|
3593
3153
|
OrientationLinkedAF?: string;
|
|
3594
3154
|
/** ☆☆☆☆ ✔ Example: "Same for vertical and horizontal" */
|
|
3595
3155
|
OrientationLinkedAFPoint?: string;
|
|
3596
|
-
/** ☆☆☆☆ ✔ Example: 3318 */
|
|
3597
|
-
OriginalDecisionDataOffset?: number;
|
|
3598
3156
|
/** ☆☆☆☆ Example: "/home/username/pictures" */
|
|
3599
3157
|
OriginalDirectory?: string;
|
|
3600
3158
|
/** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
|
|
3601
3159
|
OriginalFileName?: string;
|
|
3602
|
-
/** ☆☆☆☆ ✔ Example: 4000 */
|
|
3603
|
-
OriginalImageHeight?: number;
|
|
3604
|
-
/** ☆☆☆☆ ✔ Example: 6000 */
|
|
3605
|
-
OriginalImageWidth?: number;
|
|
3606
3160
|
/** ☆☆☆☆ Example: ["Sensor Upgraded","PREPRODUCTION CAMERA"] */
|
|
3607
3161
|
OtherInfo?: string[];
|
|
3608
3162
|
/** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
|
|
3609
3163
|
OutputLUT?: string;
|
|
3610
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3611
|
-
PF0CustomFuncRegistration?: string;
|
|
3612
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3613
|
-
PF1DisableShootingModes?: string;
|
|
3614
|
-
/** ☆☆☆☆ ✔ Example: 63 */
|
|
3615
|
-
PF1Value?: number;
|
|
3616
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3617
|
-
PF2DisableMeteringModes?: string;
|
|
3618
|
-
/** ☆☆☆☆ ✔ Example: 240 */
|
|
3619
|
-
PF2Value?: number;
|
|
3620
|
-
/** ☆☆☆☆ ✔ Example: "On (257)" */
|
|
3621
|
-
PF3ManualExposureMetering?: string;
|
|
3622
|
-
/** ☆☆☆☆ ✔ Example: 16 */
|
|
3623
|
-
PF3Value?: number;
|
|
3624
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3625
|
-
PF4ExposureTimeLimits?: string;
|
|
3626
|
-
/** ☆☆☆☆ ✔ Example: 31.2 */
|
|
3627
|
-
PF4ExposureTimeMax?: number;
|
|
3628
|
-
/** ☆☆☆☆ ✔ Example: "1/8389" */
|
|
3629
|
-
PF4ExposureTimeMin?: string;
|
|
3630
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3631
|
-
PF5ApertureLimits?: string;
|
|
3632
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3633
|
-
PF5ApertureMax?: number;
|
|
3634
|
-
/** ☆☆☆☆ ✔ Example: 91 */
|
|
3635
|
-
PF5ApertureMin?: number;
|
|
3636
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3637
|
-
PF6PresetShootingModes?: string;
|
|
3638
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3639
|
-
PF7BracketContinuousShoot?: string;
|
|
3640
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3641
|
-
PF8BracketShots?: number;
|
|
3642
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3643
|
-
PF8SetBracketShots?: string;
|
|
3644
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3645
|
-
PF9ChangeBracketSequence?: string;
|
|
3646
3164
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3647
3165
|
POILevel?: number;
|
|
3648
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3649
|
-
PaintingFilter?: string;
|
|
3650
3166
|
/** ☆☆☆☆ ✔ Example: 2019-11-26T11:22:36.720+01:00 */
|
|
3651
3167
|
PanasonicDateTime?: ExifDateTime | string;
|
|
3652
3168
|
/** ☆☆☆☆ ✔ Example: "0416" */
|
|
@@ -3689,18 +3205,12 @@ export interface MakerNotesTags {
|
|
|
3689
3205
|
PentaxModelID?: string;
|
|
3690
3206
|
/** ☆☆☆☆ ✔ Example: 6 */
|
|
3691
3207
|
PentaxModelType?: number;
|
|
3692
|
-
/** ☆☆☆☆ ✔ Example: "9.1.2.0" */
|
|
3693
|
-
PentaxVersion?: string;
|
|
3694
3208
|
/** ☆☆☆☆ ✔ Example: "513 513 513 513" */
|
|
3695
3209
|
PerChannelBlackLevel?: string;
|
|
3696
3210
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3697
3211
|
PeripheralIlluminationCorr?: string;
|
|
3698
3212
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3699
|
-
PeripheralLighting?: string;
|
|
3700
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3701
3213
|
PeripheralLightingSetting?: string;
|
|
3702
|
-
/** ☆☆☆☆ ✔ Example: 70 */
|
|
3703
|
-
PeripheralLightingValue?: number;
|
|
3704
3214
|
/** ☆☆☆☆ ✔ Example: "On (81-point)" */
|
|
3705
3215
|
PhaseDetectAF?: string;
|
|
3706
3216
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
@@ -3711,8 +3221,6 @@ export interface MakerNotesTags {
|
|
|
3711
3221
|
PhotoShootingMenuBank?: string;
|
|
3712
3222
|
/** ☆☆☆☆ ✔ Example: "FX (36x24)" */
|
|
3713
3223
|
PhotoShootingMenuBankImageArea?: string;
|
|
3714
|
-
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
3715
|
-
PhotoStyle?: string;
|
|
3716
3224
|
/** ☆☆☆☆ ✔ Example: "Quick Adjust" */
|
|
3717
3225
|
PictureControlAdjust?: string;
|
|
3718
3226
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
@@ -3725,20 +3233,12 @@ export interface MakerNotesTags {
|
|
|
3725
3233
|
PictureControlVersion?: string;
|
|
3726
3234
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3727
3235
|
PictureEffect?: string;
|
|
3728
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3729
|
-
PictureEffect2?: string;
|
|
3730
3236
|
/** ☆☆☆☆ Example: "Natural" */
|
|
3731
3237
|
PictureFinish?: string;
|
|
3732
|
-
/** ★☆☆☆ ✔ Example: "i-Enhance; 2" */
|
|
3733
|
-
PictureMode?: string;
|
|
3734
|
-
/** ☆☆☆☆ ✔ Example: "Shutter & Aperture Priority AE" */
|
|
3735
|
-
PictureMode2?: string;
|
|
3736
3238
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3737
3239
|
PictureModeBWFilter?: string;
|
|
3738
3240
|
/** ☆☆☆☆ ✔ Example: "1 (min -2, max 2)" */
|
|
3739
3241
|
PictureModeContrast?: string;
|
|
3740
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3741
|
-
PictureModeEffect?: string;
|
|
3742
3242
|
/** ☆☆☆☆ ✔ Example: "0 (min -2, max 2)" */
|
|
3743
3243
|
PictureModeSaturation?: string;
|
|
3744
3244
|
/** ☆☆☆☆ ✔ Example: "2 (min -2, max 2)" */
|
|
@@ -3777,8 +3277,6 @@ export interface MakerNotesTags {
|
|
|
3777
3277
|
PostFocusMerging?: string;
|
|
3778
3278
|
/** ☆☆☆☆ ✔ Example: "External Power Supply" */
|
|
3779
3279
|
PowerSource?: string;
|
|
3780
|
-
/** ☆☆☆☆ ✔ Example: "2020:11:03 13:49:55" */
|
|
3781
|
-
PowerUpTime?: string;
|
|
3782
3280
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3783
3281
|
PreAF?: string;
|
|
3784
3282
|
/** ☆☆☆☆ ✔ Example: 3.2996109 */
|
|
@@ -3807,10 +3305,6 @@ export interface MakerNotesTags {
|
|
|
3807
3305
|
ProgramLine?: string;
|
|
3808
3306
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3809
3307
|
ProgramShift?: number;
|
|
3810
|
-
/** ☆☆☆☆ ✔ Example: "RAW + JPEG" */
|
|
3811
|
-
Quality2?: string;
|
|
3812
|
-
/** ☆☆☆☆ ✔ Example: "Exposure comp/Aperture" */
|
|
3813
|
-
QuickControlDialInMeter?: string;
|
|
3814
3308
|
/** ☆☆☆☆ Example: "Off" */
|
|
3815
3309
|
QuickShot?: string;
|
|
3816
3310
|
/** ☆☆☆☆ ✔ Example: "Uncompressed RAW" */
|
|
@@ -3863,8 +3357,6 @@ export interface MakerNotesTags {
|
|
|
3863
3357
|
RawDevPMSharpness?: string;
|
|
3864
3358
|
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
3865
3359
|
RawDevPictureMode?: string;
|
|
3866
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3867
|
-
RawDevSaturation3?: number;
|
|
3868
3360
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
3869
3361
|
RawDevSaturationEmphasis?: string;
|
|
3870
3362
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
@@ -3915,10 +3407,6 @@ export interface MakerNotesTags {
|
|
|
3915
3407
|
ReleaseButtonToUseDial?: string;
|
|
3916
3408
|
/** ☆☆☆☆ ✔ Example: "Unknown (7)" */
|
|
3917
3409
|
ReleaseMode?: string;
|
|
3918
|
-
/** ☆☆☆☆ ✔ Example: "Single Frame - Capture During Movie" */
|
|
3919
|
-
ReleaseMode2?: string;
|
|
3920
|
-
/** ☆☆☆☆ ✔ Example: "Normal - Self-timer" */
|
|
3921
|
-
ReleaseMode3?: string;
|
|
3922
3410
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3923
3411
|
RemoteFuncButton?: string;
|
|
3924
3412
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -3935,14 +3423,10 @@ export interface MakerNotesTags {
|
|
|
3935
3423
|
Resaved?: string;
|
|
3936
3424
|
/** ☆☆☆☆ Example: "MED" */
|
|
3937
3425
|
ResolutionMode?: string;
|
|
3938
|
-
/** ☆☆☆☆ ✔ Example: "Flags 0x77" */
|
|
3939
|
-
RestrictDriveModes?: string;
|
|
3940
3426
|
/** ★☆☆☆ ✔ Example: "Unknown ()" */
|
|
3941
3427
|
RetouchHistory?: string;
|
|
3942
3428
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
3943
3429
|
RetouchInfoVersion?: string;
|
|
3944
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3945
|
-
RetouchNEFProcessing?: string;
|
|
3946
3430
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3947
3431
|
RetractLensOnPowerOff?: string;
|
|
3948
3432
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
@@ -4001,24 +3485,8 @@ export interface MakerNotesTags {
|
|
|
4001
3485
|
SaturationAdj?: number;
|
|
4002
3486
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4003
3487
|
SaturationAuto?: number;
|
|
4004
|
-
/** ☆☆☆☆ ✔ Example: 655360 */
|
|
4005
|
-
SaturationFaithful?: number;
|
|
4006
|
-
/** ☆☆☆☆ ✔ Example: 8650752 */
|
|
4007
|
-
SaturationLandscape?: number;
|
|
4008
|
-
/** ☆☆☆☆ ✔ Example: 6619136 */
|
|
4009
|
-
SaturationNeutral?: number;
|
|
4010
|
-
/** ☆☆☆☆ ✔ Example: 6553609 */
|
|
4011
|
-
SaturationPortrait?: number;
|
|
4012
3488
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4013
3489
|
SaturationSetting?: number;
|
|
4014
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4015
|
-
SaturationStandard?: number;
|
|
4016
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4017
|
-
SaturationUserDef1?: number;
|
|
4018
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
4019
|
-
SaturationUserDef2?: number;
|
|
4020
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4021
|
-
SaturationUserDef3?: number;
|
|
4022
3490
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4023
3491
|
SaveFocus?: string;
|
|
4024
3492
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -4043,12 +3511,8 @@ export interface MakerNotesTags {
|
|
|
4043
3511
|
SelectAFAreaSelectMode?: string;
|
|
4044
3512
|
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], [10], [1…" */
|
|
4045
3513
|
SelectAFAreaSelectionMode?: string;
|
|
4046
|
-
/** ☆☆☆☆ ✔ Example: "45 points" */
|
|
4047
|
-
SelectableAFPoint?: string;
|
|
4048
3514
|
/** ★★☆☆ ✔ Example: "Self-timer 5 or 10 s" */
|
|
4049
3515
|
SelfTimer?: string;
|
|
4050
|
-
/** ★☆☆☆ ✔ Example: 0.1 */
|
|
4051
|
-
SelfTimer2?: number;
|
|
4052
3516
|
/** ☆☆☆☆ ✔ Example: "0.5 s" */
|
|
4053
3517
|
SelfTimerInterval?: string;
|
|
4054
3518
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
@@ -4061,8 +3525,6 @@ export interface MakerNotesTags {
|
|
|
4061
3525
|
SensitivityAdjust?: number;
|
|
4062
3526
|
/** ☆☆☆☆ ✔ Example: "As EV Steps" */
|
|
4063
3527
|
SensitivitySteps?: string;
|
|
4064
|
-
/** ☆☆☆☆ Example: "BACK,ov16860" */
|
|
4065
|
-
Sensor?: string;
|
|
4066
3528
|
/** ☆☆☆☆ Example: 14 */
|
|
4067
3529
|
SensorBitDepth?: number;
|
|
4068
3530
|
/** ☆☆☆☆ ✔ Example: 4214 */
|
|
@@ -4083,8 +3545,6 @@ export interface MakerNotesTags {
|
|
|
4083
3545
|
SensorSize?: string;
|
|
4084
3546
|
/** ☆☆☆☆ ✔ Example: "80.9 C" */
|
|
4085
3547
|
SensorTemperature?: string;
|
|
4086
|
-
/** ☆☆☆☆ Example: "49.4 C" */
|
|
4087
|
-
SensorTemperature2?: string;
|
|
4088
3548
|
/** ☆☆☆☆ Example: "Standard" */
|
|
4089
3549
|
SensorType?: string;
|
|
4090
3550
|
/** ☆☆☆☆ Example: "5 of 5" */
|
|
@@ -4101,24 +3561,16 @@ export interface MakerNotesTags {
|
|
|
4101
3561
|
SequenceShotInterval?: string;
|
|
4102
3562
|
/** ☆☆☆☆ Example: "Unknown (28928)" */
|
|
4103
3563
|
SequentialShot?: string;
|
|
4104
|
-
/** ☆☆☆☆ ✔ Example: "Format 2" */
|
|
4105
|
-
SerialNumberFormat?: string;
|
|
4106
3564
|
/** ☆☆☆☆ ✔ Example: "Set: Picture Style" */
|
|
4107
3565
|
SetButtonCrossKeysFunc?: string;
|
|
4108
3566
|
/** ☆☆☆☆ ✔ Example: "Unknown (37 0)" */
|
|
4109
3567
|
SetButtonWhenShooting?: string;
|
|
4110
|
-
/** ☆☆☆☆ ✔ Example: "Default (no function)" */
|
|
4111
|
-
SetFunctionWhenShooting?: string;
|
|
4112
3568
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4113
3569
|
ShadingCompensation?: string;
|
|
4114
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4115
|
-
ShadingCompensation2?: string;
|
|
4116
3570
|
/** ☆☆☆☆ Example: 0 */
|
|
4117
3571
|
Shadow?: number;
|
|
4118
3572
|
/** ☆☆☆☆ Example: "On" */
|
|
4119
3573
|
ShadowCorrection?: string;
|
|
4120
|
-
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
4121
|
-
ShadowTone?: string;
|
|
4122
3574
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4123
3575
|
Shadows?: number;
|
|
4124
3576
|
/** ☆☆☆☆ ✔ Example: "On but Disabled" */
|
|
@@ -4129,34 +3581,16 @@ export interface MakerNotesTags {
|
|
|
4129
3581
|
SharpnessAuto?: number;
|
|
4130
3582
|
/** ☆☆☆☆ ✔ Example: 768 */
|
|
4131
3583
|
SharpnessFactor?: number;
|
|
4132
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4133
|
-
SharpnessFaithful?: number;
|
|
4134
3584
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
4135
3585
|
SharpnessFreqTable?: string;
|
|
4136
3586
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4137
3587
|
SharpnessFrequency?: string;
|
|
4138
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
4139
|
-
SharpnessLandscape?: number;
|
|
4140
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4141
|
-
SharpnessMonochrome?: number;
|
|
4142
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4143
|
-
SharpnessNeutral?: number;
|
|
4144
|
-
/** ☆☆☆☆ ✔ Example: 2752758 */
|
|
4145
|
-
SharpnessPortrait?: number;
|
|
4146
3588
|
/** ☆☆☆☆ ✔ Example: "+3" */
|
|
4147
3589
|
SharpnessRange?: string;
|
|
4148
3590
|
/** ☆☆☆☆ ✔ Example: "3 (min -3, max 5)" */
|
|
4149
3591
|
SharpnessSetting?: string;
|
|
4150
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
4151
|
-
SharpnessStandard?: number;
|
|
4152
3592
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
4153
3593
|
SharpnessTable?: string;
|
|
4154
|
-
/** ☆☆☆☆ ✔ Example: 7 */
|
|
4155
|
-
SharpnessUserDef1?: number;
|
|
4156
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4157
|
-
SharpnessUserDef2?: number;
|
|
4158
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4159
|
-
SharpnessUserDef3?: number;
|
|
4160
3594
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4161
3595
|
ShootingInfoDisplay?: string;
|
|
4162
3596
|
/** ☆☆☆☆ ✔ Example: "10 s" */
|
|
@@ -4171,19 +3605,15 @@ export interface MakerNotesTags {
|
|
|
4171
3605
|
ShotInfoVersion?: string;
|
|
4172
3606
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
4173
3607
|
ShotNumberSincePowerUp?: number;
|
|
4174
|
-
/** ☆☆☆☆ ✔ Example: 5 */
|
|
4175
|
-
ShotNumberSincePowerUp2?: number;
|
|
4176
|
-
/** ☆☆☆☆ ✔ Example: "Silent / Electronic (0 0 0)" */
|
|
4177
|
-
Shutter?: string;
|
|
4178
3608
|
/** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
|
|
4179
3609
|
ShutterAELButton?: string;
|
|
4180
3610
|
/** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
|
|
4181
3611
|
ShutterButtonAFOnButton?: string;
|
|
4182
3612
|
/** ☆☆☆☆ ✔ Example: 98 */
|
|
4183
3613
|
ShutterCount?: number;
|
|
4184
|
-
/** ☆☆☆☆
|
|
3614
|
+
/** ☆☆☆☆ Example: */
|
|
4185
3615
|
ShutterCount2?: number;
|
|
4186
|
-
/** ☆☆☆☆
|
|
3616
|
+
/** ☆☆☆☆ Example: */
|
|
4187
3617
|
ShutterCount3?: number;
|
|
4188
3618
|
/** ☆☆☆☆ ✔ Example: "2nd-curtain sync" */
|
|
4189
3619
|
ShutterCurtainSync?: string;
|
|
@@ -4223,22 +3653,14 @@ export interface MakerNotesTags {
|
|
|
4223
3653
|
SmileShutter?: string;
|
|
4224
3654
|
/** ☆☆☆☆ ✔ Example: "Slight Smile" */
|
|
4225
3655
|
SmileShutterMode?: string;
|
|
4226
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4227
|
-
SoftFocusFilter?: string;
|
|
4228
3656
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4229
3657
|
SoftSkinEffect?: string;
|
|
4230
3658
|
/** ☆☆☆☆ ✔ Example: 2021-07-23T16:13:55.000-07:00 */
|
|
4231
3659
|
SonyDateTime?: ExifDateTime | string;
|
|
4232
|
-
/** ☆☆☆☆ ✔ Example: 2015-11-26T14:41:25.000 */
|
|
4233
|
-
SonyDateTime2?: ExifDateTime | string;
|
|
4234
3660
|
/** ☆☆☆☆ ✔ Example: "1/82" */
|
|
4235
3661
|
SonyExposureTime?: string;
|
|
4236
|
-
/** ☆☆☆☆ ✔ Example: "1/989" */
|
|
4237
|
-
SonyExposureTime2?: string;
|
|
4238
3662
|
/** ☆☆☆☆ ✔ Example: 8.8 */
|
|
4239
3663
|
SonyFNumber?: number;
|
|
4240
|
-
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
4241
|
-
SonyFNumber2?: number;
|
|
4242
3664
|
/** ☆☆☆☆ ✔ Example: 926 */
|
|
4243
3665
|
SonyISO?: number;
|
|
4244
3666
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
@@ -4261,8 +3683,6 @@ export interface MakerNotesTags {
|
|
|
4261
3683
|
SonyModelID?: string;
|
|
4262
3684
|
/** ☆☆☆☆ ✔ Example: "Fine" */
|
|
4263
3685
|
SonyQuality?: string;
|
|
4264
|
-
/** ☆☆☆☆ ✔ Example: "48:36" */
|
|
4265
|
-
SonyTimeMinSec?: string;
|
|
4266
3686
|
/** ☆☆☆☆ Example: 100 */
|
|
4267
3687
|
SourceDirectoryIndex?: number;
|
|
4268
3688
|
/** ☆☆☆☆ Example: 60 */
|
|
@@ -4289,8 +3709,6 @@ export interface MakerNotesTags {
|
|
|
4289
3709
|
SpotFocusPointY?: number;
|
|
4290
3710
|
/** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
|
|
4291
3711
|
SpotMeterLinkToAFPoint?: string;
|
|
4292
|
-
/** ★☆☆☆ ✔ Example: "Center" */
|
|
4293
|
-
SpotMeteringMode?: string;
|
|
4294
3712
|
/** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
|
|
4295
3713
|
StackedImage?: string;
|
|
4296
3714
|
/** ☆☆☆☆ ✔ Example: "30 s" */
|
|
@@ -4299,8 +3717,6 @@ export interface MakerNotesTags {
|
|
|
4299
3717
|
StandbyTimer?: string;
|
|
4300
3718
|
/** ☆☆☆☆ ✔ Example: "Default (from LV)" */
|
|
4301
3719
|
StartMovieShooting?: string;
|
|
4302
|
-
/** ☆☆☆☆ ✔ Example: "MIDDLESEX" */
|
|
4303
|
-
State?: string;
|
|
4304
3720
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
4305
3721
|
StopsAboveBaseISO?: number;
|
|
4306
3722
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -4349,10 +3765,6 @@ export interface MakerNotesTags {
|
|
|
4349
3765
|
Teleconverter?: string;
|
|
4350
3766
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4351
3767
|
TextEncoding?: string;
|
|
4352
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 901 bytes, use -b option to extract)" */
|
|
4353
|
-
TextInfo1?: string;
|
|
4354
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 961 bytes, use -b option to extract)" */
|
|
4355
|
-
TextInfo2?: string;
|
|
4356
3768
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4357
3769
|
TextStamp?: string;
|
|
4358
3770
|
/** ☆☆☆☆ ✔ Example: "THM_0043.JPG" */
|
|
@@ -4361,6 +3773,8 @@ export interface MakerNotesTags {
|
|
|
4361
3773
|
ThumbnailHeight?: number;
|
|
4362
3774
|
/** ★★☆☆ ✔ Example: "0 159 7 112" */
|
|
4363
3775
|
ThumbnailImageValidArea?: string;
|
|
3776
|
+
/** ☆☆☆☆ ✔ Example: 13181 */
|
|
3777
|
+
ThumbnailLength?: number;
|
|
4364
3778
|
/** ☆☆☆☆ ✔ Example: 160 */
|
|
4365
3779
|
ThumbnailWidth?: number;
|
|
4366
3780
|
/** ☆☆☆☆ ✔ Example: "(Binary data 7404 bytes, use -b option to extract)" */
|
|
@@ -4375,10 +3789,8 @@ export interface MakerNotesTags {
|
|
|
4375
3789
|
TimeLapseShotNumber?: number;
|
|
4376
3790
|
/** ☆☆☆☆ ✔ Example: 01:48:53.630 */
|
|
4377
3791
|
TimeSincePowerOn?: ExifTime | string;
|
|
4378
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4379
|
-
TimeStamp?: string;
|
|
4380
|
-
/** ☆☆☆☆ ✔ Example: "2007:07:14 18:02:56" */
|
|
4381
|
-
TimeStamp1?: string;
|
|
3792
|
+
/** ☆☆☆☆ ✔ Example: 2021-02-22T12:45:11.000Z */
|
|
3793
|
+
TimeStamp?: ExifDateTime | string;
|
|
4382
3794
|
/** ☆☆☆☆ ✔ Example: "-09:00" */
|
|
4383
3795
|
TimeZone?: string;
|
|
4384
3796
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -4409,22 +3821,12 @@ export interface MakerNotesTags {
|
|
|
4409
3821
|
ToningEffect?: string;
|
|
4410
3822
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4411
3823
|
ToningEffectAuto?: string;
|
|
4412
|
-
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4413
|
-
ToningEffectMonochrome?: string;
|
|
4414
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4415
|
-
ToningEffectUserDef1?: string;
|
|
4416
|
-
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4417
|
-
ToningEffectUserDef2?: string;
|
|
4418
|
-
/** ☆☆☆☆ ✔ Example: "Sepia" */
|
|
4419
|
-
ToningEffectUserDef3?: string;
|
|
4420
3824
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4421
3825
|
ToningSaturation?: string;
|
|
4422
3826
|
/** ☆☆☆☆ Example: 5 */
|
|
4423
3827
|
TotalZoom?: number;
|
|
4424
3828
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4425
3829
|
TouchAE?: string;
|
|
4426
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4427
|
-
ToyCameraFilter?: string;
|
|
4428
3830
|
/** ☆☆☆☆ Example: "Off" */
|
|
4429
3831
|
Transform?: string;
|
|
4430
3832
|
/** ☆☆☆☆ ✔ Example: "Normal (set center AF point)" */
|
|
@@ -4447,16 +3849,8 @@ export interface MakerNotesTags {
|
|
|
4447
3849
|
UsableMeteringModes?: string;
|
|
4448
3850
|
/** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
|
|
4449
3851
|
UsableShootingModes?: string;
|
|
4450
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4451
|
-
UserDef1PictureStyle?: string;
|
|
4452
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4453
|
-
UserDef2PictureStyle?: string;
|
|
4454
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4455
|
-
UserDef3PictureStyle?: string;
|
|
4456
3852
|
/** ☆☆☆☆ Example: "PC900 COVERT PRO" */
|
|
4457
3853
|
UserLabel?: string;
|
|
4458
|
-
/** ☆☆☆☆ Example: "dpreview " */
|
|
4459
|
-
UserProfile?: string;
|
|
4460
3854
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4461
3855
|
VFDisplayIllumination?: string;
|
|
4462
3856
|
/** ★☆☆☆ ✔ Example: 0 */
|
|
@@ -4465,12 +3859,8 @@ export interface MakerNotesTags {
|
|
|
4465
3859
|
VRInfoVersion?: string;
|
|
4466
3860
|
/** ☆☆☆☆ ✔ Example: "Sport" */
|
|
4467
3861
|
VRMode?: string;
|
|
4468
|
-
/** ★☆☆☆ ✔ Example: 99 */
|
|
4469
|
-
ValidAFPoints?: number;
|
|
4470
3862
|
/** ☆☆☆☆ ✔ Example: "12 0" */
|
|
4471
3863
|
ValidBits?: string;
|
|
4472
|
-
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
4473
|
-
VariProgram?: string;
|
|
4474
3864
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4475
3865
|
VariableLowPassFilter?: string;
|
|
4476
3866
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
|
|
@@ -4483,8 +3873,6 @@ export interface MakerNotesTags {
|
|
|
4483
3873
|
VerticalMovieAFOnButton?: string;
|
|
4484
3874
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4485
3875
|
VerticalMovieFuncButton?: string;
|
|
4486
|
-
/** ☆☆☆☆ ✔ Example: "Same as MultiSelector" */
|
|
4487
|
-
VerticalMultiSelector?: string;
|
|
4488
3876
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4489
3877
|
VibrationReduction?: string;
|
|
4490
3878
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -4503,8 +3891,6 @@ export interface MakerNotesTags {
|
|
|
4503
3891
|
ViewfinderWarnings?: string;
|
|
4504
3892
|
/** ☆☆☆☆ ✔ Example: "ViewFinder" */
|
|
4505
3893
|
ViewingMode?: string;
|
|
4506
|
-
/** ☆☆☆☆ ✔ Example: "Viewfinder" */
|
|
4507
|
-
ViewingMode2?: string;
|
|
4508
3894
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4509
3895
|
VignetteControl?: string;
|
|
4510
3896
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -4535,10 +3921,6 @@ export interface MakerNotesTags {
|
|
|
4535
3921
|
WBShiftGM?: number;
|
|
4536
3922
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4537
3923
|
WBShiftIntelligentAuto?: number;
|
|
4538
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4539
|
-
WatercolorFilter?: string;
|
|
4540
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (68)" */
|
|
4541
|
-
WhiteBalance2?: string;
|
|
4542
3924
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4543
3925
|
WhiteBalanceAutoAdjustment?: string;
|
|
4544
3926
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4561,8 +3943,6 @@ export interface MakerNotesTags {
|
|
|
4561
3943
|
WhiteBalanceSet?: string;
|
|
4562
3944
|
/** ☆☆☆☆ ✔ Example: "Custom 1" */
|
|
4563
3945
|
WhiteBalanceSetting?: string;
|
|
4564
|
-
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
4565
|
-
WhiteBalanceSetup?: string;
|
|
4566
3946
|
/** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
|
|
4567
3947
|
WhiteBalanceTable?: string;
|
|
4568
3948
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
@@ -4579,6 +3959,8 @@ export interface MakerNotesTags {
|
|
|
4579
3959
|
WorldTimeLocation?: string;
|
|
4580
3960
|
/** ☆☆☆☆ Example: 0.2 */
|
|
4581
3961
|
X3FillLight?: number;
|
|
3962
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (512)" */
|
|
3963
|
+
YCbCrPositioning?: string;
|
|
4582
3964
|
/** ☆☆☆☆ Example: -96.7 */
|
|
4583
3965
|
Yaw?: number;
|
|
4584
3966
|
/** ☆☆☆☆ ✔ Example: 91.6 */
|
|
@@ -4629,11 +4011,13 @@ export interface XMPTags {
|
|
|
4629
4011
|
AsrSceneMode?: string;
|
|
4630
4012
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4631
4013
|
AutoLateralCA?: number;
|
|
4014
|
+
/** ☆☆☆☆ ✔ Example: "portraiteffectsmatte" */
|
|
4015
|
+
AuxiliaryImageSubType?: string;
|
|
4016
|
+
/** ☆☆☆☆ ✔ Example: "depth" */
|
|
4017
|
+
AuxiliaryImageType?: string;
|
|
4632
4018
|
/** ☆☆☆☆ Example: ["LWIR"] */
|
|
4633
4019
|
BandName?: string[];
|
|
4634
4020
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4635
|
-
Blacks2012?: number;
|
|
4636
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4637
4021
|
BlueHue?: number;
|
|
4638
4022
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4639
4023
|
BlueSaturation?: number;
|
|
@@ -4647,8 +4031,6 @@ export interface XMPTags {
|
|
|
4647
4031
|
CameraBurstID?: string;
|
|
4648
4032
|
/** ☆☆☆☆ Example: "Front" */
|
|
4649
4033
|
CameraFacing?: string;
|
|
4650
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
4651
|
-
CameraModelID?: string;
|
|
4652
4034
|
/** ☆☆☆☆ ✔ Example: "Embedded" */
|
|
4653
4035
|
CameraProfile?: string;
|
|
4654
4036
|
/** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
|
|
@@ -4657,8 +4039,6 @@ export interface XMPTags {
|
|
|
4657
4039
|
CameraUnit?: string;
|
|
4658
4040
|
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","DepthURI"… */
|
|
4659
4041
|
Cameras?: Struct[];
|
|
4660
|
-
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4661
|
-
CaptureMode?: string;
|
|
4662
4042
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4663
4043
|
CaptureSoftware?: string;
|
|
4664
4044
|
/** ☆☆☆☆ ✔ Example: ["Subjekt|Natur|Pflanzen","Ort|Deutschland|Rangsdorf"] */
|
|
@@ -4677,8 +4057,6 @@ export interface XMPTags {
|
|
|
4677
4057
|
Changes?: string[];
|
|
4678
4058
|
/** ☆☆☆☆ ✔ Example: [{"CorrectionActive":true,"CorrectionAmount":1,"CorrectionMasks"… */
|
|
4679
4059
|
CircularGradientBasedCorrections?: Struct[];
|
|
4680
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4681
|
-
Clarity2012?: number;
|
|
4682
4060
|
/** ☆☆☆☆ ✔ Example: "3 (Superior)" */
|
|
4683
4061
|
ColorClass?: string;
|
|
4684
4062
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4693,10 +4071,10 @@ export interface XMPTags {
|
|
|
4693
4071
|
Colorlabels?: string;
|
|
4694
4072
|
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime":"imag… */
|
|
4695
4073
|
Container?: Struct;
|
|
4696
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4697
|
-
Contrast2012?: number;
|
|
4698
4074
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4699
4075
|
ConvertToGrayscale?: boolean;
|
|
4076
|
+
/** ☆☆☆☆ Example: */
|
|
4077
|
+
CreationTime?: ExifDateTime | string;
|
|
4700
4078
|
/** ☆☆☆☆ ✔ Example: ["daniel@woss.io"] */
|
|
4701
4079
|
Creator?: string[];
|
|
4702
4080
|
/** ☆☆☆☆ Example: "{2d7e7fd6-2942-4d77-9842-389c3f62b14d}" */
|
|
@@ -4755,12 +4133,16 @@ export interface XMPTags {
|
|
|
4755
4133
|
DisableAutoCreation?: string[];
|
|
4756
4134
|
/** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
|
|
4757
4135
|
DocumentID?: string;
|
|
4758
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4759
|
-
|
|
4136
|
+
/** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
|
|
4137
|
+
ExifVersion?: string;
|
|
4138
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4139
|
+
Firmware?: number;
|
|
4760
4140
|
/** ☆☆☆☆ ✔ Example: "Example flash make" */
|
|
4761
4141
|
FlashManufacturer?: string;
|
|
4762
4142
|
/** ☆☆☆☆ ✔ Example: "FlashPix Version 1.0" */
|
|
4763
4143
|
FlashPixVersion?: string;
|
|
4144
|
+
/** ☆☆☆☆ Example: "0100" */
|
|
4145
|
+
FlashpixVersion?: string;
|
|
4764
4146
|
/** ☆☆☆☆ Example: 3.8 */
|
|
4765
4147
|
FlightPitchDegree?: number;
|
|
4766
4148
|
/** ☆☆☆☆ Example: 4.5 */
|
|
@@ -4787,6 +4169,8 @@ export interface XMPTags {
|
|
|
4787
4169
|
FullPanoHeightPixels?: number;
|
|
4788
4170
|
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
4789
4171
|
FullPanoWidthPixels?: number;
|
|
4172
|
+
/** ☆☆☆☆ ✔ Example: "2.2.0.0" */
|
|
4173
|
+
GPSVersionID?: string;
|
|
4790
4174
|
/** ☆☆☆☆ Example: -90 */
|
|
4791
4175
|
GimbalPitchDegree?: number;
|
|
4792
4176
|
/** ☆☆☆☆ Example: 0 */
|
|
@@ -4811,10 +4195,8 @@ export interface XMPTags {
|
|
|
4811
4195
|
HasSettings?: boolean;
|
|
4812
4196
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4813
4197
|
HierarchicalSubject?: string[];
|
|
4814
|
-
/** ☆☆☆☆ ✔ Example: -84 */
|
|
4815
|
-
Highlights2012?: number;
|
|
4816
4198
|
/** ☆☆☆☆ ✔ Example: [{"Action":"converted","Parameters":"from image/x-canon-cr2 to i… */
|
|
4817
|
-
History?:
|
|
4199
|
+
History?: ResourceEvent[] | ResourceEvent | string;
|
|
4818
4200
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4819
4201
|
HueAdjustmentAqua?: number;
|
|
4820
4202
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4847,8 +4229,6 @@ export interface XMPTags {
|
|
|
4847
4229
|
InteroperabilityVersion?: string;
|
|
4848
4230
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4849
4231
|
IsBokehActive?: boolean;
|
|
4850
|
-
/** ☆☆☆☆ ✔ Example: true */
|
|
4851
|
-
IsHDRActive?: boolean;
|
|
4852
4232
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4853
4233
|
IsNightModeActive?: boolean;
|
|
4854
4234
|
/** ☆☆☆☆ ✔ Example: "選択" */
|
|
@@ -4857,8 +4237,6 @@ export interface XMPTags {
|
|
|
4857
4237
|
LastKeywordXMP?: string[];
|
|
4858
4238
|
/** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
|
|
4859
4239
|
LegacyIPTCDigest?: string;
|
|
4860
|
-
/** ☆☆☆☆ ✔ Example: "Back" */
|
|
4861
|
-
LensFacing?: string;
|
|
4862
4240
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4863
4241
|
LensManualDistortionAmount?: number;
|
|
4864
4242
|
/** ☆☆☆☆ ✔ Example: "Example lens make" */
|
|
@@ -4895,7 +4273,7 @@ export interface XMPTags {
|
|
|
4895
4273
|
Marked?: boolean;
|
|
4896
4274
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4897
4275
|
Mask?: string;
|
|
4898
|
-
/** ☆☆☆☆ ✔ Example: 2021-
|
|
4276
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-26T10:51:01.000+01:00 */
|
|
4899
4277
|
MetadataDate?: ExifDateTime | string;
|
|
4900
4278
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4901
4279
|
MicroVideo?: number;
|
|
@@ -4913,6 +4291,8 @@ export interface XMPTags {
|
|
|
4913
4291
|
ModificationDate?: ExifDateTime | string;
|
|
4914
4292
|
/** ☆☆☆☆ Example: "36864,40960,40961,37121,37122,40962,40963,37510,40964,36867,3686…" */
|
|
4915
4293
|
NativeDigest?: string;
|
|
4294
|
+
/** ☆☆☆☆ Example: */
|
|
4295
|
+
OriginalCreateDateTime?: ExifDateTime | string;
|
|
4916
4296
|
/** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
|
|
4917
4297
|
OriginalDocumentID?: string;
|
|
4918
4298
|
/** ☆☆☆☆ ✔ Example: false */
|
|
@@ -4955,8 +4335,8 @@ export interface XMPTags {
|
|
|
4955
4335
|
PhotographicSensitivity?: number;
|
|
4956
4336
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4957
4337
|
PickLabel?: number;
|
|
4958
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4959
|
-
|
|
4338
|
+
/** ☆☆☆☆ ✔ Example: 65537 */
|
|
4339
|
+
PortraitEffectsMatteVersion?: number;
|
|
4960
4340
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4961
4341
|
PortraitVersion?: number;
|
|
4962
4342
|
/** ☆☆☆☆ ✔ Example: 22.5 */
|
|
@@ -5007,18 +4387,16 @@ export interface XMPTags {
|
|
|
5007
4387
|
SaturationAdjustmentRed?: number;
|
|
5008
4388
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5009
4389
|
SaturationAdjustmentYellow?: number;
|
|
5010
|
-
/** ☆☆☆☆ ✔ Example: "AutoHDR" */
|
|
5011
|
-
Scene?: string;
|
|
5012
4390
|
/** ☆☆☆☆ ✔ Example: "[0.997883, 0.92984027]" */
|
|
5013
4391
|
SceneDetectResultConfidences?: string;
|
|
5014
4392
|
/** ☆☆☆☆ ✔ Example: "[901, 60, 0]" */
|
|
5015
4393
|
SceneDetectResultIds?: string;
|
|
5016
4394
|
/** ☆☆☆☆ Example: "Undefined" */
|
|
5017
4395
|
SelfData?: string;
|
|
4396
|
+
/** ☆☆☆☆ ✔ Example: 65536 */
|
|
4397
|
+
SemanticSegmentationMatteVersion?: number;
|
|
5018
4398
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5019
4399
|
ShadowTint?: number;
|
|
5020
|
-
/** ☆☆☆☆ ✔ Example: */
|
|
5021
|
-
Shadows2012?: string;
|
|
5022
4400
|
/** ☆☆☆☆ ✔ Example: 25 */
|
|
5023
4401
|
SharpenDetail?: number;
|
|
5024
4402
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -5039,6 +4417,8 @@ export interface XMPTags {
|
|
|
5039
4417
|
SplitToningShadowHue?: number;
|
|
5040
4418
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5041
4419
|
SplitToningShadowSaturation?: number;
|
|
4420
|
+
/** ☆☆☆☆ Example: "Washington" */
|
|
4421
|
+
State?: string;
|
|
5042
4422
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
5043
4423
|
StitchingSoftware?: string;
|
|
5044
4424
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
@@ -5061,10 +4441,6 @@ export interface XMPTags {
|
|
|
5061
4441
|
ToneCurveGreen?: string[];
|
|
5062
4442
|
/** ☆☆☆☆ ✔ Example: "Medium Contrast" */
|
|
5063
4443
|
ToneCurveName?: string;
|
|
5064
|
-
/** ☆☆☆☆ ✔ Example: "Linear" */
|
|
5065
|
-
ToneCurveName2012?: string;
|
|
5066
|
-
/** ☆☆☆☆ ✔ Example: ["0, 0","255, 255"] */
|
|
5067
|
-
ToneCurvePV2012?: string[];
|
|
5068
4444
|
/** ☆☆☆☆ ✔ Example: ["0, 0","255, 255"] */
|
|
5069
4445
|
ToneCurvePV2012Blue?: string[];
|
|
5070
4446
|
/** ☆☆☆☆ ✔ Example: ["0, 0","255, 255"] */
|
|
@@ -5095,21 +4471,32 @@ export interface XMPTags {
|
|
|
5095
4471
|
UprightVersion?: number;
|
|
5096
4472
|
/** ☆☆☆☆ ✔ Example: true */
|
|
5097
4473
|
UsePanoramaViewer?: boolean;
|
|
4474
|
+
/** ☆☆☆☆ Example: */
|
|
4475
|
+
Versions?: Version[] | Version | string;
|
|
5098
4476
|
/** ☆☆☆☆ ✔ Example: "+21" */
|
|
5099
4477
|
Vibrance?: string;
|
|
5100
4478
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5101
4479
|
VignetteAmount?: number;
|
|
5102
4480
|
/** ☆☆☆☆ Example: [4500] */
|
|
5103
4481
|
WavelengthFWHM?: number[];
|
|
5104
|
-
/** ☆☆☆☆ ✔ Example: 2.851895 */
|
|
5105
|
-
WhiteBalance0?: number;
|
|
5106
|
-
/** ☆☆☆☆ ✔ Example: 1.100371 */
|
|
5107
|
-
WhiteBalance1?: number;
|
|
5108
|
-
/** ☆☆☆☆ ✔ Example: */
|
|
5109
|
-
Whites2012?: string;
|
|
5110
4482
|
/** ☆☆☆☆ ✔ Example: "XMP toolkit 3.0-28, framework 1.6" */
|
|
5111
4483
|
XMPToolkit?: string;
|
|
5112
4484
|
}
|
|
4485
|
+
/**
|
|
4486
|
+
* This is a partial list of fields returned by {@link ExifTool.read}.
|
|
4487
|
+
*
|
|
4488
|
+
* To prevent error TS2590: (Expression produces a union type that is too
|
|
4489
|
+
* complex to represent) only the most common 2874 tags are retained in this
|
|
4490
|
+
* interface.
|
|
4491
|
+
*
|
|
4492
|
+
* Comments by each tag include popularity (★★★★ is found in > 50% of samples,
|
|
4493
|
+
* and ☆☆☆☆ is rare), followed by a checkmark if the tag is used by popular
|
|
4494
|
+
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
4495
|
+
* popularity ratings.
|
|
4496
|
+
*
|
|
4497
|
+
* Autogenerated by "yarn mktags" by ExifTool 12.40 on Wed Apr 13 2022.
|
|
4498
|
+
* 2904 unique tags were found in 9968 photo and video files.
|
|
4499
|
+
*/
|
|
5113
4500
|
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 {
|
|
5114
4501
|
errors?: string[];
|
|
5115
4502
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|