exiftool-vendored 16.1.0 → 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 +16 -1
- package/dist/ExifDateTime.d.ts +1 -0
- package/dist/ExifDateTime.js +4 -0
- package/dist/ExifDateTime.js.map +1 -1
- package/dist/ExifTool.d.ts +14 -2
- package/dist/ExifTool.js +6 -3
- package/dist/ExifTool.js.map +1 -1
- package/dist/ReadTask.d.ts +1 -7
- package/dist/ReadTask.js +126 -116
- 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/Struct.js +4 -4
- package/dist/Struct.js.map +1 -1
- package/dist/Tags.d.ts +386 -1032
- package/dist/Version.d.ts +13 -0
- package/dist/Version.js +3 -0
- package/dist/Version.js.map +1 -0
- package/dist/WriteTask.js +1 -0
- package/dist/WriteTask.js.map +1 -1
- package/package.json +11 -11
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,43 +17,25 @@ 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-03-06T20:51:30.000-08:00 */
|
|
37
|
-
FileAccessDate?: ExifDateTime | string;
|
|
38
|
-
/** ★★★★ ✔ Example: 2022-03-06T18:41:07.000-08:00 */
|
|
39
|
-
FileInodeChangeDate?: ExifDateTime | string;
|
|
40
|
-
/** ★★★★ ✔ Example: 2022-02-18T12:22:50.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
|
-
/** ★★★★ ✔ Example: "
|
|
30
|
+
/** ★★★★ ✔ Example: "RW2" */
|
|
49
31
|
FileType?: string;
|
|
50
|
-
/** ★★★★ ✔ Example: "
|
|
32
|
+
/** ★★★★ ✔ Example: "rw2" */
|
|
51
33
|
FileTypeExtension?: string;
|
|
52
|
-
/** ★★★★ ✔ Example:
|
|
34
|
+
/** ★★★★ ✔ Example: 8 */
|
|
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;
|
|
@@ -67,23 +49,19 @@ export interface FileTags {
|
|
|
67
49
|
PixelsPerMeterY?: number;
|
|
68
50
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
69
51
|
Planes?: number;
|
|
70
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
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
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
60
|
+
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
83
61
|
AvgBitrate?: string;
|
|
84
62
|
/** ★★☆☆ ✔ Example: 4.914063 */
|
|
85
63
|
BlueBalance?: number;
|
|
86
|
-
/** ☆☆☆☆ ✔ Example: "[
|
|
64
|
+
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
87
65
|
CFAPattern?: string;
|
|
88
66
|
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
89
67
|
CircleOfConfusion?: string;
|
|
@@ -97,20 +75,14 @@ export interface CompositeTags {
|
|
|
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" */
|
|
@@ -121,9 +93,9 @@ export interface CompositeTags {
|
|
|
121
93
|
FocusDistance?: string;
|
|
122
94
|
/** ☆☆☆☆ ✔ Example: 99.8 */
|
|
123
95
|
GPSAltitude?: number;
|
|
124
|
-
/** ☆☆☆☆
|
|
96
|
+
/** ☆☆☆☆ ✔ Example: "Above Sea Level" */
|
|
125
97
|
GPSAltitudeRef?: string;
|
|
126
|
-
/** ☆☆☆☆ ✔ Example:
|
|
98
|
+
/** ☆☆☆☆ ✔ Example: 2020-10-23T09:27:26.000Z */
|
|
127
99
|
GPSDateTime?: ExifDateTime | string;
|
|
128
100
|
/** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
|
|
129
101
|
GPSDestLatitude?: string;
|
|
@@ -143,13 +115,13 @@ export interface CompositeTags {
|
|
|
143
115
|
HyperfocalDistance?: string;
|
|
144
116
|
/** ★★☆☆ ✔ Example: 993 */
|
|
145
117
|
ISO?: number;
|
|
146
|
-
/** ★★★★ ✔ Example: "
|
|
118
|
+
/** ★★★★ ✔ Example: "8x8" */
|
|
147
119
|
ImageSize?: string;
|
|
148
|
-
/** ★★☆☆ ✔ Example: "
|
|
120
|
+
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm" */
|
|
149
121
|
Lens?: string;
|
|
150
|
-
/** ★★☆☆ ✔ Example: "
|
|
122
|
+
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
151
123
|
Lens35efl?: string;
|
|
152
|
-
/**
|
|
124
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
153
125
|
LensID?: string;
|
|
154
126
|
/** ☆☆☆☆ ✔ Example: "85mm f/1.8 G" */
|
|
155
127
|
LensSpec?: string;
|
|
@@ -157,9 +129,9 @@ export interface CompositeTags {
|
|
|
157
129
|
LensType?: string;
|
|
158
130
|
/** ★★★★ ✔ Example: 9.9 */
|
|
159
131
|
LightValue?: number;
|
|
160
|
-
/** ★★★★ ✔ Example: 9.
|
|
132
|
+
/** ★★★★ ✔ Example: 9.5 */
|
|
161
133
|
Megapixels?: number;
|
|
162
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
134
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
163
135
|
OriginalDecisionData?: string;
|
|
164
136
|
/** ☆☆☆☆ Example: "9.9 um" */
|
|
165
137
|
PeakSpectralSensitivity?: string;
|
|
@@ -185,13 +157,13 @@ export interface CompositeTags {
|
|
|
185
157
|
ShutterCurtainHack?: string;
|
|
186
158
|
/** ★★★★ ✔ Example: "inf" */
|
|
187
159
|
ShutterSpeed?: string;
|
|
188
|
-
/**
|
|
160
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
189
161
|
SubSecCreateDate?: ExifDateTime | string;
|
|
190
|
-
/**
|
|
162
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
191
163
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
192
164
|
/** ☆☆☆☆ Example: */
|
|
193
165
|
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
194
|
-
/**
|
|
166
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
195
167
|
SubSecModifyDate?: ExifDateTime | string;
|
|
196
168
|
}
|
|
197
169
|
export interface APP1Tags {
|
|
@@ -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 */
|
|
@@ -507,15 +467,9 @@ export interface APP5Tags {
|
|
|
507
467
|
Compass?: string;
|
|
508
468
|
}
|
|
509
469
|
export interface EXIFTags {
|
|
510
|
-
/** ☆☆☆☆ ✔ Example: 985255 */
|
|
511
|
-
Acceleration?: number;
|
|
512
|
-
/** ☆☆☆☆ Example: "80 122 3950 5918" */
|
|
513
|
-
ActiveArea?: string;
|
|
514
|
-
/** ☆☆☆☆ ✔ Example: "29.9 C" */
|
|
515
|
-
AmbientTemperature?: string;
|
|
516
470
|
/** ☆☆☆☆ ✔ Example: "2.225585938 1 2.039794922" */
|
|
517
471
|
AnalogBalance?: string;
|
|
518
|
-
/** ☆☆☆☆ ✔ Example:
|
|
472
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
519
473
|
AntiAliasStrength?: number;
|
|
520
474
|
/** ★★★☆ ✔ Example: 9016997700 */
|
|
521
475
|
ApertureValue?: number;
|
|
@@ -523,84 +477,54 @@ export interface EXIFTags {
|
|
|
523
477
|
Artist?: string;
|
|
524
478
|
/** ☆☆☆☆ ✔ Example: "1 1 1" */
|
|
525
479
|
AsShotNeutral?: string;
|
|
526
|
-
/** ☆☆☆☆ ✔ Example: 3.
|
|
480
|
+
/** ☆☆☆☆ ✔ Example: 3.0021124 */
|
|
527
481
|
BaselineExposure?: number;
|
|
528
|
-
/** ☆☆☆☆ Example: 0 */
|
|
529
|
-
BaselineExposureOffset?: number;
|
|
530
|
-
/** ☆☆☆☆ Example: 9 */
|
|
531
|
-
BaselineNoise?: number;
|
|
532
482
|
/** ☆☆☆☆ ✔ Example: 1.5 */
|
|
533
483
|
BaselineSharpness?: number;
|
|
534
|
-
/** ☆☆☆☆
|
|
535
|
-
|
|
536
|
-
/** ☆☆☆☆
|
|
537
|
-
BestQualityScale?: number;
|
|
538
|
-
/** ☆☆☆☆ ✔ Example: 64 */
|
|
484
|
+
/** ☆☆☆☆ ✔ Example: "8 8 8" */
|
|
485
|
+
BitsPerSample?: string;
|
|
486
|
+
/** ☆☆☆☆ ✔ Example: 528 */
|
|
539
487
|
BlackLevel?: number;
|
|
540
|
-
/** ☆☆☆☆ ✔ Example:
|
|
488
|
+
/** ☆☆☆☆ ✔ Example: 128 */
|
|
541
489
|
BlackLevelBlue?: number;
|
|
542
|
-
/** ☆☆☆☆ ✔ Example:
|
|
490
|
+
/** ☆☆☆☆ ✔ Example: 128 */
|
|
543
491
|
BlackLevelGreen?: number;
|
|
544
|
-
/** ☆☆☆☆ ✔ Example:
|
|
492
|
+
/** ☆☆☆☆ ✔ Example: 128 */
|
|
545
493
|
BlackLevelRed?: number;
|
|
546
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
494
|
+
/** ☆☆☆☆ ✔ Example: "1 1" */
|
|
547
495
|
BlackLevelRepeatDim?: string;
|
|
548
496
|
/** ★★☆☆ ✔ Example: 9.9919505 */
|
|
549
497
|
BrightnessValue?: number;
|
|
550
|
-
/** ☆☆☆☆ Example: "Rectangular" */
|
|
551
|
-
CFALayout?: string;
|
|
552
498
|
/** ☆☆☆☆ ✔ Example: "Red,Green,Blue" */
|
|
553
499
|
CFAPlaneColor?: string;
|
|
554
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
500
|
+
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
555
501
|
CFARepeatPatternDim?: string;
|
|
556
|
-
/** ☆☆☆☆ Example: "com.adobe" */
|
|
557
|
-
CameraCalibrationSig?: string;
|
|
558
502
|
/** ☆☆☆☆ ✔ Example: "22 -128 0 0 0 128 128 256 384 384 512 640 1152 1152 1152 1024 89…" */
|
|
559
503
|
ChromaticAberrationCorrParams?: string;
|
|
560
504
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
561
505
|
ChromaticAberrationCorrection?: string;
|
|
562
|
-
/** ★★★★ ✔ Example: "sRGB" */
|
|
563
|
-
ColorSpace?: string;
|
|
564
|
-
/** ★★★★ ✔ Example: "Y, Cr, Cb, -" */
|
|
565
|
-
ComponentsConfiguration?: string;
|
|
566
506
|
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
567
507
|
CompositeImage?: string;
|
|
568
508
|
/** ★★★★ ✔ Example: 90 */
|
|
569
509
|
CompressedBitsPerPixel?: number;
|
|
570
|
-
/** ★★★☆ ✔ Example: "Unknown (
|
|
510
|
+
/** ★★★☆ ✔ Example: "Unknown (5)" */
|
|
571
511
|
Contrast?: string;
|
|
572
|
-
/**
|
|
512
|
+
/** ★★☆☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
|
|
573
513
|
Copyright?: string;
|
|
574
514
|
/** ★★★★ ✔ Example: 2218-09-22T02:32:14.000 */
|
|
575
515
|
CreateDate?: ExifDateTime | string;
|
|
576
|
-
/** ☆☆☆☆ Example: 7786 */
|
|
577
|
-
CropBottom?: number;
|
|
578
|
-
/** ☆☆☆☆ Example: 920 */
|
|
579
|
-
CropLeft?: number;
|
|
580
|
-
/** ☆☆☆☆ Example: 5480 */
|
|
581
|
-
CropRight?: number;
|
|
582
|
-
/** ☆☆☆☆ Example: 8 */
|
|
583
|
-
CropTop?: number;
|
|
584
516
|
/** ★★★★ ✔ Example: "Unknown (5840)" */
|
|
585
517
|
CustomRendered?: string;
|
|
586
|
-
/** ☆☆☆☆ ✔ Example: "1.
|
|
518
|
+
/** ☆☆☆☆ ✔ Example: "1.3.0.0" */
|
|
587
519
|
DNGBackwardVersion?: string;
|
|
588
|
-
/** ☆☆☆☆ Example: "8.8-36.8mm f/1.8-2.8" */
|
|
589
|
-
DNGLensInfo?: string;
|
|
590
|
-
/** ☆☆☆☆ Example: "(Binary data 765367 bytes, use -b option to extract)" */
|
|
591
|
-
DNGPrivateData?: string;
|
|
592
520
|
/** ☆☆☆☆ ✔ Example: "1.6.0.0" */
|
|
593
521
|
DNGVersion?: string;
|
|
594
522
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
595
523
|
DefaultBlackRender?: string;
|
|
596
524
|
/** ☆☆☆☆ ✔ Example: "8 8" */
|
|
597
525
|
DefaultCropOrigin?: string;
|
|
598
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
526
|
+
/** ☆☆☆☆ ✔ Example: "8272 6200" */
|
|
599
527
|
DefaultCropSize?: string;
|
|
600
|
-
/** ☆☆☆☆ Example: "1 1" */
|
|
601
|
-
DefaultScale?: string;
|
|
602
|
-
/** ☆☆☆☆ Example: "0.007879185817 0.01803118908 0.992777413 0.9926900585" */
|
|
603
|
-
DefaultUserCrop?: string;
|
|
604
528
|
/** ☆☆☆☆ ✔ Example: "(Binary data 536 bytes, use -b option to extract)" */
|
|
605
529
|
DeviceSettingDescription?: string;
|
|
606
530
|
/** ★★★☆ ✔ Example: 8.1319764 */
|
|
@@ -615,22 +539,16 @@ export interface EXIFTags {
|
|
|
615
539
|
ExifImageHeight?: number;
|
|
616
540
|
/** ★★★★ ✔ Example: 999 */
|
|
617
541
|
ExifImageWidth?: number;
|
|
618
|
-
/** ★★★★ ✔ Example: "Version 2.2" */
|
|
619
|
-
ExifVersion?: string;
|
|
620
542
|
/** ★☆☆☆ ✔ Example: 83 */
|
|
621
543
|
ExposureIndex?: number;
|
|
622
544
|
/** ★★★★ ✔ Example: "Unknown ()" */
|
|
623
545
|
ExposureMode?: string;
|
|
624
|
-
/** ★★★★ ✔ Example: "Unknown (
|
|
546
|
+
/** ★★★★ ✔ Example: "Unknown (8112)" */
|
|
625
547
|
ExposureProgram?: string;
|
|
626
548
|
/** ★★★★ ✔ Example: "Unknown (DSC)" */
|
|
627
549
|
FileSource?: string;
|
|
628
|
-
/** ☆☆☆☆ Example: "Normal" */
|
|
629
|
-
FillOrder?: string;
|
|
630
550
|
/** ☆☆☆☆ ✔ Example: 54 */
|
|
631
551
|
FlashEnergy?: number;
|
|
632
|
-
/** ★★★★ ✔ Example: "?" */
|
|
633
|
-
FlashpixVersion?: string;
|
|
634
552
|
/** ★★★★ ✔ Example: "99.7 mm" */
|
|
635
553
|
FocalLength?: string;
|
|
636
554
|
/** ★★★☆ ✔ Example: "9920 mm" */
|
|
@@ -643,17 +561,17 @@ export interface EXIFTags {
|
|
|
643
561
|
FocalPlaneYResolution?: number;
|
|
644
562
|
/** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
|
|
645
563
|
GPSAreaInformation?: string;
|
|
646
|
-
/** ☆☆☆☆ ✔ Example:
|
|
564
|
+
/** ☆☆☆☆ ✔ Example: 2020-10-23 */
|
|
647
565
|
GPSDateStamp?: ExifDate | string;
|
|
648
566
|
/** ☆☆☆☆ ✔ Example: 86.180049 */
|
|
649
567
|
GPSDestBearing?: number;
|
|
650
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
568
|
+
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
651
569
|
GPSDestBearingRef?: string;
|
|
652
570
|
/** ☆☆☆☆ ✔ Example: 0.030120052 */
|
|
653
571
|
GPSDestDistance?: number;
|
|
654
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
572
|
+
/** ☆☆☆☆ ✔ Example: "Kilometers" */
|
|
655
573
|
GPSDestDistanceRef?: string;
|
|
656
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
574
|
+
/** ☆☆☆☆ ✔ Example: "North" */
|
|
657
575
|
GPSDestLatitudeRef?: string;
|
|
658
576
|
/** ☆☆☆☆ ✔ Example: "West" */
|
|
659
577
|
GPSDestLongitudeRef?: string;
|
|
@@ -661,7 +579,7 @@ export interface EXIFTags {
|
|
|
661
579
|
GPSDifferential?: string;
|
|
662
580
|
/** ☆☆☆☆ ✔ Example: "8.937059922 m" */
|
|
663
581
|
GPSHPositioningError?: string;
|
|
664
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (
|
|
582
|
+
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
665
583
|
GPSMeasureMode?: string;
|
|
666
584
|
/** ☆☆☆☆ ✔ Example: "gps" */
|
|
667
585
|
GPSProcessingMethod?: string;
|
|
@@ -677,10 +595,8 @@ export interface EXIFTags {
|
|
|
677
595
|
GPSTimeStamp?: ExifTime | string;
|
|
678
596
|
/** ☆☆☆☆ ✔ Example: 74.882813 */
|
|
679
597
|
GPSTrack?: number;
|
|
680
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
598
|
+
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
681
599
|
GPSTrackRef?: string;
|
|
682
|
-
/** ★★☆☆ ✔ Example: "50.51.48.48" */
|
|
683
|
-
GPSVersionID?: string;
|
|
684
600
|
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
685
601
|
GainControl?: string;
|
|
686
602
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -693,21 +609,17 @@ export interface EXIFTags {
|
|
|
693
609
|
HostComputer?: string;
|
|
694
610
|
/** ☆☆☆☆ ✔ Example: 598 */
|
|
695
611
|
ISOSpeed?: number;
|
|
696
|
-
/** ★★★☆ ✔ Example: "
|
|
612
|
+
/** ★★★☆ ✔ Example: "untitled" */
|
|
697
613
|
ImageDescription?: string;
|
|
698
614
|
/** ☆☆☆☆ ✔ Example: 43991 */
|
|
699
615
|
ImageNumber?: number;
|
|
700
616
|
/** ☆☆☆☆ ✔ Example: "fa5fdfee65f3a6e05fe7d4692b9112a7" */
|
|
701
617
|
ImageUniqueID?: string;
|
|
702
|
-
/**
|
|
703
|
-
InteropIndex?: string;
|
|
704
|
-
/** ★★★★ ✔ Example: "undef undef undef" */
|
|
705
|
-
InteropVersion?: string;
|
|
706
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 996858 bytes, use -b option to extract)" */
|
|
618
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 926720 bytes, use -b option to extract)" */
|
|
707
619
|
JpgFromRaw?: string;
|
|
708
|
-
/** ☆☆☆☆ ✔ Example:
|
|
620
|
+
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
709
621
|
JpgFromRawLength?: number;
|
|
710
|
-
/** ☆☆☆☆ ✔ Example:
|
|
622
|
+
/** ☆☆☆☆ ✔ Example: 978944 */
|
|
711
623
|
JpgFromRawStart?: number;
|
|
712
624
|
/** ★☆☆☆ ✔ Example: "?mm f/?" */
|
|
713
625
|
LensInfo?: string;
|
|
@@ -715,22 +627,16 @@ export interface EXIFTags {
|
|
|
715
627
|
LensMake?: string;
|
|
716
628
|
/** ★★★★ ✔ Example: "White Fluorescent" */
|
|
717
629
|
LightSource?: string;
|
|
718
|
-
/** ☆☆☆☆ Example: 1 */
|
|
719
|
-
LinearResponseLimit?: number;
|
|
720
630
|
/** ☆☆☆☆ ✔ Example: 4095 */
|
|
721
631
|
LinearityLimitBlue?: number;
|
|
722
632
|
/** ☆☆☆☆ ✔ Example: 4095 */
|
|
723
633
|
LinearityLimitGreen?: number;
|
|
724
634
|
/** ☆☆☆☆ ✔ Example: 4095 */
|
|
725
635
|
LinearityLimitRed?: number;
|
|
726
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
636
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 22629 bytes, use -b option to extract)" */
|
|
727
637
|
LinearizationTable?: string;
|
|
728
|
-
/** ☆☆☆☆ Example: "XB015" */
|
|
729
|
-
LocalizedCameraModel?: string;
|
|
730
638
|
/** ★★★★ ✔ Example: "samsung" */
|
|
731
639
|
Make?: string;
|
|
732
|
-
/** ☆☆☆☆ Example: "Unsafe" */
|
|
733
|
-
MakerNoteSafety?: string;
|
|
734
640
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3072 bytes, use -b option to extract)" */
|
|
735
641
|
MakerNoteSamsung1a?: string;
|
|
736
642
|
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
@@ -747,13 +653,9 @@ export interface EXIFTags {
|
|
|
747
653
|
Model2?: string;
|
|
748
654
|
/** ★★★★ ✔ Example: 2216-02-28T03:49:50.000 */
|
|
749
655
|
ModifyDate?: ExifDateTime | string;
|
|
750
|
-
/** ☆☆☆☆ Example: "Pixel Shift" */
|
|
751
|
-
Multishot?: string;
|
|
752
|
-
/** ☆☆☆☆ Example: "ef0b8484e24c9aa107ac2ad2c7d8d04b" */
|
|
753
|
-
NewRawImageDigest?: string;
|
|
754
656
|
/** ☆☆☆☆ ✔ Example: 6 */
|
|
755
657
|
Noise?: number;
|
|
756
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
658
|
+
/** ☆☆☆☆ ✔ Example: "3e-05 3e-08" */
|
|
757
659
|
NoiseProfile?: string;
|
|
758
660
|
/** ☆☆☆☆ ✔ Example: 0.94999999 */
|
|
759
661
|
NoiseReductionApplied?: number;
|
|
@@ -767,73 +669,39 @@ export interface EXIFTags {
|
|
|
767
669
|
OffsetTimeDigitized?: string;
|
|
768
670
|
/** ☆☆☆☆ ✔ Example: "-09:00" */
|
|
769
671
|
OffsetTimeOriginal?: string;
|
|
770
|
-
/** ★★★★ ✔ Example:
|
|
672
|
+
/** ★★★★ ✔ Example: 8 */
|
|
771
673
|
Orientation?: number;
|
|
772
|
-
/** ☆☆☆☆
|
|
773
|
-
OriginalBestQualitySize?: string;
|
|
774
|
-
/** ☆☆☆☆ Example: "undef undef" */
|
|
775
|
-
OriginalDefaultCropSize?: string;
|
|
776
|
-
/** ☆☆☆☆ Example: "0 0" */
|
|
777
|
-
OriginalDefaultFinalSize?: string;
|
|
778
|
-
/** ☆☆☆☆ Example: "fujifilm-x100s-daylight-DSCF9505.RAF" */
|
|
779
|
-
OriginalRawFileName?: string;
|
|
780
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 993611 bytes, use -b option to extract)" */
|
|
674
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 941265 bytes, use -b option to extract)" */
|
|
781
675
|
OtherImage?: string;
|
|
782
|
-
/** ☆☆☆☆ ✔ Example:
|
|
676
|
+
/** ☆☆☆☆ ✔ Example: 941265 */
|
|
783
677
|
OtherImageLength?: number;
|
|
784
678
|
/** ☆☆☆☆ ✔ Example: 755 */
|
|
785
679
|
OtherImageStart?: number;
|
|
786
|
-
/**
|
|
680
|
+
/** ☆☆☆☆ ✔ Example: "Itsa Myowna" */
|
|
787
681
|
OwnerName?: string;
|
|
788
682
|
/** ☆☆☆☆ ✔ Example: "(Binary data 2060 bytes, use -b option to extract)" */
|
|
789
683
|
Padding?: string;
|
|
790
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
684
|
+
/** ☆☆☆☆ ✔ Example: "Reflective" */
|
|
791
685
|
PageName?: string;
|
|
792
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
686
|
+
/** ☆☆☆☆ ✔ Example: "0330" */
|
|
793
687
|
PanasonicRawVersion?: string;
|
|
794
|
-
/**
|
|
688
|
+
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
795
689
|
PhotometricInterpretation?: string;
|
|
796
|
-
/**
|
|
797
|
-
PlanarConfiguration?: string;
|
|
798
|
-
/** ☆☆☆☆ Example: "None" */
|
|
799
|
-
Predictor?: string;
|
|
800
|
-
/** ☆☆☆☆ ✔ Example: 995 */
|
|
801
|
-
Pressure?: number;
|
|
802
|
-
/** ☆☆☆☆ Example: "dng_validate" */
|
|
803
|
-
PreviewApplicationName?: string;
|
|
804
|
-
/** ☆☆☆☆ Example: 9.8 */
|
|
805
|
-
PreviewApplicationVersion?: number;
|
|
806
|
-
/** ☆☆☆☆ Example: "sRGB" */
|
|
807
|
-
PreviewColorSpace?: string;
|
|
808
|
-
/** ☆☆☆☆ ✔ Example: 2019-03-10T21:12:53.000+08:00 */
|
|
690
|
+
/** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000+01:00 */
|
|
809
691
|
PreviewDateTime?: ExifDateTime | string;
|
|
810
|
-
/** ☆☆☆☆ ✔ Example:
|
|
692
|
+
/** ☆☆☆☆ ✔ Example: 895146 */
|
|
811
693
|
PreviewImageLength?: number;
|
|
812
694
|
/** ☆☆☆☆ ✔ Example: 9996 */
|
|
813
695
|
PreviewImageStart?: number;
|
|
814
|
-
/** ☆☆☆☆
|
|
815
|
-
PreviewSettingsDigest?: string;
|
|
816
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 98514 bytes, use -b option to extract)" */
|
|
696
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 4665816 bytes, use -b option to extract)" */
|
|
817
697
|
PreviewTIFF?: string;
|
|
818
698
|
/** ☆☆☆☆ ✔ Example: "0.64 0.33 0.3 0.6 0.15 0.06" */
|
|
819
699
|
PrimaryChromaticities?: string;
|
|
820
700
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
821
701
|
ProcessingSoftware?: string;
|
|
822
|
-
/** ☆☆☆☆ Example: "com.adobe" */
|
|
823
|
-
ProfileCalibrationSig?: string;
|
|
824
|
-
/** ☆☆☆☆ Example: "© Chuckles McSnortypants, Inc." */
|
|
825
|
-
ProfileCopyright?: string;
|
|
826
|
-
/** ☆☆☆☆ Example: "Allow Copying" */
|
|
827
|
-
ProfileEmbedPolicy?: string;
|
|
828
702
|
/** ☆☆☆☆ ✔ Example: "(Binary data 822464 bytes, use -b option to extract)" */
|
|
829
703
|
ProfileGainTableMap?: string;
|
|
830
|
-
/** ☆☆☆☆
|
|
831
|
-
ProfileHueSatMapDims?: string;
|
|
832
|
-
/** ☆☆☆☆ Example: "0 1 1 0 1 1 0 1 1 0 1 1 0 1 1 0 1 1" */
|
|
833
|
-
ProfileLookTableData?: string;
|
|
834
|
-
/** ☆☆☆☆ Example: "36 8 16" */
|
|
835
|
-
ProfileLookTableDims?: string;
|
|
836
|
-
/** ☆☆☆☆ ✔ Example: "XB015" */
|
|
704
|
+
/** ☆☆☆☆ ✔ Example: "Apple Embedded Color Profile" */
|
|
837
705
|
ProfileName?: string;
|
|
838
706
|
/** ☆☆☆☆ ✔ Example: "(Binary data 7195 bytes, use -b option to extract)" */
|
|
839
707
|
ProfileToneCurve?: string;
|
|
@@ -841,20 +709,16 @@ export interface EXIFTags {
|
|
|
841
709
|
Rating?: number;
|
|
842
710
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
843
711
|
RatingPercent?: number;
|
|
844
|
-
/** ☆☆☆☆ ✔ Example:
|
|
712
|
+
/** ☆☆☆☆ ✔ Example: 928768 */
|
|
845
713
|
RawDataOffset?: number;
|
|
846
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
714
|
+
/** ☆☆☆☆ ✔ Example: "30334630433733453030303030324231" */
|
|
847
715
|
RawDataUniqueID?: string;
|
|
848
|
-
/** ☆☆☆☆ ✔ Example:
|
|
716
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
849
717
|
RawFormat?: number;
|
|
850
|
-
/** ☆☆☆☆
|
|
851
|
-
RawImageDigest?: string;
|
|
852
|
-
/** ☆☆☆☆ ✔ Example: "8 2160 2160" */
|
|
718
|
+
/** ☆☆☆☆ ✔ Example: "3 1440 1440" */
|
|
853
719
|
RawImageSegmentation?: string;
|
|
854
|
-
/**
|
|
720
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
855
721
|
RecommendedExposureIndex?: number;
|
|
856
|
-
/** ☆☆☆☆ Example: "M14-1451c" */
|
|
857
|
-
ReelName?: string;
|
|
858
722
|
/** ☆☆☆☆ ✔ Example: "0 255 128 255 128 255" */
|
|
859
723
|
ReferenceBlackWhite?: string;
|
|
860
724
|
/** ☆☆☆☆ Example: "JPEG Exif Ver 2.2" */
|
|
@@ -865,15 +729,11 @@ export interface EXIFTags {
|
|
|
865
729
|
RelatedImageWidth?: number;
|
|
866
730
|
/** ☆☆☆☆ ✔ Example: "xxx.avi" */
|
|
867
731
|
RelatedSoundFile?: string;
|
|
868
|
-
/**
|
|
869
|
-
ResolutionUnit?: string;
|
|
870
|
-
/** ★☆☆☆ ✔ Example: 96 */
|
|
732
|
+
/** ☆☆☆☆ ✔ Example: 96 */
|
|
871
733
|
RowsPerStrip?: number;
|
|
872
734
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
873
735
|
SRawType?: number;
|
|
874
|
-
/** ☆☆☆☆
|
|
875
|
-
SampleFormat?: string;
|
|
876
|
-
/** ★☆☆☆ ✔ Example: 3 */
|
|
736
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
877
737
|
SamplesPerPixel?: number;
|
|
878
738
|
/** ★★★☆ ✔ Example: "Unknown (8)" */
|
|
879
739
|
Saturation?: string;
|
|
@@ -881,28 +741,24 @@ export interface EXIFTags {
|
|
|
881
741
|
SceneCaptureType?: string;
|
|
882
742
|
/** ★★★★ ✔ Example: "Unknown (9)" */
|
|
883
743
|
SceneType?: string;
|
|
884
|
-
/** ☆☆☆☆ Example: 0 */
|
|
885
|
-
SelfTimerMode?: number;
|
|
886
744
|
/** ☆☆☆☆ ✔ Example: "urn:com:apple:photo:2020:aux:semanticskymatte" */
|
|
887
745
|
SemanticName?: string;
|
|
888
746
|
/** ★★★☆ ✔ Example: "Unknown (74)" */
|
|
889
747
|
SensingMethod?: string;
|
|
890
748
|
/** ★★☆☆ ✔ Example: "Unknown" */
|
|
891
749
|
SensitivityType?: string;
|
|
892
|
-
/** ☆☆☆☆ ✔ Example:
|
|
750
|
+
/** ☆☆☆☆ ✔ Example: 3456 */
|
|
893
751
|
SensorBottomBorder?: number;
|
|
894
|
-
/** ☆☆☆☆ ✔ Example:
|
|
752
|
+
/** ☆☆☆☆ ✔ Example: 3464 */
|
|
895
753
|
SensorHeight?: number;
|
|
896
754
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
897
755
|
SensorLeftBorder?: number;
|
|
898
|
-
/** ☆☆☆☆ ✔ Example:
|
|
756
|
+
/** ☆☆☆☆ ✔ Example: 4600 */
|
|
899
757
|
SensorRightBorder?: number;
|
|
900
758
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
901
759
|
SensorTopBorder?: number;
|
|
902
|
-
/** ☆☆☆☆ ✔ Example:
|
|
760
|
+
/** ☆☆☆☆ ✔ Example: 4816 */
|
|
903
761
|
SensorWidth?: number;
|
|
904
|
-
/** ☆☆☆☆ Example: 1 */
|
|
905
|
-
ShadowScale?: number;
|
|
906
762
|
/** ★★★☆ ✔ Example: "Unknown (7824)" */
|
|
907
763
|
Sharpness?: string;
|
|
908
764
|
/** ★★★☆ ✔ Example: "1/999963365" */
|
|
@@ -917,47 +773,37 @@ export interface EXIFTags {
|
|
|
917
773
|
SpatialFrequencyResponse?: number;
|
|
918
774
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
919
775
|
StandardOutputSensitivity?: number;
|
|
920
|
-
/**
|
|
776
|
+
/** ☆☆☆☆ ✔ Example: 9600 */
|
|
921
777
|
StripByteCounts?: number;
|
|
922
|
-
/**
|
|
778
|
+
/** ☆☆☆☆ ✔ Example: 986 */
|
|
923
779
|
StripOffsets?: number;
|
|
924
|
-
/**
|
|
780
|
+
/** ★☆☆☆ ✔ Example: 988 */
|
|
925
781
|
SubSecTime?: number;
|
|
926
|
-
/**
|
|
782
|
+
/** ★☆☆☆ ✔ Example: 98 */
|
|
927
783
|
SubSecTimeDigitized?: number;
|
|
928
|
-
/**
|
|
784
|
+
/** ★☆☆☆ ✔ Example: 999 */
|
|
929
785
|
SubSecTimeOriginal?: number;
|
|
930
786
|
/** ☆☆☆☆ ✔ Example: "Semantic Mask" */
|
|
931
787
|
SubfileType?: string;
|
|
932
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
788
|
+
/** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
|
|
933
789
|
SubjectArea?: string;
|
|
934
790
|
/** ☆☆☆☆ ✔ Example: "99.99 m" */
|
|
935
791
|
SubjectDistance?: string;
|
|
936
792
|
/** ★★★☆ ✔ Example: "Unknown (4400)" */
|
|
937
793
|
SubjectDistanceRange?: string;
|
|
938
|
-
/** ☆☆☆☆ ✔ Example:
|
|
939
|
-
SubjectLocation?: number;
|
|
940
|
-
/** ★★★★ ✔ Example: "(Binary data 9998 bytes, use -b option to extract)" */
|
|
941
|
-
ThumbnailImage?: string;
|
|
942
|
-
/** ★★★★ ✔ Example: 9998 */
|
|
943
|
-
ThumbnailLength?: number;
|
|
944
|
-
/** ★★★★ ✔ Example: 998 */
|
|
945
|
-
ThumbnailOffset?: number;
|
|
946
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 98520 bytes, use -b option to extract)" */
|
|
794
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
|
|
947
795
|
ThumbnailTIFF?: string;
|
|
948
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
796
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
|
|
949
797
|
TileByteCounts?: string;
|
|
950
|
-
/** ☆☆☆☆ ✔ Example:
|
|
798
|
+
/** ☆☆☆☆ ✔ Example: 512 */
|
|
951
799
|
TileLength?: number;
|
|
952
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
800
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 562 bytes, use -b option to extract)" */
|
|
953
801
|
TileOffsets?: string;
|
|
954
|
-
/** ☆☆☆☆ ✔ Example:
|
|
802
|
+
/** ☆☆☆☆ ✔ Example: 512 */
|
|
955
803
|
TileWidth?: number;
|
|
956
|
-
/** ☆☆☆☆
|
|
957
|
-
TimeCodes?: ExifTime | string;
|
|
958
|
-
/** ☆☆☆☆ ✔ Example: */
|
|
804
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
959
805
|
TimeZoneOffset?: number | string;
|
|
960
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
806
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
|
|
961
807
|
TransferFunction?: string;
|
|
962
808
|
/** ☆☆☆☆ ✔ Example: "motorola XT1254" */
|
|
963
809
|
UniqueCameraModel?: string;
|
|
@@ -967,14 +813,12 @@ export interface EXIFTags {
|
|
|
967
813
|
VignettingCorrParams?: string;
|
|
968
814
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
969
815
|
VignettingCorrection?: string;
|
|
970
|
-
/** ☆☆☆☆ ✔ Example:
|
|
816
|
+
/** ☆☆☆☆ ✔ Example: 538 */
|
|
971
817
|
WBBlueLevel?: number;
|
|
972
818
|
/** ☆☆☆☆ ✔ Example: 265 */
|
|
973
819
|
WBGreenLevel?: number;
|
|
974
820
|
/** ☆☆☆☆ ✔ Example: 737 */
|
|
975
821
|
WBRedLevel?: number;
|
|
976
|
-
/** ☆☆☆☆ ✔ Example: 0.1 */
|
|
977
|
-
WaterDepth?: number;
|
|
978
822
|
/** ★★★★ ✔ Example: "Unknown (65535)" */
|
|
979
823
|
WhiteBalance?: string;
|
|
980
824
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
@@ -985,20 +829,16 @@ export interface EXIFTags {
|
|
|
985
829
|
XPAuthor?: string;
|
|
986
830
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
987
831
|
XPComment?: string;
|
|
988
|
-
/** ☆☆☆☆ ✔ Example: "v01.
|
|
832
|
+
/** ☆☆☆☆ ✔ Example: "v01.40.0002;0.0.1;v1.0.0" */
|
|
989
833
|
XPKeywords?: string;
|
|
990
834
|
/** ☆☆☆☆ ✔ Example: "image thermique, thermal image" */
|
|
991
835
|
XPSubject?: string;
|
|
992
836
|
/** ☆☆☆☆ ✔ Example: "楆慮敤琠牡敤攠汉慨䈠汥Ⅱ" */
|
|
993
837
|
XPTitle?: string;
|
|
994
|
-
/** ★★★★ ✔ Example: 99 */
|
|
995
|
-
XResolution?: number;
|
|
996
838
|
/** ☆☆☆☆ ✔ Example: "0.299 0.587 0.114" */
|
|
997
839
|
YCbCrCoefficients?: string;
|
|
998
|
-
/**
|
|
999
|
-
|
|
1000
|
-
/** ★★★★ ✔ Example: 99 */
|
|
1001
|
-
YResolution?: number;
|
|
840
|
+
/** ☆☆☆☆ ✔ Example: "YCbCr4:2:2 (2 1)" */
|
|
841
|
+
YCbCrSubSampling?: string;
|
|
1002
842
|
}
|
|
1003
843
|
export interface APP6Tags {
|
|
1004
844
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
@@ -1069,16 +909,10 @@ export interface IPTCTags {
|
|
|
1069
909
|
DateSent?: string;
|
|
1070
910
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1071
911
|
Destination?: string;
|
|
1072
|
-
/** ☆☆☆☆ ✔ Example: 2021-03-16 */
|
|
1073
|
-
DigitalCreationDate?: ExifDate | string;
|
|
1074
|
-
/** ☆☆☆☆ ✔ Example: 20:25:15 */
|
|
1075
|
-
DigitalCreationTime?: ExifTime | string;
|
|
1076
912
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1077
913
|
EnvelopeNumber?: string;
|
|
1078
914
|
/** ☆☆☆☆ ✔ Example: "5 (normal urgency)" */
|
|
1079
915
|
EnvelopePriority?: string;
|
|
1080
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
1081
|
-
EnvelopeRecordVersion?: number;
|
|
1082
916
|
/** ☆☆☆☆ ✔ Example: "Tagged Image File Format (Adobe/Aldus Image data)" */
|
|
1083
917
|
FileFormat?: string;
|
|
1084
918
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
@@ -1105,7 +939,7 @@ export interface IPTCTags {
|
|
|
1105
939
|
SpecialInstructions?: string;
|
|
1106
940
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1107
941
|
SupplementalCategories?: string;
|
|
1108
|
-
/** ☆☆☆☆ ✔ Example: 23:
|
|
942
|
+
/** ☆☆☆☆ ✔ Example: 23:46:26 */
|
|
1109
943
|
TimeCreated?: ExifTime | string;
|
|
1110
944
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
1111
945
|
TimeSent?: string;
|
|
@@ -1177,32 +1011,10 @@ export interface MetaTags {
|
|
|
1177
1011
|
WatermarkType?: number;
|
|
1178
1012
|
}
|
|
1179
1013
|
export interface PanasonicRawTags {
|
|
1180
|
-
/** ☆☆☆☆ ✔ Example: 1
|
|
1014
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1181
1015
|
DistortionScale?: number;
|
|
1182
|
-
/** ☆☆☆☆ Example: "Yes" */
|
|
1183
|
-
FacesDetected?: string;
|
|
1184
|
-
/** ☆☆☆☆ Example: "Yes" */
|
|
1185
|
-
FlashFired?: string;
|
|
1186
|
-
/** ☆☆☆☆ Example: 5 */
|
|
1187
|
-
FocusStepNear?: number;
|
|
1188
|
-
/** ☆☆☆☆ Example: "Yes" */
|
|
1189
|
-
LensAttached?: string;
|
|
1190
|
-
/** ☆☆☆☆ Example: 2 */
|
|
1191
|
-
LensTypeMake?: number;
|
|
1192
|
-
/** ☆☆☆☆ Example: "30 10" */
|
|
1193
|
-
LensTypeModel?: string;
|
|
1194
|
-
/** ☆☆☆☆ Example: "Yes" */
|
|
1195
|
-
MultishotOn?: string;
|
|
1196
1016
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
1197
1017
|
NumWBEntries?: number;
|
|
1198
|
-
/** ☆☆☆☆ Example: 4.8789063 */
|
|
1199
|
-
SensitivityValue?: number;
|
|
1200
|
-
/** ☆☆☆☆ Example: "Tungsten" */
|
|
1201
|
-
WhiteBalanceDetected?: string;
|
|
1202
|
-
/** ☆☆☆☆ Example: "Kelvin" */
|
|
1203
|
-
WhiteBalanceSet?: string;
|
|
1204
|
-
/** ☆☆☆☆ Example: 54 */
|
|
1205
|
-
ZoomPosition?: number;
|
|
1206
1018
|
}
|
|
1207
1019
|
export interface PhotoshopTags {
|
|
1208
1020
|
/** ☆☆☆☆ ✔ Example: true */
|
|
@@ -1211,16 +1023,8 @@ export interface PhotoshopTags {
|
|
|
1211
1023
|
DisplayedUnitsX?: string;
|
|
1212
1024
|
/** ☆☆☆☆ ✔ Example: "inches" */
|
|
1213
1025
|
DisplayedUnitsY?: string;
|
|
1214
|
-
/** ☆☆☆☆ ✔ Example: 30 */
|
|
1215
|
-
GlobalAltitude?: number;
|
|
1216
|
-
/** ☆☆☆☆ ✔ Example: 90 */
|
|
1217
|
-
GlobalAngle?: number;
|
|
1218
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
1219
|
-
HasRealMergedData?: string;
|
|
1220
1026
|
/** ☆☆☆☆ ✔ Example: "fd826cdf97ac15335b426a20d23c1041" */
|
|
1221
1027
|
IPTCDigest?: string;
|
|
1222
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1223
|
-
NumSlices?: number;
|
|
1224
1028
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1225
1029
|
PhotoshopFormat?: string;
|
|
1226
1030
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
@@ -1237,12 +1041,10 @@ export interface PhotoshopTags {
|
|
|
1237
1041
|
PrintStyle?: string;
|
|
1238
1042
|
/** ☆☆☆☆ ✔ Example: "3 Scans" */
|
|
1239
1043
|
ProgressiveScans?: string;
|
|
1240
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1241
|
-
|
|
1242
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1243
|
-
|
|
1244
|
-
/** ☆☆☆☆ ✔ Example: "Adobe Photoshop" */
|
|
1245
|
-
WriterName?: string;
|
|
1044
|
+
/** ☆☆☆☆ ✔ Example: 72 */
|
|
1045
|
+
XResolution?: number;
|
|
1046
|
+
/** ☆☆☆☆ ✔ Example: 72 */
|
|
1047
|
+
YResolution?: number;
|
|
1246
1048
|
}
|
|
1247
1049
|
export interface PrintIMTags {
|
|
1248
1050
|
/** ★★★☆ ✔ Example: "0300" */
|
|
@@ -1271,7 +1073,7 @@ export interface QuickTimeTags {
|
|
|
1271
1073
|
BackgroundColor?: string;
|
|
1272
1074
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1273
1075
|
ChapterListTrackID?: number;
|
|
1274
|
-
/** ☆☆☆☆
|
|
1076
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1275
1077
|
CleanApertureDimensions?: string;
|
|
1276
1078
|
/** ☆☆☆☆ ✔ Example: "nclx 9 1 9" */
|
|
1277
1079
|
ColorRepresentation?: string;
|
|
@@ -1279,20 +1081,16 @@ export interface QuickTimeTags {
|
|
|
1279
1081
|
CompatibleBrands?: string[];
|
|
1280
1082
|
/** ☆☆☆☆ ✔ Example: "jpeg" */
|
|
1281
1083
|
CompressorID?: string;
|
|
1282
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1283
|
-
CompressorName?: string;
|
|
1284
|
-
/** ☆☆☆☆ Example: "Track 1" */
|
|
1084
|
+
/** ☆☆☆☆ ✔ Example: "Track 1" */
|
|
1285
1085
|
ContentDescribes?: string;
|
|
1286
|
-
/** ☆☆☆☆
|
|
1086
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T14:31:16.000-08:00 */
|
|
1287
1087
|
CreationDate?: ExifDateTime | string;
|
|
1288
1088
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1289
1089
|
CurrentTime?: string;
|
|
1290
|
-
/** ☆☆☆☆
|
|
1090
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1291
1091
|
EncodedPixelsDimensions?: string;
|
|
1292
1092
|
/** ☆☆☆☆ ✔ Example: "Helvetica" */
|
|
1293
1093
|
FontName?: string;
|
|
1294
|
-
/** ☆☆☆☆ ✔ Example: "51 deg 28' 58.44" N, 3 deg 11' 9.96" W, 13.739 m Above Sea Level" */
|
|
1295
|
-
GPSCoordinates?: string;
|
|
1296
1094
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1297
1095
|
GenBalance?: number;
|
|
1298
1096
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
@@ -1309,17 +1107,17 @@ export interface QuickTimeTags {
|
|
|
1309
1107
|
HandlerClass?: string;
|
|
1310
1108
|
/** ☆☆☆☆ ✔ Example: "SoundHandle" */
|
|
1311
1109
|
HandlerDescription?: string;
|
|
1312
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1110
|
+
/** ☆☆☆☆ ✔ Example: "Metadata Tags" */
|
|
1313
1111
|
HandlerType?: string;
|
|
1314
1112
|
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1315
1113
|
HandlerVendorID?: string;
|
|
1316
|
-
/** ☆☆☆☆
|
|
1114
|
+
/** ☆☆☆☆ ✔ Example: 4.798027 */
|
|
1317
1115
|
LocationAccuracyHorizontal?: number;
|
|
1318
1116
|
/** ☆☆☆☆ ✔ Example: "MP4 v2 [ISO 14496-14]" */
|
|
1319
1117
|
MajorBrand?: string;
|
|
1320
1118
|
/** ☆☆☆☆ ✔ Example: "1 0 0 0 1 0 0 0 1" */
|
|
1321
1119
|
MatrixStructure?: string;
|
|
1322
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1120
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000-08:00 */
|
|
1323
1121
|
MediaCreateDate?: ExifDateTime | string;
|
|
1324
1122
|
/** ☆☆☆☆ ✔ Example: 98304 */
|
|
1325
1123
|
MediaDataOffset?: number;
|
|
@@ -1331,11 +1129,11 @@ export interface QuickTimeTags {
|
|
|
1331
1129
|
MediaHeaderVersion?: number;
|
|
1332
1130
|
/** ☆☆☆☆ ✔ Example: "und" */
|
|
1333
1131
|
MediaLanguageCode?: string;
|
|
1334
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1132
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000-08:00 */
|
|
1335
1133
|
MediaModifyDate?: ExifDateTime | string;
|
|
1336
1134
|
/** ☆☆☆☆ ✔ Example: 8000 */
|
|
1337
1135
|
MediaTimeScale?: number;
|
|
1338
|
-
/** ☆☆☆☆
|
|
1136
|
+
/** ☆☆☆☆ ✔ Example: "mebx" */
|
|
1339
1137
|
MetaFormat?: string;
|
|
1340
1138
|
/** ☆☆☆☆ ✔ Example: "2011.7.0" */
|
|
1341
1139
|
MinorVersion?: string;
|
|
@@ -1359,14 +1157,10 @@ export interface QuickTimeTags {
|
|
|
1359
1157
|
PreviewDuration?: number;
|
|
1360
1158
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1361
1159
|
PreviewTime?: string;
|
|
1362
|
-
/** ☆☆☆☆
|
|
1160
|
+
/** ☆☆☆☆ ✔ Example: "3840x2160" */
|
|
1363
1161
|
ProductionApertureDimensions?: string;
|
|
1364
|
-
/** ☆☆☆☆
|
|
1162
|
+
/** ☆☆☆☆ ✔ Example: "mp4a" */
|
|
1365
1163
|
PurchaseFileFormat?: string;
|
|
1366
|
-
/** ☆☆☆☆ Example: 1 */
|
|
1367
|
-
SampleDuration?: number;
|
|
1368
|
-
/** ☆☆☆☆ Example: "0 s" */
|
|
1369
|
-
SampleTime?: string;
|
|
1370
1164
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1371
1165
|
SelectionDuration?: number;
|
|
1372
1166
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
@@ -1375,7 +1169,7 @@ export interface QuickTimeTags {
|
|
|
1375
1169
|
SerialNumberHash?: string;
|
|
1376
1170
|
/** ☆☆☆☆ ✔ Example: 720 */
|
|
1377
1171
|
SourceImageHeight?: number;
|
|
1378
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1172
|
+
/** ☆☆☆☆ ✔ Example: 640 */
|
|
1379
1173
|
SourceImageWidth?: number;
|
|
1380
1174
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1381
1175
|
TextColor?: string;
|
|
@@ -1389,7 +1183,7 @@ export interface QuickTimeTags {
|
|
|
1389
1183
|
TimeCode?: number;
|
|
1390
1184
|
/** ☆☆☆☆ ✔ Example: 90000 */
|
|
1391
1185
|
TimeScale?: number;
|
|
1392
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1186
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:16.000-08:00 */
|
|
1393
1187
|
TrackCreateDate?: ExifDateTime | string;
|
|
1394
1188
|
/** ☆☆☆☆ ✔ Example: 9.5095 */
|
|
1395
1189
|
TrackDuration?: number;
|
|
@@ -1399,7 +1193,7 @@ export interface QuickTimeTags {
|
|
|
1399
1193
|
TrackID?: number;
|
|
1400
1194
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1401
1195
|
TrackLayer?: number;
|
|
1402
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1196
|
+
/** ☆☆☆☆ ✔ Example: 2022-02-12T22:31:25.000-08:00 */
|
|
1403
1197
|
TrackModifyDate?: ExifDateTime | string;
|
|
1404
1198
|
/** ☆☆☆☆ ✔ Example: "0.00%" */
|
|
1405
1199
|
TrackVolume?: string;
|
|
@@ -1409,31 +1203,25 @@ export interface QuickTimeTags {
|
|
|
1409
1203
|
VideoFrameRate?: number;
|
|
1410
1204
|
}
|
|
1411
1205
|
export interface RAFTags {
|
|
1412
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1206
|
+
/** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.000124 0.0…" */
|
|
1413
1207
|
ChromaticAberrationParams?: string;
|
|
1414
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1208
|
+
/** ☆☆☆☆ ✔ Example: "12 12 12 12" */
|
|
1415
1209
|
FujiLayout?: string;
|
|
1416
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1210
|
+
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0 0 0 0 …" */
|
|
1417
1211
|
GeometricDistortionParams?: string;
|
|
1418
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1212
|
+
/** ☆☆☆☆ ✔ Example: -1.7 */
|
|
1419
1213
|
RawExposureBias?: number;
|
|
1420
|
-
/** ☆☆☆☆
|
|
1421
|
-
RawImageAspectRatio?: string;
|
|
1422
|
-
/** ☆☆☆☆ ✔ Example: "8 12" */
|
|
1214
|
+
/** ☆☆☆☆ ✔ Example: "6 16" */
|
|
1423
1215
|
RawImageCropTopLeft?: string;
|
|
1424
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1216
|
+
/** ☆☆☆☆ ✔ Example: "4896x3264" */
|
|
1425
1217
|
RawImageCroppedSize?: string;
|
|
1426
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1218
|
+
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
1427
1219
|
RawImageFullHeight?: number;
|
|
1428
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1220
|
+
/** ☆☆☆☆ ✔ Example: "5120x3288" */
|
|
1429
1221
|
RawImageFullSize?: string;
|
|
1430
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1222
|
+
/** ☆☆☆☆ ✔ Example: 5120 */
|
|
1431
1223
|
RawImageFullWidth?: number;
|
|
1432
|
-
/** ☆☆☆☆
|
|
1433
|
-
RawImageSize?: string;
|
|
1434
|
-
/** ☆☆☆☆ Example: 0 */
|
|
1435
|
-
RelativeExposure?: number;
|
|
1436
|
-
/** ☆☆☆☆ ✔ Example: "808.8888889 0.3535648995 0.5001828154 0.6124314442 0.7071297989 …" */
|
|
1224
|
+
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100 99.87 99…" */
|
|
1437
1225
|
VignettingParams?: string;
|
|
1438
1226
|
/** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
|
|
1439
1227
|
XTransLayout?: string;
|
|
@@ -1469,6 +1257,10 @@ export interface RIFFTags {
|
|
|
1469
1257
|
export interface JFIFTags {
|
|
1470
1258
|
/** ★★★☆ ✔ Example: 1.02 */
|
|
1471
1259
|
JFIFVersion?: number;
|
|
1260
|
+
/** ★★★☆ ✔ Example: "inches" */
|
|
1261
|
+
ResolutionUnit?: string;
|
|
1262
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 6105 bytes, use -b option to extract)" */
|
|
1263
|
+
ThumbnailImage?: string;
|
|
1472
1264
|
}
|
|
1473
1265
|
export interface MakerNotesTags {
|
|
1474
1266
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1487,11 +1279,11 @@ export interface MakerNotesTags {
|
|
|
1487
1279
|
AEBSequence?: string;
|
|
1488
1280
|
/** ☆☆☆☆ ✔ Example: "0,-,+/Enabled" */
|
|
1489
1281
|
AEBSequenceAutoCancel?: string;
|
|
1490
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1282
|
+
/** ☆☆☆☆ ✔ Example: "7 shots" */
|
|
1491
1283
|
AEBShotCount?: string;
|
|
1492
1284
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
1493
1285
|
AEBXv?: number;
|
|
1494
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1286
|
+
/** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
|
|
1495
1287
|
AEBracketingSteps?: string;
|
|
1496
1288
|
/** ☆☆☆☆ ✔ Example: "1/965" */
|
|
1497
1289
|
AEExposureTime?: string;
|
|
@@ -1501,11 +1293,11 @@ export interface MakerNotesTags {
|
|
|
1501
1293
|
AELExposureIndicator?: string;
|
|
1502
1294
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1503
1295
|
AELock?: string;
|
|
1504
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1296
|
+
/** ☆☆☆☆ ✔ Example: "AF Lock Only" */
|
|
1505
1297
|
AELockButton?: string;
|
|
1506
1298
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
1507
1299
|
AELockButtonPlusDials?: string;
|
|
1508
|
-
/** ☆☆☆☆ ✔ Example: "Evaluative
|
|
1300
|
+
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
1509
1301
|
AELockMeterModeAfterFocus?: string;
|
|
1510
1302
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
1511
1303
|
AEMaxAperture?: number;
|
|
@@ -1521,13 +1313,11 @@ export interface MakerNotesTags {
|
|
|
1521
1313
|
AEMinExposureTime?: string;
|
|
1522
1314
|
/** ☆☆☆☆ ✔ Example: "Sv or Green Mode" */
|
|
1523
1315
|
AEProgramMode?: string;
|
|
1524
|
-
/** ★☆☆☆ ✔ Example: "Normal AE" */
|
|
1525
|
-
AESetting?: string;
|
|
1526
1316
|
/** ☆☆☆☆ Example: "Daylight Fluorescent" */
|
|
1527
1317
|
AEWhiteBalance?: string;
|
|
1528
1318
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
1529
1319
|
AEXv?: number;
|
|
1530
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1320
|
+
/** ☆☆☆☆ ✔ Example: 127 */
|
|
1531
1321
|
AFAccelDecelTracking?: number;
|
|
1532
1322
|
/** ☆☆☆☆ ✔ Example: "Shutter/AF-On" */
|
|
1533
1323
|
AFActivation?: string;
|
|
@@ -1535,9 +1325,9 @@ export interface MakerNotesTags {
|
|
|
1535
1325
|
AFAdjustment?: number;
|
|
1536
1326
|
/** ☆☆☆☆ ✔ Example: "Metering start" */
|
|
1537
1327
|
AFAndMeteringButtons?: string;
|
|
1538
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1328
|
+
/** ☆☆☆☆ ✔ Example: 5.8 */
|
|
1539
1329
|
AFAperture?: number;
|
|
1540
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1330
|
+
/** ☆☆☆☆ ✔ Example: 840 */
|
|
1541
1331
|
AFAreaHeight?: number;
|
|
1542
1332
|
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1543
1333
|
AFAreaHeights?: string;
|
|
@@ -1545,8 +1335,6 @@ export interface MakerNotesTags {
|
|
|
1545
1335
|
AFAreaIllumination?: string;
|
|
1546
1336
|
/** ★★★☆ ✔ Example: "Zone AF" */
|
|
1547
1337
|
AFAreaMode?: string;
|
|
1548
|
-
/** ☆☆☆☆ ✔ Example: "Wide" */
|
|
1549
|
-
AFAreaModeSetting?: string;
|
|
1550
1338
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1551
1339
|
AFAreaPointSize?: string;
|
|
1552
1340
|
/** ☆☆☆☆ ✔ Example: "AF area selection button" */
|
|
@@ -1557,27 +1345,23 @@ export interface MakerNotesTags {
|
|
|
1557
1345
|
AFAreaWidth?: number;
|
|
1558
1346
|
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1559
1347
|
AFAreaWidths?: string;
|
|
1560
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1348
|
+
/** ☆☆☆☆ ✔ Example: 3295 */
|
|
1561
1349
|
AFAreaXPosition?: number;
|
|
1562
|
-
/** ★★☆☆ ✔ 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 …" */
|
|
1563
|
-
AFAreaXPositions?: string;
|
|
1564
1350
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1565
1351
|
AFAreaYPosition?: number;
|
|
1566
|
-
/** ★★☆☆ ✔ Example: "9 0 0 0 0 0 0 0 0" */
|
|
1567
|
-
AFAreaYPositions?: string;
|
|
1568
1352
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1569
1353
|
AFAreaZoneSize?: string;
|
|
1570
1354
|
/** ☆☆☆☆ ✔ Example: "none" */
|
|
1571
1355
|
AFAreas?: string;
|
|
1572
1356
|
/** ☆☆☆☆ ✔ Example: "Only ext. flash emits/Fires" */
|
|
1573
1357
|
AFAssist?: string;
|
|
1574
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1358
|
+
/** ☆☆☆☆ ✔ Example: "IR AF assist beam only" */
|
|
1575
1359
|
AFAssistBeam?: string;
|
|
1576
1360
|
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
1577
1361
|
AFAssistLamp?: string;
|
|
1578
1362
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1579
1363
|
AFButtonPressed?: string;
|
|
1580
|
-
/** ☆☆☆☆ ✔ Example: "Case
|
|
1364
|
+
/** ☆☆☆☆ ✔ Example: "Case 11" */
|
|
1581
1365
|
AFConfigTool?: string;
|
|
1582
1366
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1583
1367
|
AFDefocus?: number;
|
|
@@ -1585,23 +1369,15 @@ export interface MakerNotesTags {
|
|
|
1585
1369
|
AFDuringLiveView?: string;
|
|
1586
1370
|
/** ☆☆☆☆ ✔ Example: "On (2)" */
|
|
1587
1371
|
AFFineTune?: string;
|
|
1588
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1589
|
-
AFFineTuneAdj?:
|
|
1590
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1591
|
-
AFFineTuneAdjTele?: number;
|
|
1592
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1593
|
-
AFFineTuneIndex?: string;
|
|
1594
|
-
/** ☆☆☆☆ ✔ Example: "6L of Center" */
|
|
1372
|
+
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1373
|
+
AFFineTuneAdj?: string;
|
|
1374
|
+
/** ☆☆☆☆ ✔ Example: "5L of Center" */
|
|
1595
1375
|
AFFocusPointXPosition?: string;
|
|
1596
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1376
|
+
/** ☆☆☆☆ ✔ Example: "5U from Center" */
|
|
1597
1377
|
AFFocusPointYPosition?: string;
|
|
1598
1378
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1599
1379
|
AFIlluminator?: string;
|
|
1600
|
-
/**
|
|
1601
|
-
AFImageHeight?: number;
|
|
1602
|
-
/** ★★☆☆ ✔ Example: 8688 */
|
|
1603
|
-
AFImageWidth?: number;
|
|
1604
|
-
/** ☆☆☆☆ ✔ Example: "0400" */
|
|
1380
|
+
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
1605
1381
|
AFInfo2Version?: string;
|
|
1606
1382
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
1607
1383
|
AFIntegrationTime?: string;
|
|
@@ -1611,9 +1387,9 @@ export interface MakerNotesTags {
|
|
|
1611
1387
|
AFMicroAdjMode?: string;
|
|
1612
1388
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1613
1389
|
AFMicroAdjRegisteredLenses?: number;
|
|
1614
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1390
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1615
1391
|
AFMicroAdjValue?: number;
|
|
1616
|
-
/** ☆☆☆☆ ✔ Example: "Disable;
|
|
1392
|
+
/** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
|
|
1617
1393
|
AFMicroadjustment?: string;
|
|
1618
1394
|
/** ★☆☆☆ ✔ Example: "Zone" */
|
|
1619
1395
|
AFMode?: string;
|
|
@@ -1621,21 +1397,19 @@ export interface MakerNotesTags {
|
|
|
1621
1397
|
AFModeRestrictions?: string;
|
|
1622
1398
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
1623
1399
|
AFOnAELockButtonSwitch?: string;
|
|
1624
|
-
/** ☆☆☆☆ ✔ Example: "AF
|
|
1400
|
+
/** ☆☆☆☆ ✔ Example: "AF On" */
|
|
1625
1401
|
AFOnButton?: string;
|
|
1626
1402
|
/** ★★☆☆ ✔ Example: "Upper-right" */
|
|
1627
1403
|
AFPoint?: string;
|
|
1628
1404
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1629
1405
|
AFPointActivationArea?: string;
|
|
1630
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1406
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
1631
1407
|
AFPointAreaExpansion?: string;
|
|
1632
1408
|
/** ☆☆☆☆ ✔ Example: "Left (vertical)" */
|
|
1633
1409
|
AFPointAtShutterRelease?: string;
|
|
1634
|
-
/** ☆☆☆☆ ✔ Example: "Control-direct:disable/Main:enable" */
|
|
1635
|
-
AFPointAutoSelection?: string;
|
|
1636
1410
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
1637
1411
|
AFPointBrightness?: string;
|
|
1638
|
-
/** ☆☆☆☆ ✔ Example: "Selected (
|
|
1412
|
+
/** ☆☆☆☆ ✔ Example: "Selected (constant)" */
|
|
1639
1413
|
AFPointDisplayDuringFocus?: string;
|
|
1640
1414
|
/** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
|
|
1641
1415
|
AFPointIllumination?: string;
|
|
@@ -1659,7 +1433,7 @@ export interface MakerNotesTags {
|
|
|
1659
1433
|
AFPointSetting?: string;
|
|
1660
1434
|
/** ☆☆☆☆ ✔ Example: "9/Active AF point" */
|
|
1661
1435
|
AFPointSpotMetering?: string;
|
|
1662
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1436
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1663
1437
|
AFPointSwitching?: number;
|
|
1664
1438
|
/** ☆☆☆☆ Example: "Center" */
|
|
1665
1439
|
AFPoints?: string;
|
|
@@ -1675,31 +1449,27 @@ export interface MakerNotesTags {
|
|
|
1675
1449
|
AFPointsUsed?: string;
|
|
1676
1450
|
/** ☆☆☆☆ ✔ Example: 903 */
|
|
1677
1451
|
AFPredictor?: number;
|
|
1678
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1679
|
-
AFTracking?: string;
|
|
1680
|
-
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1452
|
+
/** ☆☆☆☆ ✔ Example: 127 */
|
|
1681
1453
|
AFTrackingSensitivity?: number;
|
|
1682
1454
|
/** ☆☆☆☆ ✔ Example: "79-point" */
|
|
1683
1455
|
AFType?: string;
|
|
1684
1456
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1685
1457
|
AFWithShutter?: string;
|
|
1686
|
-
/** ☆☆☆☆ ✔ Example: "Shooting not possible without focus" */
|
|
1687
|
-
AIServoContinuousShooting?: string;
|
|
1688
1458
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1689
1459
|
AIServoFirstImage?: string;
|
|
1690
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1460
|
+
/** ☆☆☆☆ ✔ Example: "Equal priority" */
|
|
1691
1461
|
AIServoFirstImagePriority?: string;
|
|
1692
|
-
/** ☆☆☆☆ ✔ Example: "1:
|
|
1462
|
+
/** ☆☆☆☆ ✔ Example: "1: AF, 2: Tracking" */
|
|
1693
1463
|
AIServoImagePriority?: string;
|
|
1694
1464
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1695
1465
|
AIServoSecondImage?: string;
|
|
1696
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1466
|
+
/** ☆☆☆☆ ✔ Example: "Equal priority" */
|
|
1697
1467
|
AIServoSecondImagePriority?: string;
|
|
1698
1468
|
/** ☆☆☆☆ ✔ Example: "Main focus point priority" */
|
|
1699
1469
|
AIServoTrackingMethod?: string;
|
|
1700
1470
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1701
1471
|
AIServoTrackingSensitivity?: string;
|
|
1702
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1472
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1703
1473
|
AccelerationTracking?: number;
|
|
1704
1474
|
/** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
|
|
1705
1475
|
AccelerationVector?: string;
|
|
@@ -1707,9 +1477,9 @@ export interface MakerNotesTags {
|
|
|
1707
1477
|
Accelerometer?: string;
|
|
1708
1478
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1709
1479
|
AccelerometerX?: number;
|
|
1710
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1480
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
1711
1481
|
AccelerometerY?: number;
|
|
1712
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1482
|
+
/** ☆☆☆☆ ✔ Example: 31 */
|
|
1713
1483
|
AccelerometerZ?: number;
|
|
1714
1484
|
/** ☆☆☆☆ ✔ Example: "00:00" */
|
|
1715
1485
|
AccessorySerialNumber?: string;
|
|
@@ -1731,8 +1501,10 @@ export interface MakerNotesTags {
|
|
|
1731
1501
|
AdvancedSceneType?: number;
|
|
1732
1502
|
/** ☆☆☆☆ ✔ Example: "91 m" */
|
|
1733
1503
|
Altitude?: string;
|
|
1734
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1504
|
+
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1735
1505
|
AmbienceSelection?: string;
|
|
1506
|
+
/** ☆☆☆☆ ✔ Example: "40 C" */
|
|
1507
|
+
AmbientTemperature?: string;
|
|
1736
1508
|
/** ☆☆☆☆ Example: "95 F" */
|
|
1737
1509
|
AmbientTemperatureFahrenheit?: string;
|
|
1738
1510
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1743,25 +1515,19 @@ export interface MakerNotesTags {
|
|
|
1743
1515
|
ApertureRingUse?: string;
|
|
1744
1516
|
/** ☆☆☆☆ ✔ Example: 9.1 */
|
|
1745
1517
|
ApertureSetting?: number;
|
|
1746
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1747
|
-
ApplySettingsToLiveView?: string;
|
|
1748
|
-
/** ☆☆☆☆ ✔ Example: "Enable; 1; 2; 1; 128; 48; 0; 1" */
|
|
1749
|
-
ApplyShootingMeteringMode?: string;
|
|
1750
1518
|
/** ☆☆☆☆ Example: 8 */
|
|
1751
1519
|
ApproximateFNumber?: number;
|
|
1752
1520
|
/** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
|
|
1753
1521
|
ArtFilter?: string;
|
|
1754
|
-
/** ☆☆☆☆ ✔ Example: "Off; 0; 0; Partial Color 0; No Effect; 0; No Color Filter; 0; 0;…" */
|
|
1755
|
-
ArtFilterEffect?: string;
|
|
1756
1522
|
/** ☆☆☆☆ Example: "Unknown (8305)" */
|
|
1757
1523
|
ArtMode?: string;
|
|
1758
1524
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1759
1525
|
ArtModeParameters?: string;
|
|
1760
|
-
/** ☆☆☆☆ ✔ Example: "0
|
|
1526
|
+
/** ☆☆☆☆ ✔ Example: "0 192 4607 3263" */
|
|
1761
1527
|
AspectFrame?: string;
|
|
1762
1528
|
/** ★☆☆☆ ✔ Example: "Unknown (942874672)" */
|
|
1763
1529
|
AspectRatio?: string;
|
|
1764
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1530
|
+
/** ☆☆☆☆ ✔ Example: "Auto Bracketing" */
|
|
1765
1531
|
AssignBktButton?: string;
|
|
1766
1532
|
/** ☆☆☆☆ ✔ Example: "LCD brightness" */
|
|
1767
1533
|
AssignFuncButton?: string;
|
|
@@ -1795,11 +1561,11 @@ export interface MakerNotesTags {
|
|
|
1795
1561
|
AutoAperture?: string;
|
|
1796
1562
|
/** ☆☆☆☆ Example: "None" */
|
|
1797
1563
|
AutoBracket?: string;
|
|
1798
|
-
/** ☆☆☆☆ ✔ Example: "Flash/Speed
|
|
1564
|
+
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1799
1565
|
AutoBracketModeM?: string;
|
|
1800
1566
|
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1801
1567
|
AutoBracketOrder?: string;
|
|
1802
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1568
|
+
/** ☆☆☆☆ ✔ Example: "Exposure" */
|
|
1803
1569
|
AutoBracketSet?: string;
|
|
1804
1570
|
/** ★☆☆☆ ✔ Example: "On" */
|
|
1805
1571
|
AutoBracketing?: string;
|
|
@@ -1813,17 +1579,15 @@ export interface MakerNotesTags {
|
|
|
1813
1579
|
AutoDynamicRange?: string;
|
|
1814
1580
|
/** ★★☆☆ ✔ Example: "On" */
|
|
1815
1581
|
AutoExposureBracketing?: string;
|
|
1816
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1582
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1817
1583
|
AutoFP?: string;
|
|
1818
1584
|
/** ☆☆☆☆ ✔ Example: "Subject and Background" */
|
|
1819
1585
|
AutoFlashISOSensitivity?: string;
|
|
1820
|
-
/** ☆☆☆☆ Example: "No Limit" */
|
|
1821
|
-
AutoFocusModeRestrictions?: string;
|
|
1822
1586
|
/** ★★☆☆ ✔ Example: 96 */
|
|
1823
1587
|
AutoISO?: number;
|
|
1824
|
-
/** ☆☆☆☆ ✔ Example: "1/
|
|
1588
|
+
/** ☆☆☆☆ ✔ Example: "1/30 s" */
|
|
1825
1589
|
AutoISOMinShutterSpeed?: string;
|
|
1826
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1590
|
+
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1827
1591
|
AutoLightingOptimizer?: string;
|
|
1828
1592
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1829
1593
|
AutoPortraitFramed?: string;
|
|
@@ -1839,8 +1603,6 @@ export interface MakerNotesTags {
|
|
|
1839
1603
|
AverageBlackLevel?: string;
|
|
1840
1604
|
/** ☆☆☆☆ ✔ Example: 9.875 */
|
|
1841
1605
|
AverageLV?: number;
|
|
1842
|
-
/** ☆☆☆☆ Example: 8 */
|
|
1843
|
-
BWFilter?: number;
|
|
1844
1606
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1845
1607
|
BWMode?: string;
|
|
1846
1608
|
/** ☆☆☆☆ ✔ Example: "99:99:99 00:00:00" */
|
|
@@ -1879,13 +1641,13 @@ export interface MakerNotesTags {
|
|
|
1879
1641
|
BestShotMode?: string;
|
|
1880
1642
|
/** ☆☆☆☆ ✔ Example: "128 128 128 128" */
|
|
1881
1643
|
BlackLevels?: string;
|
|
1882
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1644
|
+
/** ☆☆☆☆ ✔ Example: 2209 */
|
|
1883
1645
|
BlackMaskBottomBorder?: number;
|
|
1884
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1646
|
+
/** ☆☆☆☆ ✔ Example: 14 */
|
|
1885
1647
|
BlackMaskLeftBorder?: number;
|
|
1886
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1648
|
+
/** ☆☆☆☆ ✔ Example: 55 */
|
|
1887
1649
|
BlackMaskRightBorder?: number;
|
|
1888
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1650
|
+
/** ☆☆☆☆ ✔ Example: 162 */
|
|
1889
1651
|
BlackMaskTopBorder?: number;
|
|
1890
1652
|
/** ☆☆☆☆ ✔ Example: "7 104 106 6" */
|
|
1891
1653
|
BlackPoint?: string;
|
|
@@ -1911,8 +1673,6 @@ export interface MakerNotesTags {
|
|
|
1911
1673
|
BodyFirmwareVersion?: number;
|
|
1912
1674
|
/** ☆☆☆☆ Example: "SID:14101105 " */
|
|
1913
1675
|
BodySerialNumber?: string;
|
|
1914
|
-
/** ☆☆☆☆ Example: 1 */
|
|
1915
|
-
BracketIncrement?: number;
|
|
1916
1676
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1917
1677
|
BracketMode?: string;
|
|
1918
1678
|
/** ☆☆☆☆ ✔ Example: "Disabled" */
|
|
@@ -1921,18 +1681,14 @@ export interface MakerNotesTags {
|
|
|
1921
1681
|
BracketSequence?: string;
|
|
1922
1682
|
/** ☆☆☆☆ ✔ Example: "AE/Flash" */
|
|
1923
1683
|
BracketSet?: string;
|
|
1924
|
-
/** ☆☆☆☆ ✔ Example: "No Bracket" */
|
|
1925
|
-
BracketSettings?: string;
|
|
1926
1684
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1927
1685
|
BracketShotNumber?: number;
|
|
1928
1686
|
/** ☆☆☆☆ Example: "Unknown (429458713)" */
|
|
1929
1687
|
BracketStep?: string;
|
|
1930
1688
|
/** ☆☆☆☆ ✔ Example: 12 */
|
|
1931
1689
|
BracketValue?: number;
|
|
1932
|
-
/** ☆☆☆☆
|
|
1933
|
-
|
|
1934
|
-
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
1935
|
-
Brightness?: string;
|
|
1690
|
+
/** ☆☆☆☆ ✔ Example: 9.25 */
|
|
1691
|
+
Brightness?: number;
|
|
1936
1692
|
/** ☆☆☆☆ Example: "SU6-7" */
|
|
1937
1693
|
BuildNumber?: string;
|
|
1938
1694
|
/** ★★☆☆ ✔ Example: 0 */
|
|
@@ -1945,8 +1701,6 @@ export interface MakerNotesTags {
|
|
|
1945
1701
|
BurstSpeed?: number;
|
|
1946
1702
|
/** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
|
|
1947
1703
|
BurstUUID?: string;
|
|
1948
|
-
/** ☆☆☆☆ ✔ Example: "Normal (enable)" */
|
|
1949
|
-
ButtonFunctionControlOff?: string;
|
|
1950
1704
|
/** ☆☆☆☆ Example: 2 */
|
|
1951
1705
|
CCDBoardVersion?: number;
|
|
1952
1706
|
/** ☆☆☆☆ ✔ Example: "Interlaced" */
|
|
@@ -1959,20 +1713,6 @@ export interface MakerNotesTags {
|
|
|
1959
1713
|
CHModeShootingSpeed?: string;
|
|
1960
1714
|
/** ☆☆☆☆ ✔ Example: "6 fps" */
|
|
1961
1715
|
CLModeShootingSpeed?: string;
|
|
1962
|
-
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1963
|
-
CMContrast?: string;
|
|
1964
|
-
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1965
|
-
CMHue?: string;
|
|
1966
|
-
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1967
|
-
CMSaturation?: string;
|
|
1968
|
-
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1969
|
-
CMSharpness?: string;
|
|
1970
|
-
/** ☆☆☆☆ Example: 0 */
|
|
1971
|
-
CMWhiteBalance?: number;
|
|
1972
|
-
/** ☆☆☆☆ Example: 0 */
|
|
1973
|
-
CMWhiteBalanceComp?: number;
|
|
1974
|
-
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1975
|
-
CMWhiteBalanceGrayPoint?: string;
|
|
1976
1716
|
/** ☆☆☆☆ ✔ Example: "1.02.00.06" */
|
|
1977
1717
|
CPUFirmwareVersion?: string;
|
|
1978
1718
|
/** ☆☆☆☆ Example: "d, 2009:09:04 03:19:07" */
|
|
@@ -1985,10 +1725,8 @@ export interface MakerNotesTags {
|
|
|
1985
1725
|
CameraID?: string;
|
|
1986
1726
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1987
1727
|
CameraISO?: string;
|
|
1988
|
-
/**
|
|
1728
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (155)" */
|
|
1989
1729
|
CameraOrientation?: string;
|
|
1990
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 8964 bytes, use -b option to extract)" */
|
|
1991
|
-
CameraParameters?: string;
|
|
1992
1730
|
/** ☆☆☆☆ ✔ Example: "User Defined 3" */
|
|
1993
1731
|
CameraPictureStyle?: string;
|
|
1994
1732
|
/** ☆☆☆☆ Example: -90 */
|
|
@@ -2009,14 +1747,10 @@ export interface MakerNotesTags {
|
|
|
2009
1747
|
CanonFirmwareVersion?: string;
|
|
2010
1748
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
2011
1749
|
CanonFlashMode?: string;
|
|
2012
|
-
/** ★★☆☆ ✔ Example: 768 */
|
|
2013
|
-
CanonImageHeight?: number;
|
|
2014
1750
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
2015
1751
|
CanonImageSize?: string;
|
|
2016
1752
|
/** ★★☆☆ ✔ Example: "PIC:DC50 JPEG" */
|
|
2017
1753
|
CanonImageType?: string;
|
|
2018
|
-
/** ★★☆☆ ✔ Example: 8688 */
|
|
2019
|
-
CanonImageWidth?: number;
|
|
2020
1754
|
/** ★★☆☆ ✔ Example: "XH A1S" */
|
|
2021
1755
|
CanonModelID?: string;
|
|
2022
1756
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2027,16 +1761,12 @@ export interface MakerNotesTags {
|
|
|
2027
1761
|
CenterAFArea?: string;
|
|
2028
1762
|
/** ☆☆☆☆ ✔ Example: "Normal Zone" */
|
|
2029
1763
|
CenterFocusPoint?: string;
|
|
2030
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1764
|
+
/** ☆☆☆☆ ✔ Example: "8 mm" */
|
|
2031
1765
|
CenterWeightedAreaSize?: string;
|
|
2032
1766
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2033
|
-
ChromaticAberrationCorr?: string;
|
|
2034
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2035
1767
|
ChromaticAberrationSetting?: string;
|
|
2036
1768
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
2037
1769
|
ChrominanceNoiseReduction?: string;
|
|
2038
|
-
/** ☆☆☆☆ ✔ Example: "San Francisco" */
|
|
2039
|
-
City2?: string;
|
|
2040
1770
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
2041
1771
|
Clarity?: number;
|
|
2042
1772
|
/** ☆☆☆☆ Example: "Off" */
|
|
@@ -2049,9 +1779,7 @@ export interface MakerNotesTags {
|
|
|
2049
1779
|
CmdDialsChangeMainSub?: string;
|
|
2050
1780
|
/** ☆☆☆☆ ✔ Example: "On (Image Review Excluded)" */
|
|
2051
1781
|
CmdDialsMenuAndPlayback?: string;
|
|
2052
|
-
/** ☆☆☆☆
|
|
2053
|
-
CmdDialsReverseRotExposureComp?: number;
|
|
2054
|
-
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1782
|
+
/** ☆☆☆☆ ✔ Example: "Exposure Compensation" */
|
|
2055
1783
|
CmdDialsReverseRotation?: string;
|
|
2056
1784
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
2057
1785
|
ColorAdjustment?: string;
|
|
@@ -2059,8 +1787,6 @@ export interface MakerNotesTags {
|
|
|
2059
1787
|
ColorAdjustmentMode?: string;
|
|
2060
1788
|
/** ☆☆☆☆ ✔ Example: 257 */
|
|
2061
1789
|
ColorBW?: number;
|
|
2062
|
-
/** ☆☆☆☆ Example: "On" */
|
|
2063
|
-
ColorBalanceAdj?: string;
|
|
2064
1790
|
/** ☆☆☆☆ Example: 256 */
|
|
2065
1791
|
ColorBalanceBlue?: number;
|
|
2066
1792
|
/** ☆☆☆☆ Example: 65792 */
|
|
@@ -2081,7 +1807,7 @@ export interface MakerNotesTags {
|
|
|
2081
1807
|
ColorCompensationFilterCustom?: number;
|
|
2082
1808
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2083
1809
|
ColorCompensationFilterSet?: number;
|
|
2084
|
-
/** ☆☆☆☆ ✔ Example: "96 4096
|
|
1810
|
+
/** ☆☆☆☆ ✔ Example: "96 4096 2944 4096 16 128" */
|
|
2085
1811
|
ColorControl?: string;
|
|
2086
1812
|
/** ☆☆☆☆ ✔ Example: "Color 0; 0; 29; Strength 0; -4; 3" */
|
|
2087
1813
|
ColorCreatorEffect?: string;
|
|
@@ -2105,31 +1831,33 @@ export interface MakerNotesTags {
|
|
|
2105
1831
|
ColorMatrixNumber?: number;
|
|
2106
1832
|
/** ☆☆☆☆ ✔ Example: "Min -5; Max 5; Yellow 0; Orange 0; Orange-red 0; Red 0; Magenta …" */
|
|
2107
1833
|
ColorProfileSettings?: string;
|
|
2108
|
-
/**
|
|
1834
|
+
/** ★☆☆☆ ✔ Example: "sRGB" */
|
|
1835
|
+
ColorSpace?: string;
|
|
1836
|
+
/** ☆☆☆☆ ✔ Example: 8059 */
|
|
2109
1837
|
ColorTempAsShot?: number;
|
|
2110
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1838
|
+
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
2111
1839
|
ColorTempAuto?: number;
|
|
2112
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1840
|
+
/** ☆☆☆☆ ✔ Example: 6733 */
|
|
2113
1841
|
ColorTempCloudy?: number;
|
|
2114
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1842
|
+
/** ☆☆☆☆ ✔ Example: 5210 */
|
|
2115
1843
|
ColorTempCustom?: number;
|
|
2116
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1844
|
+
/** ☆☆☆☆ ✔ Example: 5820 */
|
|
2117
1845
|
ColorTempDaylight?: number;
|
|
2118
1846
|
/** ☆☆☆☆ ✔ Example: 9826 */
|
|
2119
1847
|
ColorTempFlash?: number;
|
|
2120
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1848
|
+
/** ☆☆☆☆ ✔ Example: 4452 */
|
|
2121
1849
|
ColorTempFluorescent?: number;
|
|
2122
|
-
/**
|
|
1850
|
+
/** ☆☆☆☆ ✔ Example: 8001 */
|
|
2123
1851
|
ColorTempKelvin?: number;
|
|
2124
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1852
|
+
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
2125
1853
|
ColorTempMeasured?: number;
|
|
2126
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1854
|
+
/** ☆☆☆☆ ✔ Example: 7563 */
|
|
2127
1855
|
ColorTempShade?: number;
|
|
2128
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1856
|
+
/** ☆☆☆☆ ✔ Example: 3205 */
|
|
2129
1857
|
ColorTempTungsten?: number;
|
|
2130
1858
|
/** ★☆☆☆ ✔ Example: 9900 */
|
|
2131
1859
|
ColorTemperature?: number;
|
|
2132
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1860
|
+
/** ☆☆☆☆ ✔ Example: 6030 */
|
|
2133
1861
|
ColorTemperatureAuto?: number;
|
|
2134
1862
|
/** ☆☆☆☆ ✔ Example: "6300 K" */
|
|
2135
1863
|
ColorTemperatureCustom?: string;
|
|
@@ -2137,31 +1865,21 @@ export interface MakerNotesTags {
|
|
|
2137
1865
|
ColorTemperatureSet?: string;
|
|
2138
1866
|
/** ☆☆☆☆ ✔ Example: "Temperature" */
|
|
2139
1867
|
ColorTemperatureSetting?: string;
|
|
2140
|
-
/** ☆☆☆☆ Example:
|
|
1868
|
+
/** ☆☆☆☆ Example: 5 */
|
|
2141
1869
|
ColorTint?: number;
|
|
2142
1870
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2143
1871
|
ColorTone?: string;
|
|
2144
1872
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2145
1873
|
ColorToneAuto?: number;
|
|
2146
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2147
|
-
ColorToneFaithful?: number;
|
|
2148
|
-
/** ☆☆☆☆ ✔ Example: 11 */
|
|
2149
|
-
ColorToneLandscape?: number;
|
|
2150
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2151
|
-
ColorToneNeutral?: number;
|
|
2152
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2153
|
-
ColorTonePortrait?: number;
|
|
2154
|
-
/** ☆☆☆☆ ✔ Example: 15663191 */
|
|
2155
|
-
ColorToneStandard?: number;
|
|
2156
1874
|
/** ☆☆☆☆ ✔ Example: "Standard (Main Shutter, Sub Aperture)" */
|
|
2157
1875
|
CommandDials?: string;
|
|
2158
1876
|
/** ☆☆☆☆ ✔ Example: "Sub-command Dial" */
|
|
2159
1877
|
CommandDialsApertureSetting?: string;
|
|
2160
1878
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2161
1879
|
CommandDialsChangeMainSub?: string;
|
|
2162
|
-
/** ☆☆☆☆ ✔ Example: "On
|
|
1880
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2163
1881
|
CommandDialsMenuAndPlayback?: string;
|
|
2164
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1882
|
+
/** ☆☆☆☆ ✔ Example: "No" */
|
|
2165
1883
|
CommandDialsReverseRotation?: string;
|
|
2166
1884
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
2167
1885
|
CommanderChannel?: number;
|
|
@@ -2203,8 +1921,6 @@ export interface MakerNotesTags {
|
|
|
2203
1921
|
CompressionFactor?: number;
|
|
2204
1922
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
2205
1923
|
CompressionRatio?: number;
|
|
2206
|
-
/** ☆☆☆☆ Example: "CanonCR3_001/01.09.00/00.00.00" */
|
|
2207
|
-
CompressorVersion?: string;
|
|
2208
1924
|
/** ☆☆☆☆ ✔ Example: "Low" */
|
|
2209
1925
|
ContinuousBracketing?: string;
|
|
2210
1926
|
/** ★★☆☆ ✔ Example: "Unknown (11)" */
|
|
@@ -2213,13 +1929,13 @@ export interface MakerNotesTags {
|
|
|
2213
1929
|
ContinuousModeDisplay?: string;
|
|
2214
1930
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2215
1931
|
ContinuousModeLiveView?: string;
|
|
2216
|
-
/** ☆☆☆☆ ✔ Example: "Hi
|
|
1932
|
+
/** ☆☆☆☆ ✔ Example: "Hi 0; Cont 14; Lo 3; Soft 5; Soft LS 3" */
|
|
2217
1933
|
ContinuousShootingSpeed?: string;
|
|
2218
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1934
|
+
/** ☆☆☆☆ ✔ Example: "Disable; 99 shots" */
|
|
2219
1935
|
ContinuousShotLimit?: string;
|
|
2220
1936
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2221
1937
|
ContrastAuto?: number;
|
|
2222
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
1938
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 578 bytes, use -b option to extract)" */
|
|
2223
1939
|
ContrastCurve?: string;
|
|
2224
1940
|
/** ☆☆☆☆ ✔ Example: "On (2)" */
|
|
2225
1941
|
ContrastDetectAF?: string;
|
|
@@ -2227,34 +1943,20 @@ export interface MakerNotesTags {
|
|
|
2227
1943
|
ContrastDetectAFArea?: string;
|
|
2228
1944
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2229
1945
|
ContrastDetectAFInFocus?: string;
|
|
2230
|
-
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2231
|
-
ContrastFaithful?: number;
|
|
2232
1946
|
/** ☆☆☆☆ Example: 0 */
|
|
2233
1947
|
ContrastHighlight?: number;
|
|
2234
1948
|
/** ☆☆☆☆ Example: "Off" */
|
|
2235
1949
|
ContrastHighlightShadowAdj?: string;
|
|
2236
|
-
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2237
|
-
ContrastLandscape?: number;
|
|
2238
1950
|
/** ☆☆☆☆ ✔ Example: "Unknown (19)" */
|
|
2239
1951
|
ContrastMode?: string;
|
|
2240
|
-
/** ☆☆☆☆ ✔ Example: 524288 */
|
|
2241
|
-
ContrastMonochrome?: number;
|
|
2242
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2243
|
-
ContrastNeutral?: number;
|
|
2244
|
-
/** ☆☆☆☆ ✔ Example: 9699328 */
|
|
2245
|
-
ContrastPortrait?: number;
|
|
2246
1952
|
/** ☆☆☆☆ ✔ Example: "1 (min -5, max 5)" */
|
|
2247
1953
|
ContrastSetting?: string;
|
|
2248
1954
|
/** ☆☆☆☆ Example: 0 */
|
|
2249
1955
|
ContrastShadow?: number;
|
|
2250
|
-
/** ☆☆☆☆ ✔ Example: 2 */
|
|
2251
|
-
ContrastStandard?: number;
|
|
2252
1956
|
/** ☆☆☆☆ ✔ Example: "Shutter Speed" */
|
|
2253
1957
|
ControlDialSet?: string;
|
|
2254
1958
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
2255
1959
|
ControlMode?: string;
|
|
2256
|
-
/** ☆☆☆☆ Example: "High" */
|
|
2257
|
-
ControlRingResponse?: string;
|
|
2258
1960
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2259
1961
|
ControlRingRotation?: string;
|
|
2260
1962
|
/** ☆☆☆☆ Example: 0 */
|
|
@@ -2263,10 +1965,6 @@ export interface MakerNotesTags {
|
|
|
2263
1965
|
ConversionLens?: string;
|
|
2264
1966
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2265
1967
|
Converter?: number;
|
|
2266
|
-
/** ☆☆☆☆ ✔ Example: 8704 */
|
|
2267
|
-
CoringFilter?: number;
|
|
2268
|
-
/** ☆☆☆☆ Example: "4352 4352 4352 4352 4352 4352 4352 4352 4352 4352 4352" */
|
|
2269
|
-
CoringValues?: string;
|
|
2270
1968
|
/** ☆☆☆☆ Example: 6807 */
|
|
2271
1969
|
CorrelatedColorTemp?: number;
|
|
2272
1970
|
/** ☆☆☆☆ ✔ Example: "United States" */
|
|
@@ -2277,38 +1975,36 @@ export interface MakerNotesTags {
|
|
|
2277
1975
|
CreativeStyle?: string;
|
|
2278
1976
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2279
1977
|
CreativeStyleSetting?: string;
|
|
2280
|
-
/** ☆☆☆☆
|
|
2281
|
-
CropArea?: string;
|
|
2282
|
-
/** ☆☆☆☆ ✔ Example: 8 */
|
|
1978
|
+
/** ☆☆☆☆ ✔ Example: 48 */
|
|
2283
1979
|
CropBottomMargin?: number;
|
|
2284
1980
|
/** ☆☆☆☆ ✔ Example: 7776 */
|
|
2285
1981
|
CropHeight?: number;
|
|
2286
1982
|
/** ☆☆☆☆ ✔ Example: "Off (7424x4924 cropped to 7424x4924 at pixel 0,0)" */
|
|
2287
1983
|
CropHiSpeed?: string;
|
|
1984
|
+
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
1985
|
+
CropLeft?: string;
|
|
2288
1986
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2289
1987
|
CropLeftMargin?: number;
|
|
2290
1988
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2291
1989
|
CropMode?: string;
|
|
2292
1990
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2293
1991
|
CropRightMargin?: number;
|
|
1992
|
+
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
1993
|
+
CropTop?: string;
|
|
2294
1994
|
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2295
1995
|
CropTopMargin?: number;
|
|
2296
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1996
|
+
/** ☆☆☆☆ ✔ Example: 5184 */
|
|
2297
1997
|
CropWidth?: number;
|
|
2298
|
-
/**
|
|
1998
|
+
/** ☆☆☆☆ ✔ Example: 5792 */
|
|
2299
1999
|
CroppedImageHeight?: number;
|
|
2300
|
-
/**
|
|
2000
|
+
/** ☆☆☆☆ ✔ Example: 3153968 */
|
|
2301
2001
|
CroppedImageLeft?: number;
|
|
2302
|
-
/**
|
|
2002
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2303
2003
|
CroppedImageTop?: number;
|
|
2304
|
-
/**
|
|
2004
|
+
/** ☆☆☆☆ ✔ Example: 8688 */
|
|
2305
2005
|
CroppedImageWidth?: number;
|
|
2306
2006
|
/** ☆☆☆☆ Example: "Off" */
|
|
2307
2007
|
CrossProcess?: string;
|
|
2308
|
-
/** ☆☆☆☆ Example: "On" */
|
|
2309
|
-
Curves?: string;
|
|
2310
|
-
/** ☆☆☆☆ ✔ Example: "20 0 19 2 0 65535 65535 65535 2 2 0 65535 65535 65535 18 2 4 2 8…" */
|
|
2311
|
-
CustomControls?: string;
|
|
2312
2008
|
/** ☆☆☆☆ ✔ Example: "P-STUDIO" */
|
|
2313
2009
|
CustomPictureStyleFileName?: string;
|
|
2314
2010
|
/** ☆☆☆☆ ✔ Example: "CS3 (min CS0, max CS4)" */
|
|
@@ -2327,17 +2023,15 @@ export interface MakerNotesTags {
|
|
|
2327
2023
|
CustomWBRedLevel?: number;
|
|
2328
2024
|
/** ☆☆☆☆ ✔ Example: "Setup" */
|
|
2329
2025
|
CustomWBSetting?: string;
|
|
2330
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2026
|
+
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0 0 0 0 …" */
|
|
2331
2027
|
CustomizeDials?: string;
|
|
2332
2028
|
/** ☆☆☆☆ Example: "Unknown (27471)" */
|
|
2333
2029
|
DECPosition?: string;
|
|
2334
2030
|
/** ☆☆☆☆ ✔ Example: "10.01.00.00" */
|
|
2335
2031
|
DSPFirmwareVersion?: string;
|
|
2336
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
2337
|
-
DXCropAlert?: string;
|
|
2338
2032
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2339
2033
|
DarkFocusEnvironment?: string;
|
|
2340
|
-
/**
|
|
2034
|
+
/** ★★☆☆ ✔ Example: "(Binary data 8918 bytes, use -b option to extract)" */
|
|
2341
2035
|
DataDump?: string;
|
|
2342
2036
|
/** ☆☆☆☆ ✔ Example: 8289 */
|
|
2343
2037
|
DataScaling?: number;
|
|
@@ -2351,13 +2045,13 @@ export interface MakerNotesTags {
|
|
|
2351
2045
|
DateStampMode?: string;
|
|
2352
2046
|
/** ☆☆☆☆ Example: "Off" */
|
|
2353
2047
|
DateTimeStamp?: string;
|
|
2354
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2048
|
+
/** ☆☆☆☆ ✔ Example: "0000:00:00 00:00:00" */
|
|
2355
2049
|
DateTimeUTC?: ExifDateTime | string;
|
|
2356
|
-
/**
|
|
2050
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2357
2051
|
DaylightSavings?: string;
|
|
2358
2052
|
/** ☆☆☆☆ ✔ Example: "Erase selected" */
|
|
2359
2053
|
DefaultEraseOption?: string;
|
|
2360
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2054
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
2361
2055
|
DeletedImageCount?: number;
|
|
2362
2056
|
/** ☆☆☆☆ ✔ Example: "Warsaw" */
|
|
2363
2057
|
DestinationCity?: string;
|
|
@@ -2365,14 +2059,10 @@ export interface MakerNotesTags {
|
|
|
2365
2059
|
DestinationCityCode?: string;
|
|
2366
2060
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2367
2061
|
DestinationDST?: string;
|
|
2368
|
-
/** ☆☆☆☆ ✔ Example: 400 */
|
|
2369
|
-
DevelopmentDynamicRange?: number;
|
|
2370
2062
|
/** ☆☆☆☆ ✔ Example: "SMX Video Camera" */
|
|
2371
2063
|
DeviceType?: string;
|
|
2372
2064
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2373
2065
|
DialDirectionTvAv?: string;
|
|
2374
|
-
/** ☆☆☆☆ Example: "Unknown (49)" */
|
|
2375
|
-
DiffractionCompensation?: string;
|
|
2376
2066
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2377
2067
|
DiffractionCorrection?: string;
|
|
2378
2068
|
/** ☆☆☆☆ Example: "Vivid" */
|
|
@@ -2383,10 +2073,6 @@ export interface MakerNotesTags {
|
|
|
2383
2073
|
DigitalICE?: string;
|
|
2384
2074
|
/** ☆☆☆☆ Example: "On" */
|
|
2385
2075
|
DigitalZoomOn?: string;
|
|
2386
|
-
/** ☆☆☆☆ ✔ Example: 897 */
|
|
2387
|
-
DirectoryIndex?: number;
|
|
2388
|
-
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2389
|
-
DirectoryNumber?: number;
|
|
2390
2076
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2391
2077
|
DisplayAllAFPoints?: string;
|
|
2392
2078
|
/** ☆☆☆☆ ✔ Example: 9.5 */
|
|
@@ -2399,8 +2085,6 @@ export interface MakerNotesTags {
|
|
|
2399
2085
|
DistortionCorrParamsPresent?: string;
|
|
2400
2086
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2401
2087
|
DistortionCorrectionSetting?: string;
|
|
2402
|
-
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2403
|
-
DistortionCorrectionValue?: number;
|
|
2404
2088
|
/** ☆☆☆☆ ✔ Example: "Single Frame" */
|
|
2405
2089
|
DriveModeSetting?: string;
|
|
2406
2090
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2427,7 +2111,7 @@ export interface MakerNotesTags {
|
|
|
2427
2111
|
DynamicRangeOptimizerMode?: string;
|
|
2428
2112
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2429
2113
|
DynamicRangeOptimizerSetting?: string;
|
|
2430
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2114
|
+
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2431
2115
|
DynamicRangeSetting?: string;
|
|
2432
2116
|
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
2433
2117
|
ETTLII?: string;
|
|
@@ -2437,17 +2121,17 @@ export interface MakerNotesTags {
|
|
|
2437
2121
|
EVSteps?: string;
|
|
2438
2122
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2439
2123
|
EXRAuto?: string;
|
|
2440
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2124
|
+
/** ☆☆☆☆ ✔ Example: "HR (High Resolution)" */
|
|
2441
2125
|
EXRMode?: string;
|
|
2442
2126
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2443
2127
|
EasyExposureComp?: string;
|
|
2444
|
-
/** ☆☆☆☆ ✔ Example: "On
|
|
2128
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2445
2129
|
EasyExposureCompensation?: string;
|
|
2446
2130
|
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
2447
2131
|
EasyMode?: string;
|
|
2448
2132
|
/** ☆☆☆☆ ✔ Example: 9.8 */
|
|
2449
2133
|
EffectiveLV?: number;
|
|
2450
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2134
|
+
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
2451
2135
|
EffectiveMaxAperture?: number;
|
|
2452
2136
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2453
2137
|
ElectronicFrontCurtainShutter?: string;
|
|
@@ -2457,8 +2141,6 @@ export interface MakerNotesTags {
|
|
|
2457
2141
|
Enhancement?: string;
|
|
2458
2142
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
2459
2143
|
Enhancer?: number;
|
|
2460
|
-
/** ☆☆☆☆ Example: "576 768 960 1120 1440 0 0" */
|
|
2461
|
-
EnhancerValues?: string;
|
|
2462
2144
|
/** ☆☆☆☆ Example: 480 */
|
|
2463
2145
|
EpsonImageHeight?: number;
|
|
2464
2146
|
/** ☆☆☆☆ ✔ Example: 640 */
|
|
@@ -2505,28 +2187,18 @@ export interface MakerNotesTags {
|
|
|
2505
2187
|
ExposureLevelIncrements?: string;
|
|
2506
2188
|
/** ☆☆☆☆ ✔ Example: "Spot metering" */
|
|
2507
2189
|
ExposureModeInManual?: string;
|
|
2508
|
-
/** ☆☆☆☆ ✔ Example: 0.66 */
|
|
2509
|
-
ExposureShift?: number;
|
|
2510
2190
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2511
2191
|
ExposureStandardAdjustment?: number;
|
|
2512
2192
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2513
2193
|
ExposureTuning?: number;
|
|
2514
2194
|
/** ★☆☆☆ ✔ Example: "Good" */
|
|
2515
2195
|
ExposureWarning?: string;
|
|
2516
|
-
/** ☆☆☆☆
|
|
2517
|
-
ExtendedMenuBanks?: string;
|
|
2518
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2196
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2519
2197
|
ExtendedShutterSpeeds?: string;
|
|
2520
2198
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2521
2199
|
ExtendedWBDetect?: string;
|
|
2522
|
-
/** ☆☆☆☆
|
|
2523
|
-
|
|
2524
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2525
|
-
ExtenderFirmwareVersion?: number;
|
|
2526
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
2527
|
-
ExtenderModel?: string;
|
|
2528
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
2529
|
-
ExtenderSerialNumber?: string;
|
|
2200
|
+
/** ☆☆☆☆ Example: "Not attached" */
|
|
2201
|
+
ExtenderStatus?: string;
|
|
2530
2202
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2531
2203
|
ExternalFlash?: string;
|
|
2532
2204
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2537,7 +2209,7 @@ export interface MakerNotesTags {
|
|
|
2537
2209
|
ExternalFlashExposureComp?: number;
|
|
2538
2210
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2539
2211
|
ExternalFlashFirmware?: string;
|
|
2540
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2212
|
+
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
2541
2213
|
ExternalFlashFlags?: string;
|
|
2542
2214
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2543
2215
|
ExternalFlashGValue?: number;
|
|
@@ -2553,8 +2225,6 @@ export interface MakerNotesTags {
|
|
|
2553
2225
|
ExternalFlashZoom?: number;
|
|
2554
2226
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
2555
2227
|
ExternalFlashZoomOverride?: string;
|
|
2556
|
-
/** ☆☆☆☆ Example: 9.14 */
|
|
2557
|
-
ExternalSensorBrightnessValue?: number;
|
|
2558
2228
|
/** ☆☆☆☆ ✔ Example: "0.1.0.1" */
|
|
2559
2229
|
ExtraInfoVersion?: string;
|
|
2560
2230
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2587,18 +2257,18 @@ export interface MakerNotesTags {
|
|
|
2587
2257
|
FacePosition?: string;
|
|
2588
2258
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
2589
2259
|
FacePositions?: string;
|
|
2590
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2591
|
-
FaceRecognition?: string;
|
|
2592
2260
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2593
2261
|
FaceWidth?: number;
|
|
2262
|
+
/** ★★★☆ ✔ Example: 65535 */
|
|
2263
|
+
FacesDetected?: number;
|
|
2594
2264
|
/** ☆☆☆☆ ✔ Example: 12336 */
|
|
2595
2265
|
FacesRecognized?: number;
|
|
2596
2266
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2597
2267
|
Fade?: number;
|
|
2598
2268
|
/** ☆☆☆☆ ✔ Example: 9984 */
|
|
2599
2269
|
FileIndex?: number;
|
|
2600
|
-
/**
|
|
2601
|
-
|
|
2270
|
+
/** ★★☆☆ ✔ Example: "986-8698" */
|
|
2271
|
+
FileNumber?: string;
|
|
2602
2272
|
/** ☆☆☆☆ Example: "Unknown (65537)" */
|
|
2603
2273
|
FileNumberMemory?: string;
|
|
2604
2274
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2609,14 +2279,12 @@ export interface MakerNotesTags {
|
|
|
2609
2279
|
FilmGrainEffect?: string;
|
|
2610
2280
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2611
2281
|
FilmMode?: string;
|
|
2612
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2282
|
+
/** ☆☆☆☆ ✔ Example: "NEGATIVE(MONO) " */
|
|
2613
2283
|
FilmType?: string;
|
|
2614
2284
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2615
2285
|
FilterEffect?: string;
|
|
2616
2286
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2617
2287
|
FilterEffectAuto?: string;
|
|
2618
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
|
|
2619
|
-
FilterEffectMonochrome?: string;
|
|
2620
2288
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2621
2289
|
FinderDisplayDuringExposure?: string;
|
|
2622
2290
|
/** ☆☆☆☆ ✔ Example: "On; Normal" */
|
|
@@ -2629,21 +2297,17 @@ export interface MakerNotesTags {
|
|
|
2629
2297
|
FineTuneOptMatrixMetering?: number;
|
|
2630
2298
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2631
2299
|
FineTuneOptSpotMetering?: number;
|
|
2632
|
-
/** ☆☆☆☆ ✔ Example: "u77" */
|
|
2633
|
-
Firmware?: string;
|
|
2634
2300
|
/** ☆☆☆☆ Example: "2015:11:09 08:38" */
|
|
2635
2301
|
FirmwareDate?: string;
|
|
2636
2302
|
/** ☆☆☆☆ ✔ Example: "NX1_000000" */
|
|
2637
2303
|
FirmwareName?: string;
|
|
2638
2304
|
/** ★☆☆☆ ✔ Example: "Rev01500000" */
|
|
2639
2305
|
FirmwareRevision?: string;
|
|
2640
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2641
|
-
FisheyeFilter?: string;
|
|
2642
2306
|
/** ☆☆☆☆ ✔ Example: "Fired" */
|
|
2643
2307
|
FlashAction?: string;
|
|
2644
2308
|
/** ☆☆☆☆ ✔ Example: "Did not fire" */
|
|
2645
2309
|
FlashActionExternal?: string;
|
|
2646
|
-
/**
|
|
2310
|
+
/** ☆☆☆☆ ✔ Example: 255 */
|
|
2647
2311
|
FlashActivity?: number;
|
|
2648
2312
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2649
2313
|
FlashBatteryLevel?: string;
|
|
@@ -2651,8 +2315,6 @@ export interface MakerNotesTags {
|
|
|
2651
2315
|
FlashBias?: number;
|
|
2652
2316
|
/** ★★☆☆ ✔ Example: "Manual, External" */
|
|
2653
2317
|
FlashBits?: string;
|
|
2654
|
-
/** ☆☆☆☆ Example: "Exposure" */
|
|
2655
|
-
FlashBurstPriority?: string;
|
|
2656
2318
|
/** ☆☆☆☆ ✔ Example: "Raise built-in flash" */
|
|
2657
2319
|
FlashButtonFunction?: string;
|
|
2658
2320
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2677,7 +2339,7 @@ export interface MakerNotesTags {
|
|
|
2677
2339
|
FlashDistance?: number;
|
|
2678
2340
|
/** ☆☆☆☆ ✔ Example: 0.3 */
|
|
2679
2341
|
FlashExposureBracketValue?: number;
|
|
2680
|
-
/** ★★★☆ ✔ Example:
|
|
2342
|
+
/** ★★★☆ ✔ Example: 10 */
|
|
2681
2343
|
FlashExposureComp?: number;
|
|
2682
2344
|
/** ☆☆☆☆ ✔ Example: "Entire frame" */
|
|
2683
2345
|
FlashExposureCompArea?: string;
|
|
@@ -2691,11 +2353,13 @@ export interface MakerNotesTags {
|
|
|
2691
2353
|
FlashExposureIndicatorNext?: string;
|
|
2692
2354
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2693
2355
|
FlashExposureLock?: string;
|
|
2356
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2357
|
+
FlashFired?: string;
|
|
2694
2358
|
/** ☆☆☆☆ ✔ Example: "Fires" */
|
|
2695
2359
|
FlashFiring?: string;
|
|
2696
2360
|
/** ☆☆☆☆ ✔ Example: 1.005 */
|
|
2697
2361
|
FlashFirmwareVersion?: number;
|
|
2698
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2362
|
+
/** ☆☆☆☆ ✔ Example: "12 mm" */
|
|
2699
2363
|
FlashFocalLength?: string;
|
|
2700
2364
|
/** ☆☆☆☆ ✔ Example: "No flash" */
|
|
2701
2365
|
FlashFunction?: string;
|
|
@@ -2713,16 +2377,12 @@ export interface MakerNotesTags {
|
|
|
2713
2377
|
FlashGroupCCompensation?: number;
|
|
2714
2378
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2715
2379
|
FlashGroupCControlMode?: string;
|
|
2716
|
-
/**
|
|
2717
|
-
FlashGuideNumber?: number;
|
|
2718
|
-
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
2380
|
+
/** ☆☆☆☆ ✔ Example: "0300" */
|
|
2719
2381
|
FlashInfoVersion?: string;
|
|
2720
2382
|
/** ☆☆☆☆ ✔ Example: "n/a (x4)" */
|
|
2721
2383
|
FlashIntensity?: string;
|
|
2722
2384
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2723
2385
|
FlashLevel?: string;
|
|
2724
|
-
/** ☆☆☆☆ Example: "Unknown (243)" */
|
|
2725
|
-
FlashMasterControlMode?: string;
|
|
2726
2386
|
/** ☆☆☆☆ ✔ Example: "Unknown (65797)" */
|
|
2727
2387
|
FlashMetering?: string;
|
|
2728
2388
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -2743,7 +2403,7 @@ export interface MakerNotesTags {
|
|
|
2743
2403
|
FlashSerialNumber?: string;
|
|
2744
2404
|
/** ★☆☆☆ ✔ Example: "Uw-Normal" */
|
|
2745
2405
|
FlashSetting?: string;
|
|
2746
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2406
|
+
/** ☆☆☆☆ ✔ Example: "1/64" */
|
|
2747
2407
|
FlashShutterSpeed?: string;
|
|
2748
2408
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2749
2409
|
FlashSource?: string;
|
|
@@ -2753,7 +2413,7 @@ export interface MakerNotesTags {
|
|
|
2753
2413
|
FlashStatusExternal?: string;
|
|
2754
2414
|
/** ☆☆☆☆ Example: "Front curtain" */
|
|
2755
2415
|
FlashSyncMode?: string;
|
|
2756
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2416
|
+
/** ☆☆☆☆ ✔ Example: "1/250 s (auto FP)" */
|
|
2757
2417
|
FlashSyncSpeed?: string;
|
|
2758
2418
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2759
2419
|
FlashSyncSpeedAv?: string;
|
|
@@ -2763,18 +2423,12 @@ export interface MakerNotesTags {
|
|
|
2763
2423
|
FlashWarning?: string;
|
|
2764
2424
|
/** ☆☆☆☆ ✔ Example: "320 262" */
|
|
2765
2425
|
FlexibleSpotPosition?: string;
|
|
2766
|
-
/** ☆☆☆☆ ✔ Example: "Right to Left" */
|
|
2767
|
-
FlickAdvanceDirection?: string;
|
|
2768
2426
|
/** ☆☆☆☆ Example: "On" */
|
|
2769
2427
|
FlickerReduce?: string;
|
|
2770
2428
|
/** ☆☆☆☆ ✔ Example: "Off (0x3223)" */
|
|
2771
2429
|
FlickerReduction?: string;
|
|
2772
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2773
|
-
FlickerReductionIndicator?: string;
|
|
2774
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2430
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2775
2431
|
FlickerReductionShooting?: string;
|
|
2776
|
-
/** ☆☆☆☆ Example: "No" */
|
|
2777
|
-
FlipHorizontal?: string;
|
|
2778
2432
|
/** ☆☆☆☆ ✔ Example: "70.0 mm" */
|
|
2779
2433
|
FocalLengthTeleZoom?: string;
|
|
2780
2434
|
/** ☆☆☆☆ ✔ Example: "640 428" */
|
|
@@ -2793,7 +2447,7 @@ export interface MakerNotesTags {
|
|
|
2793
2447
|
FocalUnits?: string;
|
|
2794
2448
|
/** ☆☆☆☆ Example: "Wide Focus (normal)" */
|
|
2795
2449
|
FocusArea?: string;
|
|
2796
|
-
/** ☆☆☆☆ ✔ Example: "Wrap" */
|
|
2450
|
+
/** ☆☆☆☆ ✔ Example: "No Wrap" */
|
|
2797
2451
|
FocusAreaSelection?: string;
|
|
2798
2452
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2799
2453
|
FocusBracket?: number;
|
|
@@ -2803,10 +2457,6 @@ export interface MakerNotesTags {
|
|
|
2803
2457
|
FocusContinuous?: string;
|
|
2804
2458
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2805
2459
|
FocusDisplayAIServoAndMF?: string;
|
|
2806
|
-
/** ★★☆☆ ✔ Example: "inf" */
|
|
2807
|
-
FocusDistanceLower?: string;
|
|
2808
|
-
/** ★★☆☆ ✔ Example: "inf" */
|
|
2809
|
-
FocusDistanceUpper?: string;
|
|
2810
2460
|
/** ☆☆☆☆ ✔ Example: "450x359" */
|
|
2811
2461
|
FocusFrameSize?: string;
|
|
2812
2462
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
@@ -2821,26 +2471,16 @@ export interface MakerNotesTags {
|
|
|
2821
2471
|
FocusModeSetting?: string;
|
|
2822
2472
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
2823
2473
|
FocusModeSwitch?: string;
|
|
2824
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2474
|
+
/** ☆☆☆☆ ✔ Example: "Red" */
|
|
2825
2475
|
FocusPeakingHighlightColor?: string;
|
|
2826
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2476
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2827
2477
|
FocusPeakingLevel?: string;
|
|
2828
2478
|
/** ★☆☆☆ ✔ Example: "972 1296" */
|
|
2829
2479
|
FocusPixel?: string;
|
|
2830
|
-
/** ☆☆☆☆ Example: "Normal" */
|
|
2831
|
-
FocusPointBrightness?: string;
|
|
2832
|
-
/** ☆☆☆☆ Example: "Auto" */
|
|
2833
|
-
FocusPointPersistence?: string;
|
|
2834
|
-
/** ☆☆☆☆ Example: "Normal" */
|
|
2835
|
-
FocusPointSelectionSpeed?: string;
|
|
2836
2480
|
/** ☆☆☆☆ ✔ Example: "Wrap" */
|
|
2837
2481
|
FocusPointWrap?: string;
|
|
2838
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2839
|
-
FocusPosition?:
|
|
2840
|
-
/** ☆☆☆☆ Example: "3R of Center" */
|
|
2841
|
-
FocusPositionHorizontal?: string;
|
|
2842
|
-
/** ☆☆☆☆ Example: "1U from Center" */
|
|
2843
|
-
FocusPositionVertical?: string;
|
|
2482
|
+
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2483
|
+
FocusPosition?: number;
|
|
2844
2484
|
/** ☆☆☆☆ ✔ Example: "AF Used; 96" */
|
|
2845
2485
|
FocusProcess?: string;
|
|
2846
2486
|
/** ★★☆☆ ✔ Example: "Unknown (2)" */
|
|
@@ -2851,37 +2491,25 @@ export interface MakerNotesTags {
|
|
|
2851
2491
|
FocusRingRotation?: string;
|
|
2852
2492
|
/** ☆☆☆☆ Example: "M" */
|
|
2853
2493
|
FocusSetting?: string;
|
|
2854
|
-
/** ☆☆☆☆ Example: "Unknown (46)" */
|
|
2855
|
-
FocusShiftExposureLock?: string;
|
|
2856
|
-
/** ☆☆☆☆ Example: "153 Seconds" */
|
|
2857
|
-
FocusShiftInterval?: string;
|
|
2858
|
-
/** ☆☆☆☆ Example: 50 */
|
|
2859
|
-
FocusShiftNumberShots?: number;
|
|
2860
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
2861
|
-
FocusShiftShooting?: string;
|
|
2862
|
-
/** ☆☆☆☆ Example: 54 */
|
|
2863
|
-
FocusShiftStepWidth?: number;
|
|
2864
2494
|
/** ☆☆☆☆ ✔ Example: "Not confirmed, Tracking" */
|
|
2865
2495
|
FocusStatus?: string;
|
|
2866
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2496
|
+
/** ☆☆☆☆ ✔ Example: 9713 */
|
|
2867
2497
|
FocusStepInfinity?: number;
|
|
2498
|
+
/** ☆☆☆☆ ✔ Example: 9804 */
|
|
2499
|
+
FocusStepNear?: number;
|
|
2868
2500
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2869
2501
|
FocusTrackingLockOn?: string;
|
|
2870
2502
|
/** ★☆☆☆ ✔ Example: "Out of focus" */
|
|
2871
2503
|
FocusWarning?: string;
|
|
2872
2504
|
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2873
2505
|
FocusingScreen?: string;
|
|
2874
|
-
/** ☆☆☆☆ Example: "Standard Form" */
|
|
2875
|
-
FolderName?: string;
|
|
2876
2506
|
/** ☆☆☆☆ ✔ Example: 373 */
|
|
2877
2507
|
FolderNumber?: number;
|
|
2878
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2508
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2879
2509
|
FramingGridDisplay?: string;
|
|
2880
2510
|
/** ☆☆☆☆ ✔ Example: "(Binary data 12 bytes, use -b option to extract)" */
|
|
2881
2511
|
FreeBytes?: string;
|
|
2882
|
-
/**
|
|
2883
|
-
FreeMemoryCardImages?: number;
|
|
2884
|
-
/** ★☆☆☆ ✔ Example: "TTL" */
|
|
2512
|
+
/** ★☆☆☆ ✔ Example: "Red-eye reduction" */
|
|
2885
2513
|
FujiFlashMode?: string;
|
|
2886
2514
|
/** ☆☆☆☆ ✔ Example: "9504x6336" */
|
|
2887
2515
|
FullImageSize?: string;
|
|
@@ -2889,17 +2517,13 @@ export interface MakerNotesTags {
|
|
|
2889
2517
|
FullPressSnap?: string;
|
|
2890
2518
|
/** ☆☆☆☆ ✔ Example: "Zoom (High)" */
|
|
2891
2519
|
Func1Button?: string;
|
|
2892
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2520
|
+
/** ☆☆☆☆ ✔ Example: "Choose Image Area (DX/1.3x)" */
|
|
2893
2521
|
Func1ButtonPlusDials?: string;
|
|
2894
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2522
|
+
/** ☆☆☆☆ ✔ Example: "Rating" */
|
|
2895
2523
|
Func2Button?: string;
|
|
2896
|
-
/** ☆☆☆☆ Example: "Photo Shooting Menu Bank" */
|
|
2897
|
-
Func2ButtonPlusDials?: string;
|
|
2898
|
-
/** ☆☆☆☆ Example: "Voice Memo" */
|
|
2899
|
-
Func3Button?: string;
|
|
2900
2524
|
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
2901
2525
|
FuncButton?: string;
|
|
2902
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2526
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2903
2527
|
FuncButtonPlusDials?: string;
|
|
2904
2528
|
/** ☆☆☆☆ ✔ Example: "ISO Display" */
|
|
2905
2529
|
FunctionButton?: string;
|
|
@@ -2913,10 +2537,8 @@ export interface MakerNotesTags {
|
|
|
2913
2537
|
GainBase?: number;
|
|
2914
2538
|
/** ☆☆☆☆ ✔ Example: "n/a; User-Selected" */
|
|
2915
2539
|
Gradation?: string;
|
|
2916
|
-
/** ☆☆☆☆ ✔ Example: "Weak" */
|
|
2917
|
-
GrainEffect?: string;
|
|
2918
2540
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2919
|
-
|
|
2541
|
+
GrainEffect?: string;
|
|
2920
2542
|
/** ☆☆☆☆ Example: "2E" */
|
|
2921
2543
|
GreenGain?: string;
|
|
2922
2544
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2931,16 +2553,8 @@ export interface MakerNotesTags {
|
|
|
2931
2553
|
GroupAreaAFIllumination?: string;
|
|
2932
2554
|
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
2933
2555
|
HDMIBitDepth?: string;
|
|
2934
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2556
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2935
2557
|
HDMIExternalRecorder?: string;
|
|
2936
|
-
/** ☆☆☆☆ Example: "Unknown (1)" */
|
|
2937
|
-
HDMIOutputHDR?: string;
|
|
2938
|
-
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
2939
|
-
HDMIOutputRange?: string;
|
|
2940
|
-
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2941
|
-
HDMIOutputResolution?: string;
|
|
2942
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
2943
|
-
HDMIViewAssist?: string;
|
|
2944
2558
|
/** ★☆☆☆ ✔ Example: "On" */
|
|
2945
2559
|
HDR?: string;
|
|
2946
2560
|
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
@@ -2965,9 +2579,7 @@ export interface MakerNotesTags {
|
|
|
2965
2579
|
Highlight?: number;
|
|
2966
2580
|
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
2967
2581
|
HighlightShadow?: string;
|
|
2968
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2969
|
-
HighlightTone?: string;
|
|
2970
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2582
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2971
2583
|
HighlightTonePriority?: string;
|
|
2972
2584
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2973
2585
|
HighlightWarning?: string;
|
|
@@ -2989,13 +2601,11 @@ export interface MakerNotesTags {
|
|
|
2989
2601
|
HueAdjust?: string;
|
|
2990
2602
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2991
2603
|
HueAdjustment?: string;
|
|
2992
|
-
/** ☆☆☆☆ Example: "0 -5 5" */
|
|
2993
|
-
HueSetting?: string;
|
|
2994
2604
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2995
2605
|
ISO2?: number;
|
|
2996
2606
|
/** ☆☆☆☆ Example: "On" */
|
|
2997
2607
|
ISOAuto?: string;
|
|
2998
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2608
|
+
/** ☆☆☆☆ ✔ Example: "ISO 1600" */
|
|
2999
2609
|
ISOAutoFlashLimit?: string;
|
|
3000
2610
|
/** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
|
|
3001
2611
|
ISOAutoHiLimit?: string;
|
|
@@ -3005,11 +2615,11 @@ export interface MakerNotesTags {
|
|
|
3005
2615
|
ISOAutoMin?: number;
|
|
3006
2616
|
/** ☆☆☆☆ Example: "Standard" */
|
|
3007
2617
|
ISOAutoParameters?: string;
|
|
3008
|
-
/** ☆☆☆☆ ✔ Example: "Auto (
|
|
2618
|
+
/** ☆☆☆☆ ✔ Example: "Auto (Faster)" */
|
|
3009
2619
|
ISOAutoShutterTime?: string;
|
|
3010
|
-
/** ☆☆☆☆ ✔ Example: "Show
|
|
2620
|
+
/** ☆☆☆☆ ✔ Example: "Show Frame Count" */
|
|
3011
2621
|
ISODisplay?: string;
|
|
3012
|
-
/**
|
|
2622
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3013
2623
|
ISOExpansion?: string;
|
|
3014
2624
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
3015
2625
|
ISOFloor?: number;
|
|
@@ -3025,19 +2635,17 @@ export interface MakerNotesTags {
|
|
|
3025
2635
|
ISOSpeedExpansion?: string;
|
|
3026
2636
|
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
3027
2637
|
ISOSpeedIncrements?: string;
|
|
3028
|
-
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
3029
|
-
ISOSpeedRange?: string;
|
|
3030
2638
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
3031
2639
|
ISOStepSize?: string;
|
|
3032
2640
|
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
3033
2641
|
ISOValue?: number;
|
|
3034
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2642
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3035
2643
|
Illumination?: string;
|
|
3036
2644
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3037
2645
|
ImageAdjustment?: string;
|
|
3038
2646
|
/** ☆☆☆☆ ✔ Example: "FX (36x24)" */
|
|
3039
2647
|
ImageArea?: string;
|
|
3040
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2648
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3041
2649
|
ImageAuthentication?: string;
|
|
3042
2650
|
/** ☆☆☆☆ ✔ Example: "0 0 8256 5504" */
|
|
3043
2651
|
ImageBoundary?: string;
|
|
@@ -3051,11 +2659,9 @@ export interface MakerNotesTags {
|
|
|
3051
2659
|
ImageEditing?: string;
|
|
3052
2660
|
/** ☆☆☆☆ Example: "Standard" */
|
|
3053
2661
|
ImageEffects?: string;
|
|
3054
|
-
/** ☆☆☆☆ ✔ Example: "Re-developed from RAW" */
|
|
3055
|
-
ImageGeneration?: string;
|
|
3056
2662
|
/** ☆☆☆☆ Example: 912 */
|
|
3057
2663
|
ImageIDNumber?: number;
|
|
3058
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2664
|
+
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3059
2665
|
ImageOptimization?: string;
|
|
3060
2666
|
/** ☆☆☆☆ ✔ Example: "Red Eye Ruduction ;" */
|
|
3061
2667
|
ImageProcessing?: string;
|
|
@@ -3085,8 +2691,6 @@ export interface MakerNotesTags {
|
|
|
3085
2691
|
ImageTemperatureMin?: number;
|
|
3086
2692
|
/** ☆☆☆☆ ✔ Example: "Vibrant" */
|
|
3087
2693
|
ImageTone?: string;
|
|
3088
|
-
/** ☆☆☆☆ ✔ Example: "Displays shooting functions" */
|
|
3089
|
-
InfoButtonWhenShooting?: string;
|
|
3090
2694
|
/** ☆☆☆☆ Example: "On" */
|
|
3091
2695
|
InfraredIlluminator?: string;
|
|
3092
2696
|
/** ☆☆☆☆ ✔ Example: "Manual AF point" */
|
|
@@ -3121,14 +2725,6 @@ export interface MakerNotesTags {
|
|
|
3121
2725
|
InternalNDFilter?: number;
|
|
3122
2726
|
/** ★★☆☆ ✔ Example: "fdfec409" */
|
|
3123
2727
|
InternalSerialNumber?: string;
|
|
3124
|
-
/** ☆☆☆☆ Example: 0 */
|
|
3125
|
-
IntervalDurationHours?: number;
|
|
3126
|
-
/** ☆☆☆☆ Example: 1 */
|
|
3127
|
-
IntervalDurationMinutes?: number;
|
|
3128
|
-
/** ☆☆☆☆ Example: 0 */
|
|
3129
|
-
IntervalDurationSeconds?: number;
|
|
3130
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3131
|
-
IntervalExposureSmoothing?: string;
|
|
3132
2728
|
/** ☆☆☆☆ Example: 65542 */
|
|
3133
2729
|
IntervalLength?: number;
|
|
3134
2730
|
/** ☆☆☆☆ Example: "Still Image" */
|
|
@@ -3136,31 +2732,15 @@ export interface MakerNotesTags {
|
|
|
3136
2732
|
/** ☆☆☆☆ Example: 65797 */
|
|
3137
2733
|
IntervalNumber?: number;
|
|
3138
2734
|
/** ☆☆☆☆ Example: "Off" */
|
|
3139
|
-
IntervalPriority?: string;
|
|
3140
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
3141
2735
|
IntervalShooting?: string;
|
|
3142
|
-
/** ☆☆☆☆
|
|
3143
|
-
Intervals?: number;
|
|
3144
|
-
/** ☆☆☆☆ ✔ Example: "n/a (RAW only)" */
|
|
2736
|
+
/** ☆☆☆☆ ✔ Example: "n/a (Movie)" */
|
|
3145
2737
|
JPEGQuality?: string;
|
|
3146
|
-
/** ☆☆☆☆
|
|
3147
|
-
JPEGSize?: string;
|
|
3148
|
-
/** ☆☆☆☆ ✔ Example: "Size Priority" */
|
|
2738
|
+
/** ☆☆☆☆ ✔ Example: "Optimal Quality" */
|
|
3149
2739
|
JPGCompression?: string;
|
|
3150
2740
|
/** ☆☆☆☆ ✔ Example: "10 MP" */
|
|
3151
2741
|
JpgRecordedPixels?: string;
|
|
3152
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
3153
|
-
KeepExposure?: string;
|
|
3154
2742
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3155
2743
|
KeystoneCompensation?: string;
|
|
3156
|
-
/** ☆☆☆☆ ✔ Example: "Vertical" */
|
|
3157
|
-
KeystoneDirection?: string;
|
|
3158
|
-
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
3159
|
-
KeystoneValue?: string;
|
|
3160
|
-
/** ☆☆☆☆ Example: 864 */
|
|
3161
|
-
KodakImageHeight?: number;
|
|
3162
|
-
/** ☆☆☆☆ Example: 800 */
|
|
3163
|
-
KodakImageWidth?: number;
|
|
3164
2744
|
/** ☆☆☆☆ Example: "SKodakCommonInfo Jaguar7" */
|
|
3165
2745
|
KodakInfoType?: string;
|
|
3166
2746
|
/** ☆☆☆☆ Example: "Kodak " */
|
|
@@ -3181,29 +2761,19 @@ export interface MakerNotesTags {
|
|
|
3181
2761
|
LCDIlluminationDuringBulb?: string;
|
|
3182
2762
|
/** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
|
|
3183
2763
|
LCDPanels?: string;
|
|
3184
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3185
|
-
LCHEditor?: string;
|
|
3186
|
-
/** ☆☆☆☆ ✔ Example: "Masked" */
|
|
3187
|
-
LVShootingAreaDisplay?: string;
|
|
3188
|
-
/** ☆☆☆☆ ✔ Example: "UNICORN THEATRE FOR CHILDREN" */
|
|
3189
|
-
Landmark?: string;
|
|
3190
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
3191
|
-
Language?: string;
|
|
3192
2764
|
/** ☆☆☆☆ Example: 92 */
|
|
3193
2765
|
LastFileNumber?: number;
|
|
3194
2766
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3195
2767
|
LateralChromaticAberration?: string;
|
|
3196
2768
|
/** ☆☆☆☆ Example: "4.0 to 22" */
|
|
3197
2769
|
LensApertureRange?: string;
|
|
3198
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3199
|
-
LensControlRing?: string;
|
|
3200
|
-
/** ☆☆☆☆ ✔ Example: "0802" */
|
|
2770
|
+
/** ☆☆☆☆ ✔ Example: "0801" */
|
|
3201
2771
|
LensDataVersion?: string;
|
|
3202
2772
|
/** ☆☆☆☆ ✔ Example: "97 154 172 70 104 114" */
|
|
3203
2773
|
LensDistortionParams?: string;
|
|
3204
2774
|
/** ☆☆☆☆ ✔ Example: "Focus search on" */
|
|
3205
2775
|
LensDriveNoAF?: string;
|
|
3206
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2776
|
+
/** ☆☆☆☆ ✔ Example: "Continue Focus Search" */
|
|
3207
2777
|
LensDriveWhenAFImpossible?: string;
|
|
3208
2778
|
/** ☆☆☆☆ ✔ Example: 8.67 */
|
|
3209
2779
|
LensFStops?: number;
|
|
@@ -3215,13 +2785,11 @@ export interface MakerNotesTags {
|
|
|
3215
2785
|
LensFocalLength?: string;
|
|
3216
2786
|
/** ☆☆☆☆ Example: "50 to 50" */
|
|
3217
2787
|
LensFocalRange?: string;
|
|
3218
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2788
|
+
/** ☆☆☆☆ ✔ Example: "AF Lock Only" */
|
|
3219
2789
|
LensFocusFunctionButtons?: string;
|
|
3220
2790
|
/** ☆☆☆☆ ✔ Example: "Unknown (72)" */
|
|
3221
2791
|
LensFormat?: string;
|
|
3222
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3223
|
-
LensFunc1Button?: string;
|
|
3224
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (29)" */
|
|
2792
|
+
/** ☆☆☆☆ ✔ Example: "AF-On" */
|
|
3225
2793
|
LensFunc2Button?: string;
|
|
3226
2794
|
/** ☆☆☆☆ ✔ Example: 93 */
|
|
3227
2795
|
LensIDNumber?: number;
|
|
@@ -3231,20 +2799,20 @@ export interface MakerNotesTags {
|
|
|
3231
2799
|
LensModulationOptimizer?: string;
|
|
3232
2800
|
/** ☆☆☆☆ ✔ Example: "Unknown (74)" */
|
|
3233
2801
|
LensMount?: string;
|
|
3234
|
-
/** ☆☆☆☆ ✔ Example: "0xe253" */
|
|
3235
|
-
LensProperties?: string;
|
|
3236
2802
|
/** ☆☆☆☆ Example: "Xcenter=1456 Ycenter=1068 GainMax=16" */
|
|
3237
2803
|
LensShading?: string;
|
|
3238
2804
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3239
2805
|
LensShutterLock?: string;
|
|
3240
|
-
/** ☆☆☆☆ ✔ Example: "ZA SSM II" */
|
|
3241
|
-
LensSpecFeatures?: string;
|
|
3242
2806
|
/** ☆☆☆☆ ✔ Example: 35 */
|
|
3243
2807
|
LensTemperature?: number;
|
|
3244
2808
|
/** ☆☆☆☆ Example: */
|
|
3245
2809
|
LensType2?: string;
|
|
3246
2810
|
/** ☆☆☆☆ Example: */
|
|
3247
2811
|
LensType3?: string;
|
|
2812
|
+
/** ☆☆☆☆ Example: 2 */
|
|
2813
|
+
LensTypeMake?: number;
|
|
2814
|
+
/** ☆☆☆☆ Example: "30 10" */
|
|
2815
|
+
LensTypeModel?: string;
|
|
3248
2816
|
/** ☆☆☆☆ ✔ Example: "98%" */
|
|
3249
2817
|
LensZoomPosition?: string;
|
|
3250
2818
|
/** ☆☆☆☆ Example: 250 */
|
|
@@ -3253,8 +2821,6 @@ export interface MakerNotesTags {
|
|
|
3253
2821
|
LevelOrientation?: string;
|
|
3254
2822
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3255
2823
|
LightCondition?: number;
|
|
3256
|
-
/** ☆☆☆☆ Example: 8 */
|
|
3257
|
-
LightReading?: number;
|
|
3258
2824
|
/** ☆☆☆☆ Example: "Unknown (512)" */
|
|
3259
2825
|
LightSourceSpecial?: string;
|
|
3260
2826
|
/** ☆☆☆☆ ✔ Example: "LCD Backlight and Shooting Information" */
|
|
@@ -3281,13 +2847,11 @@ export interface MakerNotesTags {
|
|
|
3281
2847
|
LiveViewAFMode?: string;
|
|
3282
2848
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3283
2849
|
LiveViewButtonOptions?: string;
|
|
3284
|
-
/** ☆☆☆☆ ✔ Example: "Enable (simulates exposure)" */
|
|
3285
|
-
LiveViewExposureSimulation?: string;
|
|
3286
2850
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
3287
2851
|
LiveViewFocusMode?: string;
|
|
3288
2852
|
/** ☆☆☆☆ ✔ Example: "40 Segment" */
|
|
3289
2853
|
LiveViewMetering?: string;
|
|
3290
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2854
|
+
/** ☆☆☆☆ ✔ Example: "3 min" */
|
|
3291
2855
|
LiveViewMonitorOffTime?: string;
|
|
3292
2856
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3293
2857
|
LiveViewShooting?: string;
|
|
@@ -3299,7 +2863,7 @@ export interface MakerNotesTags {
|
|
|
3299
2863
|
LocationInfoVersion?: string;
|
|
3300
2864
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
3301
2865
|
LocationName?: string;
|
|
3302
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2866
|
+
/** ☆☆☆☆ ✔ Example: "Protect (hold:record memo); 31" */
|
|
3303
2867
|
LockMicrophoneButton?: string;
|
|
3304
2868
|
/** ☆☆☆☆ Example: "Yes" */
|
|
3305
2869
|
LongExposureNRUsed?: string;
|
|
@@ -3315,7 +2879,7 @@ export interface MakerNotesTags {
|
|
|
3315
2879
|
MCUVersion?: number;
|
|
3316
2880
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3317
2881
|
MacroLED?: string;
|
|
3318
|
-
/**
|
|
2882
|
+
/** ★★☆☆ ✔ Example: "Unknown (852023)" */
|
|
3319
2883
|
MacroMode?: string;
|
|
3320
2884
|
/** ☆☆☆☆ ✔ Example: "Soft Focus 2; 1280; 0; 0" */
|
|
3321
2885
|
MagicFilter?: string;
|
|
@@ -3327,17 +2891,17 @@ export interface MakerNotesTags {
|
|
|
3327
2891
|
MakerNoteOffset?: number;
|
|
3328
2892
|
/** ☆☆☆☆ Example: "Rdc" */
|
|
3329
2893
|
MakerNoteType?: string;
|
|
3330
|
-
/** ★★☆☆ ✔ Example:
|
|
3331
|
-
MakerNoteVersion?:
|
|
3332
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2894
|
+
/** ★★☆☆ ✔ Example: "mlt0" */
|
|
2895
|
+
MakerNoteVersion?: string;
|
|
2896
|
+
/** ☆☆☆☆ ✔ Example: "98 kPa" */
|
|
3333
2897
|
ManometerPressure?: string;
|
|
3334
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2898
|
+
/** ☆☆☆☆ ✔ Example: "400 m, 1320 ft" */
|
|
3335
2899
|
ManometerReading?: string;
|
|
3336
2900
|
/** ☆☆☆☆ ✔ Example: "Stops at AF Area Edges" */
|
|
3337
2901
|
ManualAFPointSelPattern?: string;
|
|
3338
2902
|
/** ☆☆☆☆ ✔ Example: "Stops at AF area edges" */
|
|
3339
2903
|
ManualAFPointSelectPattern?: string;
|
|
3340
|
-
/** ☆☆☆☆ ✔ Example: "On (
|
|
2904
|
+
/** ☆☆☆☆ ✔ Example: "On (1/64 strength)" */
|
|
3341
2905
|
ManualFlash?: string;
|
|
3342
2906
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3343
2907
|
ManualFlashOutput?: string;
|
|
@@ -3351,19 +2915,17 @@ export interface MakerNotesTags {
|
|
|
3351
2915
|
ManualFocusRingInAFMode?: string;
|
|
3352
2916
|
/** ☆☆☆☆ ✔ Example: "Tv=Main/Av=Control" */
|
|
3353
2917
|
ManualTv?: string;
|
|
3354
|
-
/** ☆☆☆☆ ✔ Example: 2016-02-04 */
|
|
3355
|
-
ManufactureDate?: ExifDate | string;
|
|
3356
2918
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3357
2919
|
MasterGain?: number;
|
|
3358
2920
|
/** ☆☆☆☆ ✔ Example: "Face Detection On" */
|
|
3359
2921
|
MatrixMetering?: string;
|
|
3360
2922
|
/** ★★☆☆ ✔ Example: 7.3 */
|
|
3361
2923
|
MaxAperture?: number;
|
|
3362
|
-
/**
|
|
2924
|
+
/** ☆☆☆☆ ✔ Example: 6.7 */
|
|
3363
2925
|
MaxApertureAtMaxFocal?: number;
|
|
3364
|
-
/**
|
|
2926
|
+
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
3365
2927
|
MaxApertureAtMinFocal?: number;
|
|
3366
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2928
|
+
/** ☆☆☆☆ ✔ Example: 200 */
|
|
3367
2929
|
MaxContinuousRelease?: number;
|
|
3368
2930
|
/** ☆☆☆☆ ✔ Example: "8 8 8" */
|
|
3369
2931
|
MaxFaces?: string;
|
|
@@ -3375,23 +2937,17 @@ export interface MakerNotesTags {
|
|
|
3375
2937
|
MeasuredLV?: number;
|
|
3376
2938
|
/** ☆☆☆☆ ✔ Example: "988 1024 1024 636" */
|
|
3377
2939
|
MeasuredRGGB?: string;
|
|
3378
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2940
|
+
/** ☆☆☆☆ ✔ Example: "6653 9252 9606 4468" */
|
|
3379
2941
|
MeasuredRGGBData?: string;
|
|
3380
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2942
|
+
/** ☆☆☆☆ ✔ Example: 6 */
|
|
3381
2943
|
MechanicalShutterCount?: number;
|
|
3382
|
-
/** ☆☆☆☆ ✔ Example: "FFCBAC24-E547-4BBC-AF47-38B1A3D845E3" */
|
|
3383
|
-
MediaGroupUUID?: string;
|
|
3384
|
-
/** ☆☆☆☆ ✔ Example: "High (48 kHz)" */
|
|
3385
|
-
MemoAudioQuality?: string;
|
|
3386
2944
|
/** ☆☆☆☆ ✔ Example: "SD card in use, MemoryStick slot empty" */
|
|
3387
2945
|
MemoryCardConfiguration?: string;
|
|
3388
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3389
|
-
MemoryCardNumber?: number;
|
|
3390
2946
|
/** ☆☆☆☆ ✔ Example: "Previous (top if power off)" */
|
|
3391
2947
|
MenuButtonDisplayPosition?: string;
|
|
3392
2948
|
/** ☆☆☆☆ ✔ Example: "Top" */
|
|
3393
2949
|
MenuButtonReturn?: string;
|
|
3394
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2950
|
+
/** ☆☆☆☆ ✔ Example: "20 s" */
|
|
3395
2951
|
MenuMonitorOffTime?: string;
|
|
3396
2952
|
/** ☆☆☆☆ ✔ Example: "THm211000000000" */
|
|
3397
2953
|
MetaVersion?: string;
|
|
@@ -3399,8 +2955,6 @@ export interface MakerNotesTags {
|
|
|
3399
2955
|
MeterMode?: string;
|
|
3400
2956
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
3401
2957
|
Metering?: string;
|
|
3402
|
-
/** ☆☆☆☆ Example: "Metering" */
|
|
3403
|
-
MeteringButton?: string;
|
|
3404
2958
|
/** ☆☆☆☆ ✔ Example: "Within Range" */
|
|
3405
2959
|
MeteringOffScaleIndicator?: string;
|
|
3406
2960
|
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
@@ -3413,14 +2967,6 @@ export interface MakerNotesTags {
|
|
|
3413
2967
|
MinFocalLength?: string;
|
|
3414
2968
|
/** ☆☆☆☆ ✔ Example: "2.0 m" */
|
|
3415
2969
|
MinFocusDistance?: string;
|
|
3416
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3417
|
-
MiniatureFilter?: string;
|
|
3418
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (-1)" */
|
|
3419
|
-
MiniatureFilterOrientation?: string;
|
|
3420
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3421
|
-
MiniatureFilterParameter?: number;
|
|
3422
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3423
|
-
MiniatureFilterPosition?: number;
|
|
3424
2970
|
/** ☆☆☆☆ Example: 2004-07-05 */
|
|
3425
2971
|
MinoltaDate?: ExifDate | string;
|
|
3426
2972
|
/** ☆☆☆☆ Example: "Unknown (768)" */
|
|
@@ -3473,8 +3019,6 @@ export interface MakerNotesTags {
|
|
|
3473
3019
|
MonitorOffTime?: string;
|
|
3474
3020
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
3475
3021
|
MonochromeColor?: string;
|
|
3476
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3477
|
-
MonochromeFilterEffect?: string;
|
|
3478
3022
|
/** ☆☆☆☆ Example: "Off" */
|
|
3479
3023
|
MonochromeGrainEffect?: string;
|
|
3480
3024
|
/** ☆☆☆☆ ✔ Example: "No Filter; 0; 8; Strength 2; 0; 3" */
|
|
@@ -3489,25 +3033,19 @@ export interface MakerNotesTags {
|
|
|
3489
3033
|
MoonPhase?: string;
|
|
3490
3034
|
/** ☆☆☆☆ Example: 100 */
|
|
3491
3035
|
MotionSensitivity?: number;
|
|
3492
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3493
|
-
MovieAELockButtonAssignment?: string;
|
|
3494
|
-
/** ☆☆☆☆ ✔ Example: "Single" */
|
|
3036
|
+
/** ☆☆☆☆ ✔ Example: "Auto (People)" */
|
|
3495
3037
|
MovieAFAreaMode?: string;
|
|
3496
3038
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
3497
3039
|
MovieAFTrackingSensitivity?: string;
|
|
3498
|
-
/** ☆☆☆☆ Example: "Auto" */
|
|
3499
|
-
MovieFlickerReduction?: string;
|
|
3500
3040
|
/** ☆☆☆☆ ✔ Example: "Zoom (Low)" */
|
|
3501
3041
|
MovieFunc1Button?: string;
|
|
3502
3042
|
/** ☆☆☆☆ ✔ Example: "Zoom (1:1)" */
|
|
3503
3043
|
MovieFunc2Button?: string;
|
|
3504
|
-
/** ☆☆☆☆ Example: "None" */
|
|
3505
|
-
MovieFunc3Button?: string;
|
|
3506
3044
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3507
3045
|
MovieFunctionButton?: string;
|
|
3508
3046
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3509
3047
|
MovieFunctionButtonPlusDials?: string;
|
|
3510
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3048
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3511
3049
|
MovieHighlightDisplayPattern?: string;
|
|
3512
3050
|
/** ☆☆☆☆ ✔ Example: 248 */
|
|
3513
3051
|
MovieHighlightDisplayThreshold?: number;
|
|
@@ -3517,13 +3055,13 @@ export interface MakerNotesTags {
|
|
|
3517
3055
|
MovieISOAutoHiLimit?: string;
|
|
3518
3056
|
/** ☆☆☆☆ ✔ Example: "Center Focus Point" */
|
|
3519
3057
|
MovieMultiSelector?: string;
|
|
3520
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3058
|
+
/** ☆☆☆☆ ✔ Example: "Index Marking" */
|
|
3521
3059
|
MoviePreviewButton?: string;
|
|
3522
3060
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3523
3061
|
MoviePreviewButtonPlusDials?: string;
|
|
3524
3062
|
/** ☆☆☆☆ ✔ Example: "Take Photo" */
|
|
3525
3063
|
MovieShutterButton?: string;
|
|
3526
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3064
|
+
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3527
3065
|
MovieSubSelectorAssignment?: string;
|
|
3528
3066
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3529
3067
|
MovieSubSelectorAssignmentPlusDials?: string;
|
|
@@ -3531,15 +3069,13 @@ export interface MakerNotesTags {
|
|
|
3531
3069
|
MovieWhiteBalanceSameAsPhoto?: string;
|
|
3532
3070
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3533
3071
|
MultiControllerWhileMetering?: string;
|
|
3534
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3535
|
-
MultiExposure?: string;
|
|
3536
3072
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3537
3073
|
MultiExposureAutoGain?: string;
|
|
3538
3074
|
/** ☆☆☆☆ ✔ Example: "Bright (comparative)" */
|
|
3539
3075
|
MultiExposureControl?: string;
|
|
3540
3076
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3541
3077
|
MultiExposureMode?: string;
|
|
3542
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3078
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3543
3079
|
MultiExposureShots?: number;
|
|
3544
3080
|
/** ☆☆☆☆ ✔ Example: "0101" */
|
|
3545
3081
|
MultiExposureVersion?: string;
|
|
@@ -3551,32 +3087,24 @@ export interface MakerNotesTags {
|
|
|
3551
3087
|
MultiFunctionLock?: string;
|
|
3552
3088
|
/** ☆☆☆☆ ✔ Example: "Reset Meter-off Delay" */
|
|
3553
3089
|
MultiSelector?: string;
|
|
3554
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3090
|
+
/** ☆☆☆☆ ✔ Example: "Start Movie Recording" */
|
|
3555
3091
|
MultiSelectorLiveView?: string;
|
|
3556
|
-
/** ☆☆☆☆ Example: "Reset" */
|
|
3557
|
-
MultiSelectorLiveViewMode?: string;
|
|
3558
3092
|
/** ☆☆☆☆ ✔ Example: "Zoom On/Off" */
|
|
3559
3093
|
MultiSelectorPlaybackMode?: string;
|
|
3560
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3094
|
+
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point (Reset)" */
|
|
3561
3095
|
MultiSelectorShootMode?: string;
|
|
3562
|
-
/** ☆☆☆☆ ✔ Example: "On (2 frames); 1" */
|
|
3563
|
-
MultipleExposureMode?: string;
|
|
3564
3096
|
/** ☆☆☆☆ ✔ Example: "Unknown (15)" */
|
|
3565
3097
|
MultipleExposureSet?: string;
|
|
3566
3098
|
/** ★☆☆☆ ✔ Example: "Vivid" */
|
|
3567
3099
|
MyColorMode?: string;
|
|
3568
3100
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
3569
3101
|
NDFilter?: string;
|
|
3570
|
-
/** ☆☆☆☆ ✔ Example: "n/a (JPEG)" */
|
|
3571
|
-
NEFBitDepth?: string;
|
|
3572
3102
|
/** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
|
|
3573
3103
|
NEFCompression?: string;
|
|
3574
3104
|
/** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
|
|
3575
3105
|
NEFLinearizationTable?: string;
|
|
3576
3106
|
/** ☆☆☆☆ Example: "Off" */
|
|
3577
3107
|
NeutralDensityFilter?: string;
|
|
3578
|
-
/** ☆☆☆☆ ✔ Example: "ViewNX 2.8 M" */
|
|
3579
|
-
NikonCaptureVersion?: string;
|
|
3580
3108
|
/** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
|
|
3581
3109
|
NikonImageSize?: string;
|
|
3582
3110
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
@@ -3595,16 +3123,12 @@ export interface MakerNotesTags {
|
|
|
3595
3123
|
NominalMinAperture?: number;
|
|
3596
3124
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3597
3125
|
NormalWhiteLevel?: number;
|
|
3598
|
-
/** ★★☆☆ ✔ Example: 9 */
|
|
3599
|
-
NumAFPoints?: number;
|
|
3600
3126
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3601
3127
|
NumFaceElements?: number;
|
|
3602
3128
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3603
3129
|
NumFacePositions?: number;
|
|
3604
3130
|
/** ☆☆☆☆ ✔ Example: "55 Points" */
|
|
3605
3131
|
NumberOfFocusPoints?: string;
|
|
3606
|
-
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3607
|
-
NumberOffsets?: number;
|
|
3608
3132
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
|
|
3609
3133
|
OKButton?: string;
|
|
3610
3134
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
@@ -3627,31 +3151,23 @@ export interface MakerNotesTags {
|
|
|
3627
3151
|
OrderNumber?: number;
|
|
3628
3152
|
/** ☆☆☆☆ ✔ Example: "Separate Vert/Horiz Points" */
|
|
3629
3153
|
OrientationLinkedAF?: string;
|
|
3630
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3154
|
+
/** ☆☆☆☆ ✔ Example: "Same for vertical and horizontal" */
|
|
3631
3155
|
OrientationLinkedAFPoint?: string;
|
|
3632
|
-
/** ☆☆☆☆ ✔ Example: 7488956 */
|
|
3633
|
-
OriginalDecisionDataOffset?: number;
|
|
3634
3156
|
/** ☆☆☆☆ Example: "/home/username/pictures" */
|
|
3635
3157
|
OriginalDirectory?: string;
|
|
3636
3158
|
/** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
|
|
3637
3159
|
OriginalFileName?: string;
|
|
3638
|
-
/** ☆☆☆☆ ✔ Example: 4000 */
|
|
3639
|
-
OriginalImageHeight?: number;
|
|
3640
|
-
/** ☆☆☆☆ ✔ Example: 6000 */
|
|
3641
|
-
OriginalImageWidth?: number;
|
|
3642
3160
|
/** ☆☆☆☆ Example: ["Sensor Upgraded","PREPRODUCTION CAMERA"] */
|
|
3643
3161
|
OtherInfo?: string[];
|
|
3644
3162
|
/** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
|
|
3645
3163
|
OutputLUT?: 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
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3168
|
+
/** ☆☆☆☆ ✔ Example: "0416" */
|
|
3653
3169
|
PanasonicExifVersion?: string;
|
|
3654
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3170
|
+
/** ☆☆☆☆ ✔ Example: 5584 */
|
|
3655
3171
|
PanasonicImageHeight?: number;
|
|
3656
3172
|
/** ☆☆☆☆ ✔ Example: 8368 */
|
|
3657
3173
|
PanasonicImageWidth?: number;
|
|
@@ -3689,53 +3205,41 @@ 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" */
|
|
3707
3217
|
PhotoEffect?: string;
|
|
3708
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3218
|
+
/** ☆☆☆☆ ✔ Example: "Info Up-down, Playback Left-right" */
|
|
3709
3219
|
PhotoInfoPlayback?: string;
|
|
3710
3220
|
/** ☆☆☆☆ ✔ Example: "A" */
|
|
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" */
|
|
3719
3227
|
PictureControlBase?: string;
|
|
3720
|
-
/** ☆☆☆☆ ✔ Example: "Vivid
|
|
3228
|
+
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
3721
3229
|
PictureControlName?: string;
|
|
3722
3230
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3723
3231
|
PictureControlQuickAdjust?: string;
|
|
3724
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3232
|
+
/** ☆☆☆☆ ✔ Example: "0300" */
|
|
3725
3233
|
PictureControlVersion?: string;
|
|
3726
3234
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3727
3235
|
PictureEffect?: string;
|
|
3728
3236
|
/** ☆☆☆☆ Example: "Natural" */
|
|
3729
3237
|
PictureFinish?: string;
|
|
3730
|
-
/** ★★☆☆ ✔ Example: "i-Enhance; 2" */
|
|
3731
|
-
PictureMode?: string;
|
|
3732
3238
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3733
3239
|
PictureModeBWFilter?: string;
|
|
3734
3240
|
/** ☆☆☆☆ ✔ Example: "1 (min -2, max 2)" */
|
|
3735
3241
|
PictureModeContrast?: string;
|
|
3736
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3737
|
-
PictureModeEffect?: string;
|
|
3738
|
-
/** ☆☆☆☆ ✔ Example: "2 (min -2, max 2)" */
|
|
3242
|
+
/** ☆☆☆☆ ✔ Example: "0 (min -2, max 2)" */
|
|
3739
3243
|
PictureModeSaturation?: string;
|
|
3740
3244
|
/** ☆☆☆☆ ✔ Example: "2 (min -2, max 2)" */
|
|
3741
3245
|
PictureModeSharpness?: string;
|
|
@@ -3751,7 +3255,7 @@ export interface MakerNotesTags {
|
|
|
3751
3255
|
PictureStyleUserDef?: string;
|
|
3752
3256
|
/** ☆☆☆☆ ✔ Example: "Low" */
|
|
3753
3257
|
Pitch?: string;
|
|
3754
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3258
|
+
/** ☆☆☆☆ ✔ Example: 7.3 */
|
|
3755
3259
|
PitchAngle?: number;
|
|
3756
3260
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3757
3261
|
PixelShiftInfo?: string;
|
|
@@ -3759,39 +3263,27 @@ export interface MakerNotesTags {
|
|
|
3759
3263
|
PixelShiftResolution?: string;
|
|
3760
3264
|
/** ☆☆☆☆ ✔ Example: "Auto Rotate" */
|
|
3761
3265
|
PlayDisplay?: string;
|
|
3762
|
-
/** ☆☆☆☆
|
|
3763
|
-
PlaybackFlickDown?: string;
|
|
3764
|
-
/** ☆☆☆☆ Example: "None" */
|
|
3765
|
-
PlaybackFlickUp?: string;
|
|
3766
|
-
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
3266
|
+
/** ☆☆☆☆ ✔ Example: "5 min" */
|
|
3767
3267
|
PlaybackMenusTime?: string;
|
|
3768
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3268
|
+
/** ☆☆☆☆ ✔ Example: "20 s" */
|
|
3769
3269
|
PlaybackMonitorOffTime?: string;
|
|
3770
3270
|
/** ☆☆☆☆ ✔ Example: "Use Separate Zoom Buttons" */
|
|
3771
3271
|
PlaybackZoom?: string;
|
|
3772
3272
|
/** ☆☆☆☆ Example: "Off" */
|
|
3773
3273
|
PopupFlash?: string;
|
|
3774
|
-
/** ☆☆☆☆ Example: "Magenta: 7.8 Brightness: -31.5" */
|
|
3775
|
-
PortraitImpressionBalance?: string;
|
|
3776
3274
|
/** ☆☆☆☆ Example: "Off" */
|
|
3777
3275
|
PortraitRefiner?: string;
|
|
3778
3276
|
/** ☆☆☆☆ Example: "Post Focus Auto Merging or None" */
|
|
3779
3277
|
PostFocusMerging?: string;
|
|
3780
3278
|
/** ☆☆☆☆ ✔ Example: "External Power Supply" */
|
|
3781
3279
|
PowerSource?: string;
|
|
3782
|
-
/** ☆☆☆☆ ✔ Example: "2022:02:04 20:42:55" */
|
|
3783
|
-
PowerUpTime?: string;
|
|
3784
3280
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3785
3281
|
PreAF?: string;
|
|
3786
3282
|
/** ☆☆☆☆ ✔ Example: 3.2996109 */
|
|
3787
3283
|
PreCaptureFrames?: number;
|
|
3788
|
-
/** ☆☆☆☆ Example: 0 */
|
|
3789
|
-
PreFlashReturnStrength?: number;
|
|
3790
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
3791
|
-
PreferSubSelectorCenter?: string;
|
|
3792
3284
|
/** ☆☆☆☆ ✔ Example: "Daylight" */
|
|
3793
3285
|
PresetWhiteBalance?: string;
|
|
3794
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3286
|
+
/** ☆☆☆☆ ✔ Example: "Preview" */
|
|
3795
3287
|
PreviewButton?: string;
|
|
3796
3288
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3797
3289
|
PreviewButtonPlusDials?: string;
|
|
@@ -3813,12 +3305,8 @@ export interface MakerNotesTags {
|
|
|
3813
3305
|
ProgramLine?: string;
|
|
3814
3306
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3815
3307
|
ProgramShift?: number;
|
|
3816
|
-
/** ☆☆☆☆ ✔ Example: "ISO speed" */
|
|
3817
|
-
QuickControlDialInMeter?: string;
|
|
3818
3308
|
/** ☆☆☆☆ Example: "Off" */
|
|
3819
3309
|
QuickShot?: string;
|
|
3820
|
-
/** ☆☆☆☆ Example: "Single" */
|
|
3821
|
-
QuietShutterShootingSpeed?: string;
|
|
3822
3310
|
/** ☆☆☆☆ ✔ Example: "Uncompressed RAW" */
|
|
3823
3311
|
RAWFileType?: string;
|
|
3824
3312
|
/** ☆☆☆☆ ✔ Example: "Varies With Rotation Speed" */
|
|
@@ -3827,14 +3315,10 @@ export interface MakerNotesTags {
|
|
|
3827
3315
|
RFLensType?: string;
|
|
3828
3316
|
/** ☆☆☆☆ ✔ Example: "USA" */
|
|
3829
3317
|
ROMOperationMode?: string;
|
|
3830
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3318
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3831
3319
|
RangeFinder?: string;
|
|
3832
3320
|
/** ☆☆☆☆ ✔ Example: "RAW+Small/Normal" */
|
|
3833
3321
|
RawAndJpgRecording?: string;
|
|
3834
|
-
/** ☆☆☆☆ Example: 0 */
|
|
3835
|
-
RawBurstImageCount?: number;
|
|
3836
|
-
/** ☆☆☆☆ Example: 0 */
|
|
3837
|
-
RawBurstImageNum?: number;
|
|
3838
3322
|
/** ☆☆☆☆ ✔ Example: "Little-endian (Intel, II)" */
|
|
3839
3323
|
RawDataByteOrder?: string;
|
|
3840
3324
|
/** ☆☆☆☆ ✔ Example: "Unchanged" */
|
|
@@ -3889,42 +3373,20 @@ export interface MakerNotesTags {
|
|
|
3889
3373
|
RawDevWhiteBalanceValue?: number;
|
|
3890
3374
|
/** ☆☆☆☆ Example: "9 (Q)" */
|
|
3891
3375
|
RawDevelopmentProcess?: string;
|
|
3892
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3376
|
+
/** ☆☆☆☆ ✔ Example: "3692 2464" */
|
|
3893
3377
|
RawImageCenter?: string;
|
|
3894
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3378
|
+
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
3895
3379
|
RawImageHeight?: number;
|
|
3896
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3380
|
+
/** ☆☆☆☆ ✔ Example: 4952 */
|
|
3897
3381
|
RawImageWidth?: number;
|
|
3898
|
-
/** ☆☆☆☆ Example: 1000 */
|
|
3899
|
-
RawInfoVersion?: number;
|
|
3900
3382
|
/** ☆☆☆☆ ✔ Example: "RAW" */
|
|
3901
3383
|
RawJpgQuality?: string;
|
|
3902
3384
|
/** ☆☆☆☆ ✔ Example: "Large" */
|
|
3903
3385
|
RawJpgSize?: string;
|
|
3904
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3386
|
+
/** ☆☆☆☆ ✔ Example: "95215 190283 189698 116484" */
|
|
3905
3387
|
RawMeasuredRGGB?: string;
|
|
3906
|
-
/** ☆☆☆☆ Example: "Frame Count" */
|
|
3907
|
-
RearControPanelDisplay?: string;
|
|
3908
3388
|
/** ☆☆☆☆ ✔ Example: "ISO" */
|
|
3909
3389
|
RearDisplay?: string;
|
|
3910
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3911
|
-
RecallShootFuncAFAreaMode?: string;
|
|
3912
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3913
|
-
RecallShootFuncAperture?: string;
|
|
3914
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3915
|
-
RecallShootFuncExposureComp?: string;
|
|
3916
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3917
|
-
RecallShootFuncExposureMode?: string;
|
|
3918
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3919
|
-
RecallShootFuncFocusTracking?: string;
|
|
3920
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3921
|
-
RecallShootFuncISO?: string;
|
|
3922
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3923
|
-
RecallShootFuncMeteringMode?: string;
|
|
3924
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3925
|
-
RecallShootFuncShutterSpeed?: string;
|
|
3926
|
-
/** ☆☆☆☆ Example: "On" */
|
|
3927
|
-
RecallShootFuncWhiteBalance?: string;
|
|
3928
3390
|
/** ☆☆☆☆ ✔ Example: "Auto Rotate" */
|
|
3929
3391
|
RecordDisplay?: string;
|
|
3930
3392
|
/** ☆☆☆☆ ✔ Example: 58 */
|
|
@@ -3943,32 +3405,28 @@ export interface MakerNotesTags {
|
|
|
3943
3405
|
RedGain?: string;
|
|
3944
3406
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3945
3407
|
ReleaseButtonToUseDial?: string;
|
|
3946
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (
|
|
3408
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (7)" */
|
|
3947
3409
|
ReleaseMode?: string;
|
|
3948
3410
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3949
3411
|
RemoteFuncButton?: string;
|
|
3950
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3412
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3951
3413
|
RemoteOnDuration?: number;
|
|
3952
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3414
|
+
/** ☆☆☆☆ ✔ Example: 10 */
|
|
3953
3415
|
RepeatingFlashCount?: number;
|
|
3954
|
-
/** ☆☆☆☆ ✔ Example: "1/
|
|
3416
|
+
/** ☆☆☆☆ ✔ Example: "1/32" */
|
|
3955
3417
|
RepeatingFlashOutput?: string;
|
|
3956
3418
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3957
3419
|
RepeatingFlashOutputExternal?: number;
|
|
3958
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3420
|
+
/** ☆☆☆☆ ✔ Example: "10 Hz" */
|
|
3959
3421
|
RepeatingFlashRate?: string;
|
|
3960
3422
|
/** ☆☆☆☆ Example: "No" */
|
|
3961
3423
|
Resaved?: string;
|
|
3962
3424
|
/** ☆☆☆☆ Example: "MED" */
|
|
3963
3425
|
ResolutionMode?: string;
|
|
3964
|
-
/** ☆☆☆☆ ✔ Example: "Flags 0x77" */
|
|
3965
|
-
RestrictDriveModes?: string;
|
|
3966
3426
|
/** ★☆☆☆ ✔ Example: "Unknown ()" */
|
|
3967
3427
|
RetouchHistory?: string;
|
|
3968
3428
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
3969
3429
|
RetouchInfoVersion?: string;
|
|
3970
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3971
|
-
RetouchNEFProcessing?: string;
|
|
3972
3430
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3973
3431
|
RetractLensOnPowerOff?: string;
|
|
3974
3432
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
@@ -4027,18 +3485,8 @@ export interface MakerNotesTags {
|
|
|
4027
3485
|
SaturationAdj?: number;
|
|
4028
3486
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4029
3487
|
SaturationAuto?: number;
|
|
4030
|
-
/** ☆☆☆☆ ✔ Example: 655360 */
|
|
4031
|
-
SaturationFaithful?: number;
|
|
4032
|
-
/** ☆☆☆☆ ✔ Example: 8650752 */
|
|
4033
|
-
SaturationLandscape?: number;
|
|
4034
|
-
/** ☆☆☆☆ ✔ Example: 6619136 */
|
|
4035
|
-
SaturationNeutral?: number;
|
|
4036
|
-
/** ☆☆☆☆ ✔ Example: 6553609 */
|
|
4037
|
-
SaturationPortrait?: number;
|
|
4038
3488
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4039
3489
|
SaturationSetting?: number;
|
|
4040
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4041
|
-
SaturationStandard?: number;
|
|
4042
3490
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4043
3491
|
SaveFocus?: string;
|
|
4044
3492
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -4061,26 +3509,22 @@ export interface MakerNotesTags {
|
|
|
4061
3509
|
SecondarySlotFunction?: string;
|
|
4062
3510
|
/** ☆☆☆☆ ✔ Example: "Unknown (87)" */
|
|
4063
3511
|
SelectAFAreaSelectMode?: string;
|
|
4064
|
-
/** ☆☆☆☆ ✔ Example: "Single-point AF, Zone AF, AF
|
|
3512
|
+
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], [10], [1…" */
|
|
4065
3513
|
SelectAFAreaSelectionMode?: string;
|
|
4066
|
-
/** ☆☆☆☆ ✔ Example: "45 points" */
|
|
4067
|
-
SelectableAFPoint?: string;
|
|
4068
3514
|
/** ★★☆☆ ✔ Example: "Self-timer 5 or 10 s" */
|
|
4069
3515
|
SelfTimer?: string;
|
|
4070
3516
|
/** ☆☆☆☆ ✔ Example: "0.5 s" */
|
|
4071
3517
|
SelfTimerInterval?: string;
|
|
4072
3518
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
4073
3519
|
SelfTimerShotCount?: number;
|
|
4074
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3520
|
+
/** ☆☆☆☆ ✔ Example: "1 s" */
|
|
4075
3521
|
SelfTimerShotInterval?: string;
|
|
4076
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3522
|
+
/** ☆☆☆☆ ✔ Example: "2 s" */
|
|
4077
3523
|
SelfTimerTime?: string;
|
|
4078
3524
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4079
3525
|
SensitivityAdjust?: number;
|
|
4080
3526
|
/** ☆☆☆☆ ✔ Example: "As EV Steps" */
|
|
4081
3527
|
SensitivitySteps?: string;
|
|
4082
|
-
/** ☆☆☆☆ Example: "BACK,ov16860" */
|
|
4083
|
-
Sensor?: string;
|
|
4084
3528
|
/** ☆☆☆☆ Example: 14 */
|
|
4085
3529
|
SensorBitDepth?: number;
|
|
4086
3530
|
/** ☆☆☆☆ ✔ Example: 4214 */
|
|
@@ -4099,7 +3543,7 @@ export interface MakerNotesTags {
|
|
|
4099
3543
|
SensorRedLevel?: number;
|
|
4100
3544
|
/** ☆☆☆☆ ✔ Example: "7.576 x 5.682 mm" */
|
|
4101
3545
|
SensorSize?: string;
|
|
4102
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3546
|
+
/** ☆☆☆☆ ✔ Example: "80.9 C" */
|
|
4103
3547
|
SensorTemperature?: string;
|
|
4104
3548
|
/** ☆☆☆☆ Example: "Standard" */
|
|
4105
3549
|
SensorType?: string;
|
|
@@ -4117,22 +3561,16 @@ export interface MakerNotesTags {
|
|
|
4117
3561
|
SequenceShotInterval?: string;
|
|
4118
3562
|
/** ☆☆☆☆ Example: "Unknown (28928)" */
|
|
4119
3563
|
SequentialShot?: string;
|
|
4120
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4121
|
-
SerialNumberFormat?: string;
|
|
4122
|
-
/** ☆☆☆☆ ✔ Example: "Set: Quality" */
|
|
3564
|
+
/** ☆☆☆☆ ✔ Example: "Set: Picture Style" */
|
|
4123
3565
|
SetButtonCrossKeysFunc?: string;
|
|
4124
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3566
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (37 0)" */
|
|
4125
3567
|
SetButtonWhenShooting?: string;
|
|
4126
|
-
/** ☆☆☆☆ ✔ Example: "Default (no function)" */
|
|
4127
|
-
SetFunctionWhenShooting?: string;
|
|
4128
3568
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4129
3569
|
ShadingCompensation?: string;
|
|
4130
3570
|
/** ☆☆☆☆ Example: 0 */
|
|
4131
3571
|
Shadow?: number;
|
|
4132
3572
|
/** ☆☆☆☆ Example: "On" */
|
|
4133
3573
|
ShadowCorrection?: string;
|
|
4134
|
-
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
4135
|
-
ShadowTone?: string;
|
|
4136
3574
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4137
3575
|
Shadows?: number;
|
|
4138
3576
|
/** ☆☆☆☆ ✔ Example: "On but Disabled" */
|
|
@@ -4141,53 +3579,37 @@ export interface MakerNotesTags {
|
|
|
4141
3579
|
Sharpening?: string;
|
|
4142
3580
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4143
3581
|
SharpnessAuto?: number;
|
|
4144
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3582
|
+
/** ☆☆☆☆ ✔ Example: 768 */
|
|
4145
3583
|
SharpnessFactor?: number;
|
|
4146
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
4147
|
-
SharpnessFaithful?: number;
|
|
4148
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" */
|
|
4149
3585
|
SharpnessFreqTable?: string;
|
|
4150
3586
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4151
3587
|
SharpnessFrequency?: string;
|
|
4152
|
-
/** ☆☆☆☆ ✔ Example: 6 */
|
|
4153
|
-
SharpnessLandscape?: number;
|
|
4154
|
-
/** ☆☆☆☆ ✔ Example: 5 */
|
|
4155
|
-
SharpnessMonochrome?: number;
|
|
4156
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4157
|
-
SharpnessNeutral?: number;
|
|
4158
|
-
/** ☆☆☆☆ ✔ Example: 2752758 */
|
|
4159
|
-
SharpnessPortrait?: number;
|
|
4160
3588
|
/** ☆☆☆☆ ✔ Example: "+3" */
|
|
4161
3589
|
SharpnessRange?: string;
|
|
4162
3590
|
/** ☆☆☆☆ ✔ Example: "3 (min -3, max 5)" */
|
|
4163
3591
|
SharpnessSetting?: string;
|
|
4164
|
-
/** ☆☆☆☆ ✔ Example: 5 */
|
|
4165
|
-
SharpnessStandard?: number;
|
|
4166
3592
|
/** ☆☆☆☆ ✔ Example: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" */
|
|
4167
3593
|
SharpnessTable?: string;
|
|
4168
3594
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4169
3595
|
ShootingInfoDisplay?: string;
|
|
4170
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3596
|
+
/** ☆☆☆☆ ✔ Example: "10 s" */
|
|
4171
3597
|
ShootingInfoMonitorOffTime?: string;
|
|
4172
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3598
|
+
/** ☆☆☆☆ ✔ Example: "Continuous" */
|
|
4173
3599
|
ShootingModeSetting?: string;
|
|
4174
3600
|
/** ☆☆☆☆ ✔ Example: "Itsa Myowna" */
|
|
4175
3601
|
ShortOwnerName?: string;
|
|
4176
3602
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4177
3603
|
ShortReleaseTimeLag?: string;
|
|
4178
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3604
|
+
/** ☆☆☆☆ ✔ Example: "0803" */
|
|
4179
3605
|
ShotInfoVersion?: string;
|
|
4180
3606
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
4181
3607
|
ShotNumberSincePowerUp?: number;
|
|
4182
|
-
/** ☆☆☆☆ Example: 1 */
|
|
4183
|
-
ShotsPerInterval?: number;
|
|
4184
|
-
/** ☆☆☆☆ ✔ Example: "Silent / Electronic (0 0 0)" */
|
|
4185
|
-
Shutter?: string;
|
|
4186
3608
|
/** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
|
|
4187
3609
|
ShutterAELButton?: string;
|
|
4188
3610
|
/** ☆☆☆☆ ✔ Example: "Metering start/Meter + AF start" */
|
|
4189
3611
|
ShutterButtonAFOnButton?: string;
|
|
4190
|
-
/**
|
|
3612
|
+
/** ☆☆☆☆ ✔ Example: 98 */
|
|
4191
3613
|
ShutterCount?: number;
|
|
4192
3614
|
/** ☆☆☆☆ Example: */
|
|
4193
3615
|
ShutterCount2?: number;
|
|
@@ -4195,7 +3617,7 @@ export interface MakerNotesTags {
|
|
|
4195
3617
|
ShutterCount3?: number;
|
|
4196
3618
|
/** ☆☆☆☆ ✔ Example: "2nd-curtain sync" */
|
|
4197
3619
|
ShutterCurtainSync?: string;
|
|
4198
|
-
/**
|
|
3620
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4199
3621
|
ShutterMode?: string;
|
|
4200
3622
|
/** ☆☆☆☆ ✔ Example: "Single Shot" */
|
|
4201
3623
|
ShutterReleaseMethod?: string;
|
|
@@ -4231,8 +3653,6 @@ export interface MakerNotesTags {
|
|
|
4231
3653
|
SmileShutter?: string;
|
|
4232
3654
|
/** ☆☆☆☆ ✔ Example: "Slight Smile" */
|
|
4233
3655
|
SmileShutterMode?: string;
|
|
4234
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4235
|
-
SoftFocusFilter?: string;
|
|
4236
3656
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4237
3657
|
SoftSkinEffect?: string;
|
|
4238
3658
|
/** ☆☆☆☆ ✔ Example: 2021-07-23T16:13:55.000-07:00 */
|
|
@@ -4263,8 +3683,6 @@ export interface MakerNotesTags {
|
|
|
4263
3683
|
SonyModelID?: string;
|
|
4264
3684
|
/** ☆☆☆☆ ✔ Example: "Fine" */
|
|
4265
3685
|
SonyQuality?: string;
|
|
4266
|
-
/** ☆☆☆☆ ✔ Example: "48:36" */
|
|
4267
|
-
SonyTimeMinSec?: string;
|
|
4268
3686
|
/** ☆☆☆☆ Example: 100 */
|
|
4269
3687
|
SourceDirectoryIndex?: number;
|
|
4270
3688
|
/** ☆☆☆☆ Example: 60 */
|
|
@@ -4279,7 +3697,7 @@ export interface MakerNotesTags {
|
|
|
4279
3697
|
SpecialMode?: string;
|
|
4280
3698
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
4281
3699
|
SpecularWhiteLevel?: number;
|
|
4282
|
-
/** ☆☆☆☆ Example: "+0.
|
|
3700
|
+
/** ☆☆☆☆ Example: "+0.10" */
|
|
4283
3701
|
SpeedX?: string;
|
|
4284
3702
|
/** ☆☆☆☆ Example: "+6.10" */
|
|
4285
3703
|
SpeedY?: string;
|
|
@@ -4291,35 +3709,29 @@ export interface MakerNotesTags {
|
|
|
4291
3709
|
SpotFocusPointY?: number;
|
|
4292
3710
|
/** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
|
|
4293
3711
|
SpotMeterLinkToAFPoint?: string;
|
|
4294
|
-
/** ★☆☆☆ ✔ Example: "Center" */
|
|
4295
|
-
SpotMeteringMode?: string;
|
|
4296
3712
|
/** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
|
|
4297
3713
|
StackedImage?: string;
|
|
4298
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3714
|
+
/** ☆☆☆☆ ✔ Example: "30 s" */
|
|
4299
3715
|
StandbyMonitorOffTime?: string;
|
|
4300
3716
|
/** ☆☆☆☆ ✔ Example: "6 s" */
|
|
4301
3717
|
StandbyTimer?: string;
|
|
4302
3718
|
/** ☆☆☆☆ ✔ Example: "Default (from LV)" */
|
|
4303
3719
|
StartMovieShooting?: string;
|
|
4304
|
-
/** ☆☆☆☆ ✔ Example: "MIDDLESEX" */
|
|
4305
|
-
State?: string;
|
|
4306
3720
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
4307
3721
|
StopsAboveBaseISO?: number;
|
|
4308
3722
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4309
3723
|
StoreByOrientation?: string;
|
|
4310
3724
|
/** ☆☆☆☆ ✔ Example: "10 Frames" */
|
|
4311
3725
|
SubDialFrameAdvance?: string;
|
|
4312
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3726
|
+
/** ☆☆☆☆ ✔ Example: "Focus Point Selection" */
|
|
4313
3727
|
SubSelector?: string;
|
|
4314
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3728
|
+
/** ☆☆☆☆ ✔ Example: "Focus Point Selection" */
|
|
4315
3729
|
SubSelectorAssignment?: string;
|
|
4316
3730
|
/** ☆☆☆☆ ✔ Example: "Virtual Horizon" */
|
|
4317
3731
|
SubSelectorCenter?: string;
|
|
4318
3732
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4319
3733
|
SubSelectorPlusDials?: string;
|
|
4320
|
-
/** ☆☆☆☆
|
|
4321
|
-
SubjectDetection?: string;
|
|
4322
|
-
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
3734
|
+
/** ☆☆☆☆ ✔ Example: "Middle" */
|
|
4323
3735
|
SubjectMotion?: string;
|
|
4324
3736
|
/** ☆☆☆☆ Example: "None" */
|
|
4325
3737
|
SubjectProgram?: string;
|
|
@@ -4335,7 +3747,7 @@ export interface MakerNotesTags {
|
|
|
4335
3747
|
SweepPanoramaFieldOfView?: number;
|
|
4336
3748
|
/** ☆☆☆☆ ✔ Example: "Wide" */
|
|
4337
3749
|
SweepPanoramaSize?: string;
|
|
4338
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3750
|
+
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
4339
3751
|
SwitchToRegisteredAFPoint?: string;
|
|
4340
3752
|
/** ☆☆☆☆ ✔ Example: "Sync" */
|
|
4341
3753
|
SyncReleaseMode?: string;
|
|
@@ -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,9 +3789,9 @@ export interface MakerNotesTags {
|
|
|
4375
3789
|
TimeLapseShotNumber?: number;
|
|
4376
3790
|
/** ☆☆☆☆ ✔ Example: 01:48:53.630 */
|
|
4377
3791
|
TimeSincePowerOn?: ExifTime | string;
|
|
4378
|
-
/** ☆☆☆☆ ✔ Example: 2021-
|
|
3792
|
+
/** ☆☆☆☆ ✔ Example: 2021-02-22T12:45:11.000Z */
|
|
4379
3793
|
TimeStamp?: ExifDateTime | string;
|
|
4380
|
-
/**
|
|
3794
|
+
/** ☆☆☆☆ ✔ Example: "-09:00" */
|
|
4381
3795
|
TimeZone?: string;
|
|
4382
3796
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4383
3797
|
TimeZoneCity?: string;
|
|
@@ -4385,9 +3799,9 @@ export interface MakerNotesTags {
|
|
|
4385
3799
|
TimeZoneCode?: number;
|
|
4386
3800
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4387
3801
|
TimeZoneInfo?: number;
|
|
4388
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3802
|
+
/** ☆☆☆☆ ✔ Example: "Self-timer" */
|
|
4389
3803
|
TimerFunctionButton?: string;
|
|
4390
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3804
|
+
/** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
|
|
4391
3805
|
TimerLength?: string;
|
|
4392
3806
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4393
3807
|
TimerRecording?: string;
|
|
@@ -4407,16 +3821,12 @@ export interface MakerNotesTags {
|
|
|
4407
3821
|
ToningEffect?: string;
|
|
4408
3822
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4409
3823
|
ToningEffectAuto?: string;
|
|
4410
|
-
/** ☆☆☆☆ ✔ Example: "Sepia" */
|
|
4411
|
-
ToningEffectMonochrome?: string;
|
|
4412
3824
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4413
3825
|
ToningSaturation?: string;
|
|
4414
3826
|
/** ☆☆☆☆ Example: 5 */
|
|
4415
3827
|
TotalZoom?: number;
|
|
4416
3828
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4417
3829
|
TouchAE?: string;
|
|
4418
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4419
|
-
ToyCameraFilter?: string;
|
|
4420
3830
|
/** ☆☆☆☆ Example: "Off" */
|
|
4421
3831
|
Transform?: string;
|
|
4422
3832
|
/** ☆☆☆☆ ✔ Example: "Normal (set center AF point)" */
|
|
@@ -4435,25 +3845,13 @@ export interface MakerNotesTags {
|
|
|
4435
3845
|
UniqueID?: string;
|
|
4436
3846
|
/** ☆☆☆☆ Example: "ZME151000007" */
|
|
4437
3847
|
UnknownNumber?: string;
|
|
4438
|
-
/** ☆☆☆☆ Example: 0 */
|
|
4439
|
-
UnsharpCount?: number;
|
|
4440
|
-
/** ☆☆☆☆ Example: "On" */
|
|
4441
|
-
UnsharpMask?: string;
|
|
4442
3848
|
/** ☆☆☆☆ ✔ Example: "Flags 0xf0" */
|
|
4443
3849
|
UsableMeteringModes?: string;
|
|
4444
|
-
/** ☆☆☆☆ ✔ Example: "Flags
|
|
3850
|
+
/** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
|
|
4445
3851
|
UsableShootingModes?: string;
|
|
4446
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4447
|
-
UserDef1PictureStyle?: string;
|
|
4448
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4449
|
-
UserDef2PictureStyle?: string;
|
|
4450
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4451
|
-
UserDef3PictureStyle?: string;
|
|
4452
3852
|
/** ☆☆☆☆ Example: "PC900 COVERT PRO" */
|
|
4453
3853
|
UserLabel?: string;
|
|
4454
|
-
/** ☆☆☆☆
|
|
4455
|
-
UserProfile?: string;
|
|
4456
|
-
/** ☆☆☆☆ ✔ Example: "Enable; Non-illuminated" */
|
|
3854
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4457
3855
|
VFDisplayIllumination?: string;
|
|
4458
3856
|
/** ★☆☆☆ ✔ Example: 0 */
|
|
4459
3857
|
VRDOffset?: number;
|
|
@@ -4461,30 +3859,20 @@ export interface MakerNotesTags {
|
|
|
4461
3859
|
VRInfoVersion?: string;
|
|
4462
3860
|
/** ☆☆☆☆ ✔ Example: "Sport" */
|
|
4463
3861
|
VRMode?: string;
|
|
4464
|
-
/** ★★☆☆ ✔ Example: 99 */
|
|
4465
|
-
ValidAFPoints?: number;
|
|
4466
3862
|
/** ☆☆☆☆ ✔ Example: "12 0" */
|
|
4467
3863
|
ValidBits?: string;
|
|
4468
|
-
/** ☆☆☆☆ Example: "12 0" */
|
|
4469
|
-
ValidPixelDepth?: string;
|
|
4470
|
-
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
4471
|
-
VariProgram?: string;
|
|
4472
3864
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4473
3865
|
VariableLowPassFilter?: string;
|
|
4474
3866
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
|
|
4475
3867
|
VerticalAFOnButton?: string;
|
|
4476
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3868
|
+
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
4477
3869
|
VerticalFuncButton?: string;
|
|
4478
3870
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4479
3871
|
VerticalFuncButtonPlusDials?: string;
|
|
4480
|
-
/** ☆☆☆☆ Example: "None" */
|
|
4481
|
-
VerticalFuncPlusDials?: string;
|
|
4482
3872
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On" */
|
|
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" */
|
|
@@ -4493,7 +3881,7 @@ export interface MakerNotesTags {
|
|
|
4493
3881
|
VideoBurstResolution?: string;
|
|
4494
3882
|
/** ☆☆☆☆ Example: "No" */
|
|
4495
3883
|
VideoPreburst?: string;
|
|
4496
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3884
|
+
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
4497
3885
|
ViewInfoDuringExposure?: string;
|
|
4498
3886
|
/** ☆☆☆☆ ✔ Example: "Frame Count" */
|
|
4499
3887
|
ViewfinderDisplay?: string;
|
|
@@ -4525,40 +3913,36 @@ export interface MakerNotesTags {
|
|
|
4525
3913
|
WBMediaImageSizeSetting?: string;
|
|
4526
3914
|
/** ☆☆☆☆ ✔ Example: "Unknown (1 1)" */
|
|
4527
3915
|
WBMode?: string;
|
|
4528
|
-
/**
|
|
3916
|
+
/** ☆☆☆☆ ✔ Example: 7 */
|
|
4529
3917
|
WBShiftAB?: number;
|
|
4530
3918
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4531
3919
|
WBShiftCreativeControl?: number;
|
|
4532
|
-
/**
|
|
3920
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4533
3921
|
WBShiftGM?: number;
|
|
4534
3922
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4535
3923
|
WBShiftIntelligentAuto?: number;
|
|
4536
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4537
|
-
WatercolorFilter?: string;
|
|
4538
3924
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4539
3925
|
WhiteBalanceAutoAdjustment?: string;
|
|
4540
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3926
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4541
3927
|
WhiteBalanceBias?: number;
|
|
4542
3928
|
/** ☆☆☆☆ ✔ Example: 796 */
|
|
4543
3929
|
WhiteBalanceBlue?: number;
|
|
4544
|
-
/** ★☆☆☆ ✔ Example: "
|
|
3930
|
+
/** ★☆☆☆ ✔ Example: "0 0" */
|
|
4545
3931
|
WhiteBalanceBracket?: string;
|
|
4546
3932
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4547
3933
|
WhiteBalanceBracketing?: string;
|
|
4548
|
-
/**
|
|
4549
|
-
|
|
4550
|
-
/** ★☆☆☆ ✔ Example: "Red -80, Blue -80" */
|
|
4551
|
-
WhiteBalanceFineTune?: string;
|
|
3934
|
+
/** ★☆☆☆ ✔ Example: 3 */
|
|
3935
|
+
WhiteBalanceFineTune?: number;
|
|
4552
3936
|
/** ☆☆☆☆ ✔ 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" */
|
|
4553
3937
|
WhiteBalanceMatching?: string;
|
|
4554
3938
|
/** ☆☆☆☆ ✔ Example: "User-Selected" */
|
|
4555
3939
|
WhiteBalanceMode?: string;
|
|
4556
3940
|
/** ☆☆☆☆ ✔ Example: 642 */
|
|
4557
3941
|
WhiteBalanceRed?: number;
|
|
3942
|
+
/** ☆☆☆☆ ✔ Example: "Tungsten" */
|
|
3943
|
+
WhiteBalanceSet?: string;
|
|
4558
3944
|
/** ☆☆☆☆ ✔ Example: "Custom 1" */
|
|
4559
3945
|
WhiteBalanceSetting?: string;
|
|
4560
|
-
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
4561
|
-
WhiteBalanceSetup?: string;
|
|
4562
3946
|
/** ☆☆☆☆ ✔ Example: "(Binary data 2217 bytes, use -b option to extract)" */
|
|
4563
3947
|
WhiteBalanceTable?: string;
|
|
4564
3948
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
@@ -4575,9 +3959,11 @@ export interface MakerNotesTags {
|
|
|
4575
3959
|
WorldTimeLocation?: string;
|
|
4576
3960
|
/** ☆☆☆☆ Example: 0.2 */
|
|
4577
3961
|
X3FillLight?: number;
|
|
4578
|
-
/** ☆☆☆☆
|
|
4579
|
-
|
|
4580
|
-
/** ☆☆☆☆
|
|
3962
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (512)" */
|
|
3963
|
+
YCbCrPositioning?: string;
|
|
3964
|
+
/** ☆☆☆☆ Example: -96.7 */
|
|
3965
|
+
Yaw?: number;
|
|
3966
|
+
/** ☆☆☆☆ ✔ Example: 91.6 */
|
|
4581
3967
|
YawAngle?: number;
|
|
4582
3968
|
/** ☆☆☆☆ Example: 2006 */
|
|
4583
3969
|
YearCreated?: number;
|
|
@@ -4607,7 +3993,7 @@ export interface MakerNotesTags {
|
|
|
4607
3993
|
export interface XMPTags {
|
|
4608
3994
|
/** ☆☆☆☆ ✔ Example: "uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b" */
|
|
4609
3995
|
About?: string;
|
|
4610
|
-
/** ☆☆☆☆ Example: "+
|
|
3996
|
+
/** ☆☆☆☆ Example: "+823.75" */
|
|
4611
3997
|
AbsoluteAltitude?: string;
|
|
4612
3998
|
/** ☆☆☆☆ ✔ Example: true */
|
|
4613
3999
|
AlreadyApplied?: boolean;
|
|
@@ -4627,7 +4013,7 @@ export interface XMPTags {
|
|
|
4627
4013
|
AutoLateralCA?: number;
|
|
4628
4014
|
/** ☆☆☆☆ ✔ Example: "portraiteffectsmatte" */
|
|
4629
4015
|
AuxiliaryImageSubType?: string;
|
|
4630
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4016
|
+
/** ☆☆☆☆ ✔ Example: "depth" */
|
|
4631
4017
|
AuxiliaryImageType?: string;
|
|
4632
4018
|
/** ☆☆☆☆ Example: ["LWIR"] */
|
|
4633
4019
|
BandName?: string[];
|
|
@@ -4645,18 +4031,14 @@ export interface XMPTags {
|
|
|
4645
4031
|
CameraBurstID?: string;
|
|
4646
4032
|
/** ☆☆☆☆ Example: "Front" */
|
|
4647
4033
|
CameraFacing?: string;
|
|
4648
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
4649
|
-
CameraModelID?: string;
|
|
4650
4034
|
/** ☆☆☆☆ ✔ Example: "Embedded" */
|
|
4651
4035
|
CameraProfile?: string;
|
|
4652
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4036
|
+
/** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
|
|
4653
4037
|
CameraProfileDigest?: string;
|
|
4654
4038
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4655
4039
|
CameraUnit?: string;
|
|
4656
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4040
|
+
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","DepthURI"… */
|
|
4657
4041
|
Cameras?: Struct[];
|
|
4658
|
-
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4659
|
-
CaptureMode?: string;
|
|
4660
4042
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
4661
4043
|
CaptureSoftware?: string;
|
|
4662
4044
|
/** ☆☆☆☆ ✔ Example: ["Subjekt|Natur|Pflanzen","Ort|Deutschland|Rangsdorf"] */
|
|
@@ -4673,17 +4055,13 @@ export interface XMPTags {
|
|
|
4673
4055
|
CentralWavelength?: number[];
|
|
4674
4056
|
/** ☆☆☆☆ ✔ Example: ["tag,2011-07-26T05:44:01Z,0,c"] */
|
|
4675
4057
|
Changes?: string[];
|
|
4676
|
-
/** ☆☆☆☆ Example: 0 */
|
|
4677
|
-
ChromaticAberrationB?: number;
|
|
4678
|
-
/** ☆☆☆☆ Example: 0 */
|
|
4679
|
-
ChromaticAberrationR?: number;
|
|
4680
4058
|
/** ☆☆☆☆ ✔ Example: [{"CorrectionActive":true,"CorrectionAmount":1,"CorrectionMasks"… */
|
|
4681
4059
|
CircularGradientBasedCorrections?: Struct[];
|
|
4682
4060
|
/** ☆☆☆☆ ✔ Example: "3 (Superior)" */
|
|
4683
4061
|
ColorClass?: string;
|
|
4684
4062
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4685
4063
|
ColorLabel?: number;
|
|
4686
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4064
|
+
/** ☆☆☆☆ ✔ Example: 25 */
|
|
4687
4065
|
ColorNoiseReduction?: number;
|
|
4688
4066
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4689
4067
|
ColorNoiseReductionDetail?: number;
|
|
@@ -4691,7 +4069,7 @@ export interface XMPTags {
|
|
|
4691
4069
|
ColorNoiseReductionSmoothness?: number;
|
|
4692
4070
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4693
4071
|
Colorlabels?: string;
|
|
4694
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"
|
|
4072
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime":"imag… */
|
|
4695
4073
|
Container?: Struct;
|
|
4696
4074
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4697
4075
|
ConvertToGrayscale?: boolean;
|
|
@@ -4711,8 +4089,12 @@ export interface XMPTags {
|
|
|
4711
4089
|
Creatortool?: string;
|
|
4712
4090
|
/** ☆☆☆☆ Example: 0 */
|
|
4713
4091
|
CropAngle?: number;
|
|
4092
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4093
|
+
CropBottom?: number;
|
|
4714
4094
|
/** ☆☆☆☆ Example: 0 */
|
|
4715
4095
|
CropConstrainToWarp?: number;
|
|
4096
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4097
|
+
CropRight?: number;
|
|
4716
4098
|
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4717
4099
|
CroppedAreaImageHeightPixels?: number;
|
|
4718
4100
|
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
@@ -4721,13 +4103,11 @@ export interface XMPTags {
|
|
|
4721
4103
|
CroppedAreaLeftPixels?: number;
|
|
4722
4104
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4723
4105
|
CroppedAreaTopPixels?: number;
|
|
4724
|
-
/** ☆☆☆☆ Example: 273.01282 */
|
|
4725
|
-
DataTimestamp?: number;
|
|
4726
4106
|
/** ☆☆☆☆ ✔ Example: 2014-05-11T13:08:25.659-04:00 */
|
|
4727
4107
|
DateAcquired?: ExifDateTime | string;
|
|
4728
4108
|
/** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
|
|
4729
4109
|
DateTime?: ExifDateTime | string;
|
|
4730
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4110
|
+
/** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
|
|
4731
4111
|
DateTimeDigitized?: ExifDateTime | string;
|
|
4732
4112
|
/** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000Z */
|
|
4733
4113
|
DateUTC?: ExifDateTime | string;
|
|
@@ -4737,7 +4117,7 @@ export interface XMPTags {
|
|
|
4737
4117
|
DefringeGreenHueHi?: number;
|
|
4738
4118
|
/** ☆☆☆☆ ✔ Example: 40 */
|
|
4739
4119
|
DefringeGreenHueLo?: number;
|
|
4740
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4120
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4741
4121
|
DefringePurpleAmount?: number;
|
|
4742
4122
|
/** ☆☆☆☆ ✔ Example: 70 */
|
|
4743
4123
|
DefringePurpleHueHi?: number;
|
|
@@ -4745,30 +4125,30 @@ export interface XMPTags {
|
|
|
4745
4125
|
DefringePurpleHueLo?: number;
|
|
4746
4126
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4747
4127
|
Dehaze?: number;
|
|
4748
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4749
|
-
DerivedFrom?:
|
|
4128
|
+
/** ☆☆☆☆ ✔ Example: */
|
|
4129
|
+
DerivedFrom?: string;
|
|
4750
4130
|
/** ☆☆☆☆ ✔ Example: "nfd" */
|
|
4751
4131
|
Description?: string;
|
|
4752
4132
|
/** ☆☆☆☆ ✔ Example: ["Animation","Collage"] */
|
|
4753
4133
|
DisableAutoCreation?: string[];
|
|
4754
|
-
/** ☆☆☆☆ ✔ Example: "xmp.did:
|
|
4134
|
+
/** ☆☆☆☆ ✔ Example: "xmp.did:7bf80ec8-c5cf-4881-b631-5ac83ae65ce2" */
|
|
4755
4135
|
DocumentID?: string;
|
|
4136
|
+
/** ☆☆☆☆ ✔ Example: "Exif Version 2.2" */
|
|
4137
|
+
ExifVersion?: string;
|
|
4138
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4139
|
+
Firmware?: number;
|
|
4756
4140
|
/** ☆☆☆☆ ✔ Example: "Example flash make" */
|
|
4757
4141
|
FlashManufacturer?: string;
|
|
4758
4142
|
/** ☆☆☆☆ ✔ Example: "FlashPix Version 1.0" */
|
|
4759
4143
|
FlashPixVersion?: string;
|
|
4144
|
+
/** ☆☆☆☆ Example: "0100" */
|
|
4145
|
+
FlashpixVersion?: string;
|
|
4760
4146
|
/** ☆☆☆☆ Example: 3.8 */
|
|
4761
4147
|
FlightPitchDegree?: number;
|
|
4762
4148
|
/** ☆☆☆☆ Example: 4.5 */
|
|
4763
4149
|
FlightRollDegree?: number;
|
|
4764
|
-
/** ☆☆☆☆ Example:
|
|
4765
|
-
|
|
4766
|
-
/** ☆☆☆☆ Example: "+0.00" */
|
|
4767
|
-
FlightYSpeed?: string;
|
|
4768
|
-
/** ☆☆☆☆ Example: "+89.40" */
|
|
4769
|
-
FlightYawDegree?: string;
|
|
4770
|
-
/** ☆☆☆☆ Example: */
|
|
4771
|
-
FlightZSpeed?: string;
|
|
4150
|
+
/** ☆☆☆☆ Example: 88.699997 */
|
|
4151
|
+
FlightYawDegree?: number;
|
|
4772
4152
|
/** ☆☆☆☆ Example: 4681071 */
|
|
4773
4153
|
FocusAreaHeight?: number;
|
|
4774
4154
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -4783,14 +4163,14 @@ export interface XMPTags {
|
|
|
4783
4163
|
FocusPosY?: number;
|
|
4784
4164
|
/** ☆☆☆☆ Example: "Inactive" */
|
|
4785
4165
|
FocusState?: string;
|
|
4786
|
-
/** ☆☆☆☆ ✔ Example: "image/
|
|
4166
|
+
/** ☆☆☆☆ ✔ Example: "image/jpg" */
|
|
4787
4167
|
Format?: string;
|
|
4788
|
-
/** ☆☆☆☆ Example: 273.01444 */
|
|
4789
|
-
FrameTimestamp?: number;
|
|
4790
4168
|
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4791
4169
|
FullPanoHeightPixels?: number;
|
|
4792
4170
|
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
4793
4171
|
FullPanoWidthPixels?: number;
|
|
4172
|
+
/** ☆☆☆☆ ✔ Example: "2.2.0.0" */
|
|
4173
|
+
GPSVersionID?: string;
|
|
4794
4174
|
/** ☆☆☆☆ Example: -90 */
|
|
4795
4175
|
GimbalPitchDegree?: number;
|
|
4796
4176
|
/** ☆☆☆☆ Example: 0 */
|
|
@@ -4807,7 +4187,7 @@ export interface XMPTags {
|
|
|
4807
4187
|
GreenSaturation?: number;
|
|
4808
4188
|
/** ☆☆☆☆ ✔ Example: "(Binary data 53037 bytes, use -b option to extract)" */
|
|
4809
4189
|
HDRPMakerNote?: string;
|
|
4810
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4190
|
+
/** ☆☆☆☆ ✔ Example: false */
|
|
4811
4191
|
HasCrop?: boolean;
|
|
4812
4192
|
/** ☆☆☆☆ ✔ Example: "D1C7077D72112BA2E3FD1FDA7BCC2F0C" */
|
|
4813
4193
|
HasExtendedXMP?: string;
|
|
@@ -4816,7 +4196,7 @@ export interface XMPTags {
|
|
|
4816
4196
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4817
4197
|
HierarchicalSubject?: string[];
|
|
4818
4198
|
/** ☆☆☆☆ ✔ Example: [{"Action":"converted","Parameters":"from image/x-canon-cr2 to i… */
|
|
4819
|
-
History?:
|
|
4199
|
+
History?: ResourceEvent[] | ResourceEvent | string;
|
|
4820
4200
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4821
4201
|
HueAdjustmentAqua?: number;
|
|
4822
4202
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4843,20 +4223,12 @@ export interface XMPTags {
|
|
|
4843
4223
|
InitialViewRollDegrees?: number;
|
|
4844
4224
|
/** ☆☆☆☆ ✔ Example: "xmp.iid:f9edd04d-34a3-41cc-909f-5a49fc5b8154" */
|
|
4845
4225
|
InstanceID?: string;
|
|
4846
|
-
/** ☆☆☆☆ Example: 10107.684 */
|
|
4847
|
-
IntegratedGyroX?: number;
|
|
4848
|
-
/** ☆☆☆☆ Example: -5432.3525 */
|
|
4849
|
-
IntegratedGyroY?: number;
|
|
4850
|
-
/** ☆☆☆☆ Example: -5771.0996 */
|
|
4851
|
-
IntegratedGyroZ?: number;
|
|
4852
4226
|
/** ☆☆☆☆ ✔ Example: "N" */
|
|
4853
4227
|
InteroperabilityIndex?: string;
|
|
4854
4228
|
/** ☆☆☆☆ ✔ Example: "18, 25, 24.96" */
|
|
4855
4229
|
InteroperabilityVersion?: string;
|
|
4856
4230
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4857
4231
|
IsBokehActive?: boolean;
|
|
4858
|
-
/** ☆☆☆☆ ✔ Example: true */
|
|
4859
|
-
IsHDRActive?: boolean;
|
|
4860
4232
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4861
4233
|
IsNightModeActive?: boolean;
|
|
4862
4234
|
/** ☆☆☆☆ ✔ Example: "選択" */
|
|
@@ -4865,24 +4237,14 @@ export interface XMPTags {
|
|
|
4865
4237
|
LastKeywordXMP?: string[];
|
|
4866
4238
|
/** ☆☆☆☆ ✔ Example: "F351B7C76CEF50C906DB9B78A92FB1B4" */
|
|
4867
4239
|
LegacyIPTCDigest?: string;
|
|
4868
|
-
/** ☆☆☆☆ ✔ Example: "Back" */
|
|
4869
|
-
LensFacing?: string;
|
|
4870
4240
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4871
4241
|
LensManualDistortionAmount?: number;
|
|
4872
4242
|
/** ☆☆☆☆ ✔ Example: "Example lens make" */
|
|
4873
4243
|
LensManufacturer?: string;
|
|
4874
|
-
/** ☆☆☆☆ Example: "1FCE420A790ADDB565D479EE73A4C0F0" */
|
|
4875
|
-
LensProfileDigest?: string;
|
|
4876
|
-
/** ☆☆☆☆ Example: 100 */
|
|
4877
|
-
LensProfileDistortionScale?: number;
|
|
4878
4244
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4879
4245
|
LensProfileEnable?: number;
|
|
4880
|
-
/** ☆☆☆☆ Example: "Camera Settings" */
|
|
4881
|
-
LensProfileName?: string;
|
|
4882
4246
|
/** ☆☆☆☆ ✔ Example: "LensDefaults" */
|
|
4883
4247
|
LensProfileSetup?: string;
|
|
4884
|
-
/** ☆☆☆☆ Example: 100 */
|
|
4885
|
-
LensProfileVignettingScale?: number;
|
|
4886
4248
|
/** ☆☆☆☆ Example: 37087 */
|
|
4887
4249
|
LocationAreaCode?: number;
|
|
4888
4250
|
/** ☆☆☆☆ ✔ Example: {"Amount":1,"Group":"Profiles","Name":"Adobe Color","Parameters"… */
|
|
@@ -4903,11 +4265,7 @@ export interface XMPTags {
|
|
|
4903
4265
|
LuminanceAdjustmentRed?: number;
|
|
4904
4266
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4905
4267
|
LuminanceAdjustmentYellow?: number;
|
|
4906
|
-
/** ☆☆☆☆
|
|
4907
|
-
LuminanceNoiseReductionContrast?: number;
|
|
4908
|
-
/** ☆☆☆☆ Example: 75 */
|
|
4909
|
-
LuminanceNoiseReductionDetail?: number;
|
|
4910
|
-
/** ☆☆☆☆ ✔ Example: 47 */
|
|
4268
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4911
4269
|
LuminanceSmoothing?: number;
|
|
4912
4270
|
/** ☆☆☆☆ ✔ Example: "4577 bytes undefined data" */
|
|
4913
4271
|
MakerNote?: string;
|
|
@@ -4977,8 +4335,6 @@ export interface XMPTags {
|
|
|
4977
4335
|
PhotographicSensitivity?: number;
|
|
4978
4336
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4979
4337
|
PickLabel?: number;
|
|
4980
|
-
/** ☆☆☆☆ ✔ Example: "01.00" */
|
|
4981
|
-
PipelineVersion?: string;
|
|
4982
4338
|
/** ☆☆☆☆ ✔ Example: 65537 */
|
|
4983
4339
|
PortraitEffectsMatteVersion?: number;
|
|
4984
4340
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4993,9 +4349,9 @@ export interface XMPTags {
|
|
|
4993
4349
|
PostCropVignetteAmount?: number;
|
|
4994
4350
|
/** ☆☆☆☆ ✔ Example: "DSCF0722.JPG" */
|
|
4995
4351
|
PreservedFileName?: string;
|
|
4996
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4352
|
+
/** ☆☆☆☆ ✔ Example: 11 */
|
|
4997
4353
|
ProcessVersion?: number;
|
|
4998
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4354
|
+
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4999
4355
|
Profiles?: Struct[];
|
|
5000
4356
|
/** ☆☆☆☆ ✔ Example: "equirectangular" */
|
|
5001
4357
|
ProjectionType?: string;
|
|
@@ -5011,12 +4367,10 @@ export interface XMPTags {
|
|
|
5011
4367
|
RegionInfoMP?: Struct;
|
|
5012
4368
|
/** ☆☆☆☆ ✔ Example: [{"RegItemId":"Number1","RegOrgId":"TestName1"},{"RegItemId":"Nu… */
|
|
5013
4369
|
RegistryID?: Struct[];
|
|
5014
|
-
/** ☆☆☆☆ Example: "+
|
|
4370
|
+
/** ☆☆☆☆ Example: "+90.80" */
|
|
5015
4371
|
RelativeAltitude?: string;
|
|
5016
4372
|
/** ☆☆☆☆ ✔ Example: "james robinson taylor" */
|
|
5017
4373
|
Rights?: string;
|
|
5018
|
-
/** ☆☆☆☆ Example: 0 */
|
|
5019
|
-
RtkFlag?: number;
|
|
5020
4374
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5021
4375
|
SaturationAdjustmentAqua?: number;
|
|
5022
4376
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -5033,8 +4387,6 @@ export interface XMPTags {
|
|
|
5033
4387
|
SaturationAdjustmentRed?: number;
|
|
5034
4388
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5035
4389
|
SaturationAdjustmentYellow?: number;
|
|
5036
|
-
/** ☆☆☆☆ ✔ Example: "AutoHDR" */
|
|
5037
|
-
Scene?: string;
|
|
5038
4390
|
/** ☆☆☆☆ ✔ Example: "[0.997883, 0.92984027]" */
|
|
5039
4391
|
SceneDetectResultConfidences?: string;
|
|
5040
4392
|
/** ☆☆☆☆ ✔ Example: "[901, 60, 0]" */
|
|
@@ -5045,12 +4397,12 @@ export interface XMPTags {
|
|
|
5045
4397
|
SemanticSegmentationMatteVersion?: number;
|
|
5046
4398
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5047
4399
|
ShadowTint?: number;
|
|
5048
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4400
|
+
/** ☆☆☆☆ ✔ Example: 25 */
|
|
5049
4401
|
SharpenDetail?: number;
|
|
5050
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4402
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5051
4403
|
SharpenEdgeMasking?: number;
|
|
5052
|
-
/** ☆☆☆☆ ✔ Example:
|
|
5053
|
-
SharpenRadius?:
|
|
4404
|
+
/** ☆☆☆☆ ✔ Example: "+1.0" */
|
|
4405
|
+
SharpenRadius?: string;
|
|
5054
4406
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
5055
4407
|
SourcePhotosCount?: number;
|
|
5056
4408
|
/** ☆☆☆☆ ✔ Example: ["com.google.android.apps.camera.gallery.specialtype.SpecialType… */
|
|
@@ -5065,6 +4417,8 @@ export interface XMPTags {
|
|
|
5065
4417
|
SplitToningShadowHue?: number;
|
|
5066
4418
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5067
4419
|
SplitToningShadowSaturation?: number;
|
|
4420
|
+
/** ☆☆☆☆ Example: "Washington" */
|
|
4421
|
+
State?: string;
|
|
5068
4422
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
5069
4423
|
StitchingSoftware?: string;
|
|
5070
4424
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
@@ -5077,9 +4431,7 @@ export interface XMPTags {
|
|
|
5077
4431
|
Tagged?: string;
|
|
5078
4432
|
/** ☆☆☆☆ ✔ Example: ["Subjekt/Natur/Pflanzen","Ort/Deutschland/Rangsdorf"] */
|
|
5079
4433
|
TagsList?: string[];
|
|
5080
|
-
/** ☆☆☆☆
|
|
5081
|
-
Texture?: number;
|
|
5082
|
-
/** ☆☆☆☆ ✔ Example: "+56" */
|
|
4434
|
+
/** ☆☆☆☆ ✔ Example: "+5" */
|
|
5083
4435
|
Tint?: string;
|
|
5084
4436
|
/** ☆☆☆☆ Example: 0 */
|
|
5085
4437
|
TlinearGain?: number;
|
|
@@ -5101,7 +4453,7 @@ export interface XMPTags {
|
|
|
5101
4453
|
ToneMapStrength?: number;
|
|
5102
4454
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
5103
4455
|
UprightCenterMode?: number;
|
|
5104
|
-
/** ☆☆☆☆ ✔ Example: 0.
|
|
4456
|
+
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
5105
4457
|
UprightCenterNormX?: number;
|
|
5106
4458
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
5107
4459
|
UprightCenterNormY?: number;
|
|
@@ -5119,6 +4471,8 @@ export interface XMPTags {
|
|
|
5119
4471
|
UprightVersion?: number;
|
|
5120
4472
|
/** ☆☆☆☆ ✔ Example: true */
|
|
5121
4473
|
UsePanoramaViewer?: boolean;
|
|
4474
|
+
/** ☆☆☆☆ Example: */
|
|
4475
|
+
Versions?: Version[] | Version | string;
|
|
5122
4476
|
/** ☆☆☆☆ ✔ Example: "+21" */
|
|
5123
4477
|
Vibrance?: string;
|
|
5124
4478
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -5140,8 +4494,8 @@ export interface XMPTags {
|
|
|
5140
4494
|
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
5141
4495
|
* popularity ratings.
|
|
5142
4496
|
*
|
|
5143
|
-
* Autogenerated by "yarn mktags" by ExifTool 12.40 on
|
|
5144
|
-
*
|
|
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.
|
|
5145
4499
|
*/
|
|
5146
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 {
|
|
5147
4501
|
errors?: string[];
|