exiftool-vendored 28.4.1 → 28.6.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 +12 -0
- package/README.md +20 -18
- package/dist/DefaultExifToolOptions.js +1 -0
- package/dist/DefaultExifToolOptions.js.map +1 -1
- package/dist/ExifTool.d.ts +3 -2
- package/dist/ExifTool.js +2 -1
- package/dist/ExifTool.js.map +1 -1
- package/dist/ExifToolOptions.d.ts +11 -0
- package/dist/ExifToolOptions.js.map +1 -1
- package/dist/GeolocationTags.d.ts +1 -1
- package/dist/GeolocationTags.js +14 -16
- package/dist/GeolocationTags.js.map +1 -1
- package/dist/ReadTask.d.ts +2 -1
- package/dist/ReadTask.js +59 -35
- package/dist/ReadTask.js.map +1 -1
- package/dist/Tags.d.ts +701 -706
- package/dist/Timezones.d.ts +1 -0
- package/dist/Timezones.js +8 -10
- package/dist/Timezones.js.map +1 -1
- package/dist/WriteTask.d.ts +1 -1
- package/package.json +3 -3
package/dist/Tags.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ExifDate } from "./ExifDate";
|
|
|
4
4
|
import { ExifDateTime } from "./ExifDateTime";
|
|
5
5
|
import { ExifTime } from "./ExifTime";
|
|
6
6
|
import { ExifToolVendoredTags } from "./ExifToolVendoredTags";
|
|
7
|
+
import { GeolocationTags } from "./GeolocationTags";
|
|
7
8
|
import { ICCProfileTags } from "./ICCProfileTags";
|
|
8
9
|
import { ImageDataHashTag } from "./ImageDataHashTag";
|
|
9
10
|
import { IPTCApplicationRecordTags } from "./IPTCApplicationRecordTags";
|
|
@@ -17,7 +18,7 @@ import { Version } from "./Version";
|
|
|
17
18
|
export interface ExifToolTags {
|
|
18
19
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
19
20
|
Error?: string;
|
|
20
|
-
/** ★★★★ ✔ Example: 12.
|
|
21
|
+
/** ★★★★ ✔ Example: 12.97 */
|
|
21
22
|
ExifToolVersion?: number;
|
|
22
23
|
/** ☆☆☆☆ Example: "path/to/file.jpg" */
|
|
23
24
|
SourceFile?: string;
|
|
@@ -29,10 +30,10 @@ export interface ExifToolTags {
|
|
|
29
30
|
* given file. ExifTool can't write to many of these tags.
|
|
30
31
|
*/
|
|
31
32
|
export interface FileTags {
|
|
32
|
-
/** ☆☆☆☆ ✔ Example: "Windows V3" */
|
|
33
|
-
BMPVersion?: string;
|
|
34
33
|
/** ★★★★ ✔ Example: 8 */
|
|
35
34
|
BitsPerSample?: number;
|
|
35
|
+
/** ☆☆☆☆ ✔ Example: "Windows V3" */
|
|
36
|
+
BMPVersion?: string;
|
|
36
37
|
/** ★★★★ ✔ Example: 3 */
|
|
37
38
|
ColorComponents?: number;
|
|
38
39
|
/** ☆☆☆☆ ✔ Example: "ff5978eb5c164fa308177d41e817e08f" */
|
|
@@ -43,11 +44,11 @@ export interface FileTags {
|
|
|
43
44
|
EncodingProcess?: string;
|
|
44
45
|
/** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
|
|
45
46
|
ExifByteOrder?: string;
|
|
46
|
-
/** ★★★★ ✔ Example: "2024:
|
|
47
|
+
/** ★★★★ ✔ Example: "2024:10:06 17:12:25-07:00" */
|
|
47
48
|
FileAccessDate?: ExifDateTime | string;
|
|
48
49
|
/** ☆☆☆☆ Example: */
|
|
49
50
|
FileCreateDate?: ExifDateTime | string;
|
|
50
|
-
/** ★★★★ ✔ Example: "2024:
|
|
51
|
+
/** ★★★★ ✔ Example: "2024:10:06 13:56:21-07:00" */
|
|
51
52
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
52
53
|
/** ★★★★ ✔ Example: "2024:06:15 18:39:22-07:00" */
|
|
53
54
|
FileModifyDate?: ExifDateTime | string;
|
|
@@ -82,122 +83,57 @@ export interface FileTags {
|
|
|
82
83
|
/** ★★★★ ✔ Example: "YCbCr4:4:4 (1 1)" */
|
|
83
84
|
YCbCrSubSampling?: string;
|
|
84
85
|
}
|
|
85
|
-
/**
|
|
86
|
-
* These are tags are derived from the values of one or more other tags.
|
|
87
|
-
* Only a few are writable directly.
|
|
88
|
-
* @see https://exiftool.org/TagNames/Composite.html
|
|
89
|
-
*/
|
|
90
|
-
export interface CompositeTags {
|
|
91
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
|
|
92
|
-
AdvancedSceneMode?: string;
|
|
93
|
-
/** ★★★★ ✔ Example: 90 */
|
|
94
|
-
Aperture?: number;
|
|
95
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
96
|
-
AutoFocus?: string;
|
|
97
|
-
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
98
|
-
AvgBitrate?: string;
|
|
99
|
-
/** ★★☆☆ ✔ Example: 46 */
|
|
100
|
-
BlueBalance?: number;
|
|
101
|
-
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
102
|
-
CFAPattern?: string;
|
|
103
|
-
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
104
|
-
CircleOfConfusion?: string;
|
|
105
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
106
|
-
ConditionalFEC?: number;
|
|
107
|
-
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
108
|
-
DOF?: string;
|
|
109
|
-
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
110
|
-
DigitalCreationDateTime?: ExifDateTime | string;
|
|
111
|
-
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
112
|
-
DriveMode?: string;
|
|
113
|
-
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
114
|
-
ExtenderStatus?: string;
|
|
115
|
-
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
116
|
-
FOV?: string;
|
|
117
|
-
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
118
|
-
FlashType?: string;
|
|
119
|
-
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
120
|
-
FocalLength35efl?: string;
|
|
121
|
-
/** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
|
|
122
|
-
GPSDateTime?: ExifDateTime | string;
|
|
123
|
-
/** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
|
|
124
|
-
GPSPosition?: string;
|
|
125
|
-
/** ★★★★ ✔ Example: "Inf m" */
|
|
126
|
-
HyperfocalDistance?: string;
|
|
127
|
-
/** ★★★★ ✔ Example: "8x8" */
|
|
128
|
-
ImageSize?: string;
|
|
129
|
-
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
130
|
-
Lens?: string;
|
|
131
|
-
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
132
|
-
Lens35efl?: string;
|
|
133
|
-
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
134
|
-
LensID?: string;
|
|
135
|
-
/** ★★★★ ✔ Example: 9.9 */
|
|
136
|
-
LightValue?: number;
|
|
137
|
-
/** ★★★★ ✔ Example: 9.5 */
|
|
138
|
-
Megapixels?: number;
|
|
139
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
140
|
-
OriginalDecisionData?: BinaryField | string;
|
|
141
|
-
/** ☆☆☆☆ Example: "9.9 um" */
|
|
142
|
-
PeakSpectralSensitivity?: string;
|
|
143
|
-
/** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
|
|
144
|
-
PreviewImage?: BinaryField;
|
|
145
|
-
/** ★★☆☆ ✔ Example: 38.625 */
|
|
146
|
-
RedBalance?: number;
|
|
147
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
148
|
-
RedEyeReduction?: string;
|
|
149
|
-
/** ☆☆☆☆ Example: 11.2 */
|
|
150
|
-
RicohPitch?: number;
|
|
151
|
-
/** ☆☆☆☆ Example: 1.59 */
|
|
152
|
-
RicohRoll?: number;
|
|
153
|
-
/** ★☆☆☆ ✔ Example: "Unknown (0)" */
|
|
154
|
-
Rotation?: number;
|
|
155
|
-
/** ☆☆☆☆ ✔ Example: "9:30:01" */
|
|
156
|
-
RunTimeSincePowerUp?: string;
|
|
157
|
-
/** ★★★★ ✔ Example: 9.9 */
|
|
158
|
-
ScaleFactor35efl?: number;
|
|
159
|
-
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
160
|
-
ShootingMode?: string;
|
|
161
|
-
/** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
|
|
162
|
-
ShutterCurtainHack?: string;
|
|
163
|
-
/** ★★★★ ✔ Example: "inf" */
|
|
164
|
-
ShutterSpeed?: string;
|
|
165
|
-
/** ★☆☆☆ ✔ Example: "2024:04:20 21:09:51.991-07:00" */
|
|
166
|
-
SubSecCreateDate?: ExifDateTime | string;
|
|
167
|
-
/** ★☆☆☆ ✔ Example: "2024:04:20 21:09:51.991-07:00" */
|
|
168
|
-
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
169
|
-
/** ☆☆☆☆ Example: */
|
|
170
|
-
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
171
|
-
/** ★☆☆☆ ✔ Example: "2024:04:20 21:09:51-07:00" */
|
|
172
|
-
SubSecModifyDate?: ExifDateTime | string;
|
|
173
|
-
}
|
|
174
86
|
export interface APPTags {
|
|
87
|
+
/** ☆☆☆☆ Example: "59 128 128" */
|
|
88
|
+
AboveColor?: string;
|
|
175
89
|
/** ☆☆☆☆ Example: 388 */
|
|
176
90
|
Again?: number;
|
|
91
|
+
/** ☆☆☆☆ Example: "5.0 C" */
|
|
92
|
+
AtmosphericTemperature?: string;
|
|
93
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
94
|
+
AutoISOMax?: number;
|
|
95
|
+
/** ☆☆☆☆ ✔ Example: 3200 */
|
|
96
|
+
AutoISOMin?: number;
|
|
97
|
+
/** ☆☆☆☆ ✔ Example: "Up" */
|
|
98
|
+
AutoRotation?: string;
|
|
177
99
|
/** ☆☆☆☆ Example: 3383 */
|
|
178
100
|
B5100?: number;
|
|
179
|
-
/** ☆☆☆☆ Example:
|
|
180
|
-
|
|
181
|
-
/** ☆☆☆☆ Example: 255 */
|
|
182
|
-
BHighLight?: number;
|
|
183
|
-
/** ☆☆☆☆ Example: 86 */
|
|
184
|
-
BMean?: number;
|
|
185
|
-
/** ☆☆☆☆ Example: 3 */
|
|
186
|
-
BSD?: number;
|
|
187
|
-
/** ☆☆☆☆ Example: 1 */
|
|
188
|
-
BSd?: number;
|
|
189
|
-
/** ☆☆☆☆ Example: 1908 */
|
|
190
|
-
BStrobe?: number;
|
|
101
|
+
/** ☆☆☆☆ Example: "60 128 128" */
|
|
102
|
+
BelowColor?: string;
|
|
191
103
|
/** ☆☆☆☆ Example: 2438 */
|
|
192
104
|
Bgain?: number;
|
|
105
|
+
/** ☆☆☆☆ Example: 255 */
|
|
106
|
+
BHighLight?: number;
|
|
107
|
+
/** ☆☆☆☆ Example: 216 */
|
|
108
|
+
BHL?: number;
|
|
193
109
|
/** ☆☆☆☆ Example: 33 */
|
|
194
110
|
Blk0?: number;
|
|
195
111
|
/** ☆☆☆☆ Example: 32 */
|
|
196
112
|
Blk1?: number;
|
|
113
|
+
/** ☆☆☆☆ Example: 86 */
|
|
114
|
+
BMean?: number;
|
|
197
115
|
/** ☆☆☆☆ Example: 6 */
|
|
198
116
|
Boff?: number;
|
|
117
|
+
/** ☆☆☆☆ Example: 1 */
|
|
118
|
+
BSd?: number;
|
|
119
|
+
/** ☆☆☆☆ Example: 3 */
|
|
120
|
+
BSD?: number;
|
|
121
|
+
/** ☆☆☆☆ Example: 1908 */
|
|
122
|
+
BStrobe?: number;
|
|
123
|
+
/** ☆☆☆☆ Example: "Z-CAMERA" */
|
|
124
|
+
CameraModel?: string;
|
|
125
|
+
/** ☆☆☆☆ Example: "_______________" */
|
|
126
|
+
CameraPartNumber?: string;
|
|
127
|
+
/** ☆☆☆☆ ✔ Example: 8340330 */
|
|
128
|
+
CameraSerialNumber?: number;
|
|
129
|
+
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
130
|
+
CameraSoftware?: string;
|
|
131
|
+
/** ☆☆☆☆ Example: 2 */
|
|
132
|
+
Case?: number;
|
|
199
133
|
/** ☆☆☆☆ Example: 2 */
|
|
200
134
|
CBal?: number;
|
|
135
|
+
/** ☆☆☆☆ Example: 1 */
|
|
136
|
+
Color?: number;
|
|
201
137
|
/** ☆☆☆☆ ✔ Example: 42926626 */
|
|
202
138
|
COLOR1?: number;
|
|
203
139
|
/** ☆☆☆☆ ✔ Example: 32321478 */
|
|
@@ -206,12 +142,30 @@ export interface APPTags {
|
|
|
206
142
|
COLOR3?: number;
|
|
207
143
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
208
144
|
COLOR4?: number;
|
|
209
|
-
/** ☆☆☆☆
|
|
210
|
-
|
|
211
|
-
/** ☆☆☆☆ Example:
|
|
212
|
-
|
|
145
|
+
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
146
|
+
ColorTransform?: string;
|
|
147
|
+
/** ☆☆☆☆ Example: 45 */
|
|
148
|
+
Compass?: string;
|
|
213
149
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
214
150
|
ContTake?: number;
|
|
151
|
+
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
152
|
+
CreatorSoftware?: string;
|
|
153
|
+
/** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
|
|
154
|
+
DateTimeGenerated?: ExifDateTime | string;
|
|
155
|
+
/** ☆☆☆☆ ✔ Example: 100 */
|
|
156
|
+
DCTEncodeVersion?: number;
|
|
157
|
+
/** ☆☆☆☆ ✔ Example: "Photo Global Settings" */
|
|
158
|
+
DeviceName?: string;
|
|
159
|
+
/** ☆☆☆☆ Example: "(Binary data 275008 bytes, use -b option to extract)" */
|
|
160
|
+
EmbeddedImage?: BinaryField | string;
|
|
161
|
+
/** ☆☆☆☆ Example: 960 */
|
|
162
|
+
EmbeddedImageHeight?: number;
|
|
163
|
+
/** ☆☆☆☆ Example: "PNG" */
|
|
164
|
+
EmbeddedImageType?: string;
|
|
165
|
+
/** ☆☆☆☆ Example: 640 */
|
|
166
|
+
EmbeddedImageWidth?: number;
|
|
167
|
+
/** ☆☆☆☆ Example: 1 */
|
|
168
|
+
Emissivity?: number;
|
|
215
169
|
/** ☆☆☆☆ ✔ Example: 8501 */
|
|
216
170
|
EXP1?: number;
|
|
217
171
|
/** ☆☆☆☆ ✔ Example: 59 */
|
|
@@ -222,152 +176,58 @@ export interface APPTags {
|
|
|
222
176
|
ExposRatio?: number;
|
|
223
177
|
/** ☆☆☆☆ Example: 3687 */
|
|
224
178
|
Exposure?: number;
|
|
225
|
-
/** ☆☆☆☆ Example:
|
|
226
|
-
|
|
179
|
+
/** ☆☆☆☆ Example: "46.1 deg" */
|
|
180
|
+
FieldOfView?: string;
|
|
181
|
+
/** ☆☆☆☆ Example: "NOF" */
|
|
182
|
+
FilterModel?: string;
|
|
183
|
+
/** ☆☆☆☆ Example: "" */
|
|
184
|
+
FilterPartNumber?: string;
|
|
185
|
+
/** ☆☆☆☆ Example: "00000000" */
|
|
186
|
+
FilterSerialNumber?: string;
|
|
227
187
|
/** ☆☆☆☆ Example: 1 */
|
|
228
188
|
FinalRatio?: number;
|
|
229
189
|
/** ☆☆☆☆ Example: 640 */
|
|
230
190
|
FlashTime?: number;
|
|
191
|
+
/** ☆☆☆☆ Example: 192 */
|
|
192
|
+
FMean?: number;
|
|
231
193
|
/** ☆☆☆☆ ✔ Example: "F2.8" */
|
|
232
194
|
Fnumber?: string;
|
|
195
|
+
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
196
|
+
FocusDistance?: string;
|
|
233
197
|
/** ☆☆☆☆ Example: 136 */
|
|
234
198
|
FocusPos?: number;
|
|
199
|
+
/** ☆☆☆☆ ✔ Example: 98 */
|
|
200
|
+
FocusStepCount?: number;
|
|
201
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
202
|
+
FrameRate?: number;
|
|
203
|
+
/** ☆☆☆☆ Example: 85 */
|
|
204
|
+
Gain?: number;
|
|
235
205
|
/** ☆☆☆☆ Example: 2152 */
|
|
236
206
|
GBgain?: number;
|
|
237
207
|
/** ☆☆☆☆ Example: 8 */
|
|
238
208
|
GBoff?: number;
|
|
239
209
|
/** ☆☆☆☆ Example: 255 */
|
|
240
|
-
GHL?: number;
|
|
241
|
-
/** ☆☆☆☆ Example: 255 */
|
|
242
210
|
GHighLight?: number;
|
|
211
|
+
/** ☆☆☆☆ Example: 255 */
|
|
212
|
+
GHL?: number;
|
|
243
213
|
/** ☆☆☆☆ Example: 52 */
|
|
244
214
|
GMean?: number;
|
|
215
|
+
/** ☆☆☆☆ ✔ Example: 88.01 */
|
|
216
|
+
GPSTrack?: number;
|
|
217
|
+
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
218
|
+
GPSTrackRef?: string;
|
|
219
|
+
/** ☆☆☆☆ Example: "Yes" */
|
|
220
|
+
GPSValid?: string;
|
|
245
221
|
/** ☆☆☆☆ Example: 2152 */
|
|
246
222
|
GRgain?: number;
|
|
247
223
|
/** ☆☆☆☆ Example: 8 */
|
|
248
224
|
GRoff?: number;
|
|
249
|
-
/** ☆☆☆☆ Example: 4 */
|
|
250
|
-
GSD?: number;
|
|
251
225
|
/** ☆☆☆☆ Example: 1 */
|
|
252
226
|
GSd?: number;
|
|
253
|
-
/** ☆☆☆☆ Example:
|
|
254
|
-
|
|
227
|
+
/** ☆☆☆☆ Example: 4 */
|
|
228
|
+
GSD?: number;
|
|
255
229
|
/** ☆☆☆☆ ✔ Example: "PDR-M60" */
|
|
256
230
|
ID?: string;
|
|
257
|
-
/** ☆☆☆☆ ✔ Example: 696880 */
|
|
258
|
-
JPEG1?: number;
|
|
259
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
260
|
-
LightS?: number;
|
|
261
|
-
/** ☆☆☆☆ Example: " 10.6" */
|
|
262
|
-
Mean?: string;
|
|
263
|
-
/** ☆☆☆☆ Example: 26 */
|
|
264
|
-
MotorPos?: number;
|
|
265
|
-
/** ☆☆☆☆ Example: 4 */
|
|
266
|
-
Offset?: number;
|
|
267
|
-
/** ☆☆☆☆ ✔ Example: 87648 */
|
|
268
|
-
PicLen?: number;
|
|
269
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
270
|
-
Protect?: number;
|
|
271
|
-
/** ☆☆☆☆ Example: 6929 */
|
|
272
|
-
R5100?: number;
|
|
273
|
-
/** ☆☆☆☆ ✔ Example: "DCPT" */
|
|
274
|
-
REV?: string;
|
|
275
|
-
/** ☆☆☆☆ Example: 247 */
|
|
276
|
-
RHL?: number;
|
|
277
|
-
/** ☆☆☆☆ Example: 255 */
|
|
278
|
-
RHighLight?: number;
|
|
279
|
-
/** ☆☆☆☆ Example: 32 */
|
|
280
|
-
RMean?: number;
|
|
281
|
-
/** ☆☆☆☆ Example: 4 */
|
|
282
|
-
RSD?: number;
|
|
283
|
-
/** ☆☆☆☆ Example: 1 */
|
|
284
|
-
RSd?: number;
|
|
285
|
-
/** ☆☆☆☆ Example: 5896 */
|
|
286
|
-
RStrobe?: number;
|
|
287
|
-
/** ☆☆☆☆ ✔ Example: 6 */
|
|
288
|
-
Resolution?: number;
|
|
289
|
-
/** ☆☆☆☆ Example: 1887 */
|
|
290
|
-
Rgain?: number;
|
|
291
|
-
/** ☆☆☆☆ Example: 9 */
|
|
292
|
-
Roff?: number;
|
|
293
|
-
/** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
|
|
294
|
-
S0?: string;
|
|
295
|
-
/** ☆☆☆☆ Example: 0 */
|
|
296
|
-
StrobeTime?: number;
|
|
297
|
-
/** ☆☆☆☆ ✔ Example: "bd1,1,5,2beec,b5,ec15" */
|
|
298
|
-
T0?: string;
|
|
299
|
-
/** ☆☆☆☆ ✔ Example: 357 */
|
|
300
|
-
TagB?: number;
|
|
301
|
-
/** ☆☆☆☆ ✔ Example: 92 */
|
|
302
|
-
TagQ?: number;
|
|
303
|
-
/** ☆☆☆☆ ✔ Example: 243 */
|
|
304
|
-
TagR?: number;
|
|
305
|
-
/** ☆☆☆☆ ✔ Example: "v" */
|
|
306
|
-
TagS?: string;
|
|
307
|
-
/** ☆☆☆☆ ✔ Example: 4016 */
|
|
308
|
-
ThmLen?: number;
|
|
309
|
-
/** ★☆☆☆ ✔ Example: "vf0-3c" */
|
|
310
|
-
Version?: string;
|
|
311
|
-
/** ☆☆☆☆ Example: 4054 */
|
|
312
|
-
YLevel?: number;
|
|
313
|
-
/** ☆☆☆☆ Example: 2209 */
|
|
314
|
-
YTarget?: number;
|
|
315
|
-
/** ☆☆☆☆ ✔ Example: */
|
|
316
|
-
Zoom?: string;
|
|
317
|
-
/** ☆☆☆☆ Example: 9 */
|
|
318
|
-
ZoomPos?: number;
|
|
319
|
-
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
320
|
-
ColorTransform?: string;
|
|
321
|
-
/** ☆☆☆☆ ✔ Example: 100 */
|
|
322
|
-
DCTEncodeVersion?: number;
|
|
323
|
-
/** ☆☆☆☆ Example: "59 128 128" */
|
|
324
|
-
AboveColor?: string;
|
|
325
|
-
/** ☆☆☆☆ Example: "5.0 C" */
|
|
326
|
-
AtmosphericTemperature?: string;
|
|
327
|
-
/** ☆☆☆☆ Example: "60 128 128" */
|
|
328
|
-
BelowColor?: string;
|
|
329
|
-
/** ☆☆☆☆ Example: "Z-CAMERA" */
|
|
330
|
-
CameraModel?: string;
|
|
331
|
-
/** ☆☆☆☆ Example: "_______________" */
|
|
332
|
-
CameraPartNumber?: string;
|
|
333
|
-
/** ☆☆☆☆ ✔ Example: 8340330 */
|
|
334
|
-
CameraSerialNumber?: number;
|
|
335
|
-
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
336
|
-
CameraSoftware?: string;
|
|
337
|
-
/** ☆☆☆☆ Example: "https://PhotoStructure.com/" */
|
|
338
|
-
CreatorSoftware?: string;
|
|
339
|
-
/** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
|
|
340
|
-
DateTimeGenerated?: ExifDateTime | string;
|
|
341
|
-
/** ☆☆☆☆ Example: "(Binary data 49406 bytes, use -b option to extract)" */
|
|
342
|
-
EmbeddedImage?: BinaryField | string;
|
|
343
|
-
/** ☆☆☆☆ Example: 960 */
|
|
344
|
-
EmbeddedImageHeight?: number;
|
|
345
|
-
/** ☆☆☆☆ Example: "PNG" */
|
|
346
|
-
EmbeddedImageType?: string;
|
|
347
|
-
/** ☆☆☆☆ Example: 640 */
|
|
348
|
-
EmbeddedImageWidth?: number;
|
|
349
|
-
/** ☆☆☆☆ Example: 1 */
|
|
350
|
-
Emissivity?: number;
|
|
351
|
-
/** ☆☆☆☆ Example: "46.1 deg" */
|
|
352
|
-
FieldOfView?: string;
|
|
353
|
-
/** ☆☆☆☆ Example: "NOF" */
|
|
354
|
-
FilterModel?: string;
|
|
355
|
-
/** ☆☆☆☆ Example: "" */
|
|
356
|
-
FilterPartNumber?: string;
|
|
357
|
-
/** ☆☆☆☆ Example: "00000000" */
|
|
358
|
-
FilterSerialNumber?: string;
|
|
359
|
-
/** ☆☆☆☆ ✔ Example: "inf" */
|
|
360
|
-
FocusDistance?: string;
|
|
361
|
-
/** ☆☆☆☆ ✔ Example: 98 */
|
|
362
|
-
FocusStepCount?: number;
|
|
363
|
-
/** ☆☆☆☆ ✔ Example: 9 */
|
|
364
|
-
FrameRate?: number;
|
|
365
|
-
/** ☆☆☆☆ ✔ Example: 88.01 */
|
|
366
|
-
GPSTrack?: number;
|
|
367
|
-
/** ☆☆☆☆ ✔ Example: "True North" */
|
|
368
|
-
GPSTrackRef?: string;
|
|
369
|
-
/** ☆☆☆☆ Example: "Yes" */
|
|
370
|
-
GPSValid?: string;
|
|
371
231
|
/** ☆☆☆☆ Example: "7.4 C" */
|
|
372
232
|
IRWindowTemperature?: string;
|
|
373
233
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -376,8 +236,16 @@ export interface APPTags {
|
|
|
376
236
|
Isotherm1Color?: string;
|
|
377
237
|
/** ☆☆☆☆ Example: "92 115 209" */
|
|
378
238
|
Isotherm2Color?: string;
|
|
239
|
+
/** ☆☆☆☆ ✔ Example: 696880 */
|
|
240
|
+
JPEG1?: number;
|
|
379
241
|
/** ☆☆☆☆ Example: "T199104" */
|
|
380
242
|
LensPartNumber?: string;
|
|
243
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
244
|
+
LightS?: number;
|
|
245
|
+
/** ☆☆☆☆ ✔ Example: "AUTO" */
|
|
246
|
+
MaximumShutterAngle?: string;
|
|
247
|
+
/** ☆☆☆☆ Example: " 10.6" */
|
|
248
|
+
Mean?: string;
|
|
381
249
|
/** ☆☆☆☆ Example: 1 */
|
|
382
250
|
Meas1Label?: number;
|
|
383
251
|
/** ☆☆☆☆ Example: "80 60" */
|
|
@@ -390,6 +258,14 @@ export interface APPTags {
|
|
|
390
258
|
Meas2Params?: string;
|
|
391
259
|
/** ☆☆☆☆ Example: "Spot" */
|
|
392
260
|
Meas2Type?: string;
|
|
261
|
+
/** ☆☆☆☆ ✔ Example: "859830e2f50cb3397a6216f09553fce800000000000000000000000000000000" */
|
|
262
|
+
MediaUniqueID?: string;
|
|
263
|
+
/** ☆☆☆☆ ✔ Example: "7.6.4" */
|
|
264
|
+
MetadataVersion?: string;
|
|
265
|
+
/** ☆☆☆☆ Example: 26 */
|
|
266
|
+
MotorPos?: number;
|
|
267
|
+
/** ☆☆☆☆ Example: 4 */
|
|
268
|
+
Offset?: number;
|
|
393
269
|
/** ☆☆☆☆ Example: "+98" */
|
|
394
270
|
OffsetX?: string;
|
|
395
271
|
/** ☆☆☆☆ Example: "+51" */
|
|
@@ -410,7 +286,19 @@ export interface APPTags {
|
|
|
410
286
|
PaletteStretch?: number;
|
|
411
287
|
/** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
|
|
412
288
|
Param0?: string;
|
|
413
|
-
/** ☆☆☆☆
|
|
289
|
+
/** ☆☆☆☆ ✔ Example: "12MP_W" */
|
|
290
|
+
PhotoResolution?: string;
|
|
291
|
+
/** ☆☆☆☆ ✔ Example: 87648 */
|
|
292
|
+
PicLen?: number;
|
|
293
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
294
|
+
Protect?: number;
|
|
295
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
296
|
+
ProTune?: string;
|
|
297
|
+
/** ☆☆☆☆ Example: 6929 */
|
|
298
|
+
R5100?: number;
|
|
299
|
+
/** ☆☆☆☆ ✔ Example: "4_1SEC" */
|
|
300
|
+
Rate?: string;
|
|
301
|
+
/** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
|
|
414
302
|
RawThermalImage?: BinaryField | string;
|
|
415
303
|
/** ☆☆☆☆ Example: 90 */
|
|
416
304
|
RawThermalImageHeight?: number;
|
|
@@ -432,30 +320,143 @@ export interface APPTags {
|
|
|
432
320
|
ReflectedApparentTemperature?: string;
|
|
433
321
|
/** ☆☆☆☆ Example: "80.0 %" */
|
|
434
322
|
RelativeHumidity?: string;
|
|
323
|
+
/** ☆☆☆☆ ✔ Example: 6 */
|
|
324
|
+
Resolution?: number;
|
|
325
|
+
/** ☆☆☆☆ ✔ Example: "DCPT" */
|
|
326
|
+
REV?: string;
|
|
327
|
+
/** ☆☆☆☆ Example: 1887 */
|
|
328
|
+
Rgain?: number;
|
|
329
|
+
/** ☆☆☆☆ Example: 255 */
|
|
330
|
+
RHighLight?: number;
|
|
331
|
+
/** ☆☆☆☆ Example: 247 */
|
|
332
|
+
RHL?: number;
|
|
333
|
+
/** ☆☆☆☆ Example: 32 */
|
|
334
|
+
RMean?: number;
|
|
335
|
+
/** ☆☆☆☆ Example: 9 */
|
|
336
|
+
Roff?: number;
|
|
337
|
+
/** ☆☆☆☆ Example: 1 */
|
|
338
|
+
RSd?: number;
|
|
339
|
+
/** ☆☆☆☆ Example: 4 */
|
|
340
|
+
RSD?: number;
|
|
341
|
+
/** ☆☆☆☆ Example: 5896 */
|
|
342
|
+
RStrobe?: number;
|
|
343
|
+
/** ☆☆☆☆ ✔ Example: "8259,0,14bfe,a184,11987,1e4f1,0,7c0000,40b60000,56a05e6,6…0038,d7" */
|
|
344
|
+
S0?: string;
|
|
345
|
+
/** ☆☆☆☆ Example: 0 */
|
|
346
|
+
StrobeTime?: number;
|
|
347
|
+
/** ☆☆☆☆ ✔ Example: "bd1,1,5,2beec,b5,ec15" */
|
|
348
|
+
T0?: string;
|
|
349
|
+
/** ☆☆☆☆ ✔ Example: 357 */
|
|
350
|
+
TagB?: number;
|
|
351
|
+
/** ☆☆☆☆ ✔ Example: 92 */
|
|
352
|
+
TagQ?: number;
|
|
353
|
+
/** ☆☆☆☆ ✔ Example: 243 */
|
|
354
|
+
TagR?: number;
|
|
355
|
+
/** ☆☆☆☆ ✔ Example: "v" */
|
|
356
|
+
TagS?: string;
|
|
357
|
+
/** ☆☆☆☆ ✔ Example: 4016 */
|
|
358
|
+
ThmLen?: number;
|
|
435
359
|
/** ☆☆☆☆ Example: "41 110 240" */
|
|
436
360
|
UnderflowColor?: string;
|
|
437
|
-
/**
|
|
438
|
-
|
|
439
|
-
/** ☆☆☆☆
|
|
440
|
-
|
|
441
|
-
/** ☆☆☆☆
|
|
442
|
-
|
|
443
|
-
/** ☆☆☆☆ ✔ Example:
|
|
444
|
-
|
|
445
|
-
/** ☆☆☆☆
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
361
|
+
/** ★☆☆☆ ✔ Example: "vf0-3c" */
|
|
362
|
+
Version?: string;
|
|
363
|
+
/** ☆☆☆☆ Example: 4054 */
|
|
364
|
+
YLevel?: number;
|
|
365
|
+
/** ☆☆☆☆ Example: 2209 */
|
|
366
|
+
YTarget?: number;
|
|
367
|
+
/** ☆☆☆☆ ✔ Example: */
|
|
368
|
+
Zoom?: string;
|
|
369
|
+
/** ☆☆☆☆ Example: 9 */
|
|
370
|
+
ZoomPos?: number;
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* These are tags are derived from the values of one or more other tags.
|
|
374
|
+
* Only a few are writable directly.
|
|
375
|
+
* @see https://exiftool.org/TagNames/Composite.html
|
|
376
|
+
*/
|
|
377
|
+
export interface CompositeTags {
|
|
378
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (49 5)" */
|
|
379
|
+
AdvancedSceneMode?: string;
|
|
380
|
+
/** ★★★★ ✔ Example: 90 */
|
|
381
|
+
Aperture?: number;
|
|
455
382
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
456
|
-
|
|
457
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
458
|
-
|
|
383
|
+
AutoFocus?: string;
|
|
384
|
+
/** ☆☆☆☆ ✔ Example: "8.7 Mbps" */
|
|
385
|
+
AvgBitrate?: string;
|
|
386
|
+
/** ★★☆☆ ✔ Example: 46 */
|
|
387
|
+
BlueBalance?: number;
|
|
388
|
+
/** ☆☆☆☆ ✔ Example: "[Red,Green][Green,Blue]" */
|
|
389
|
+
CFAPattern?: string;
|
|
390
|
+
/** ★★★★ ✔ Example: "1.030 mm" */
|
|
391
|
+
CircleOfConfusion?: string;
|
|
392
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
393
|
+
ConditionalFEC?: number;
|
|
394
|
+
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
395
|
+
DigitalCreationDateTime?: ExifDateTime | string;
|
|
396
|
+
/** ★★☆☆ ✔ Example: "inf (9.66 m - inf)" */
|
|
397
|
+
DOF?: string;
|
|
398
|
+
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
399
|
+
DriveMode?: string;
|
|
400
|
+
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
401
|
+
ExtenderStatus?: string;
|
|
402
|
+
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
403
|
+
FlashType?: string;
|
|
404
|
+
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
405
|
+
FocalLength35efl?: string;
|
|
406
|
+
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
407
|
+
FOV?: string;
|
|
408
|
+
/** ☆☆☆☆ ✔ Example: "2024:04:21 04:09:51Z" */
|
|
409
|
+
GPSDateTime?: ExifDateTime | string;
|
|
410
|
+
/** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
|
|
411
|
+
GPSPosition?: string;
|
|
412
|
+
/** ★★★★ ✔ Example: "Inf m" */
|
|
413
|
+
HyperfocalDistance?: string;
|
|
414
|
+
/** ★★★★ ✔ Example: "8x8" */
|
|
415
|
+
ImageSize?: string;
|
|
416
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-D FA 50mm F2.8 Macro" */
|
|
417
|
+
Lens?: string;
|
|
418
|
+
/** ★★☆☆ ✔ Example: "9.2 - 92.0 mm (35 mm equivalent: 24.9 - 248.8 mm)" */
|
|
419
|
+
Lens35efl?: string;
|
|
420
|
+
/** ★★☆☆ ✔ Example: "smc PENTAX-FA 28-105mm F3.2-4.5 AL[IF]" */
|
|
421
|
+
LensID?: string;
|
|
422
|
+
/** ★★★★ ✔ Example: 9.9 */
|
|
423
|
+
LightValue?: number;
|
|
424
|
+
/** ★★★★ ✔ Example: 9.5 */
|
|
425
|
+
Megapixels?: number;
|
|
426
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 512 bytes, use -b option to extract)" */
|
|
427
|
+
OriginalDecisionData?: BinaryField | string;
|
|
428
|
+
/** ☆☆☆☆ Example: "9.9 um" */
|
|
429
|
+
PeakSpectralSensitivity?: string;
|
|
430
|
+
/** ★★★☆ ✔ Example: "(Binary data 37244 bytes, use -b option to extract)" */
|
|
431
|
+
PreviewImage?: BinaryField;
|
|
432
|
+
/** ★★☆☆ ✔ Example: 38.625 */
|
|
433
|
+
RedBalance?: number;
|
|
434
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
435
|
+
RedEyeReduction?: string;
|
|
436
|
+
/** ☆☆☆☆ Example: 11.2 */
|
|
437
|
+
RicohPitch?: number;
|
|
438
|
+
/** ☆☆☆☆ Example: 1.59 */
|
|
439
|
+
RicohRoll?: number;
|
|
440
|
+
/** ★☆☆☆ ✔ Example: "Unknown (0)" */
|
|
441
|
+
Rotation?: number;
|
|
442
|
+
/** ☆☆☆☆ ✔ Example: "9:30:01" */
|
|
443
|
+
RunTimeSincePowerUp?: string;
|
|
444
|
+
/** ★★★★ ✔ Example: 9.9 */
|
|
445
|
+
ScaleFactor35efl?: number;
|
|
446
|
+
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
447
|
+
ShootingMode?: string;
|
|
448
|
+
/** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
|
|
449
|
+
ShutterCurtainHack?: string;
|
|
450
|
+
/** ★★★★ ✔ Example: "inf" */
|
|
451
|
+
ShutterSpeed?: string;
|
|
452
|
+
/** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
|
|
453
|
+
SubSecCreateDate?: ExifDateTime | string;
|
|
454
|
+
/** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
|
|
455
|
+
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
456
|
+
/** ☆☆☆☆ Example: */
|
|
457
|
+
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
458
|
+
/** ★☆☆☆ ✔ Example: "2024:07:01 09:39:41.09+00:00" */
|
|
459
|
+
SubSecModifyDate?: ExifDateTime | string;
|
|
459
460
|
}
|
|
460
461
|
/**
|
|
461
462
|
* @see https://exiftool.org/TagNames/FlashPix.html
|
|
@@ -479,41 +480,11 @@ export interface FlashPixTags {
|
|
|
479
480
|
ExtensionName?: string;
|
|
480
481
|
/** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
|
|
481
482
|
ExtensionPersistence?: string;
|
|
482
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
483
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 46285 bytes, use -b option to extract)" */
|
|
483
484
|
ScreenNail?: BinaryField | string;
|
|
484
485
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
485
486
|
UsedExtensionNumbers?: number;
|
|
486
487
|
}
|
|
487
|
-
/**
|
|
488
|
-
* These tags are only available if {@link ExifToolOptions.geolocation} is true
|
|
489
|
-
* and the file has valid GPS location data.
|
|
490
|
-
*/
|
|
491
|
-
export interface GeolocationTags {
|
|
492
|
-
/** ☆☆☆☆ ✔ Example: 99 */
|
|
493
|
-
GeolocationBearing?: number;
|
|
494
|
-
/** ☆☆☆☆ ✔ Example: "Zürich (Kreis 4) / Langstrasse" */
|
|
495
|
-
GeolocationCity?: string;
|
|
496
|
-
/** ☆☆☆☆ ✔ Example: "United States" */
|
|
497
|
-
GeolocationCountry?: string;
|
|
498
|
-
/** ☆☆☆☆ ✔ Example: "US" */
|
|
499
|
-
GeolocationCountryCode?: string;
|
|
500
|
-
/** ☆☆☆☆ ✔ Example: "9.60 km" */
|
|
501
|
-
GeolocationDistance?: string;
|
|
502
|
-
/** ☆☆☆☆ ✔ Example: "PPLX" */
|
|
503
|
-
GeolocationFeatureCode?: string;
|
|
504
|
-
/** ☆☆☆☆ ✔ Example: "Section Of Populated Place" */
|
|
505
|
-
GeolocationFeatureType?: string;
|
|
506
|
-
/** ☆☆☆☆ ✔ Example: 93000 */
|
|
507
|
-
GeolocationPopulation?: number;
|
|
508
|
-
/** ☆☆☆☆ ✔ Example: "7.3397, 134.4733" */
|
|
509
|
-
GeolocationPosition?: string;
|
|
510
|
-
/** ☆☆☆☆ ✔ Example: "Île-de-France" */
|
|
511
|
-
GeolocationRegion?: string;
|
|
512
|
-
/** ☆☆☆☆ ✔ Example: "Ōta-ku" */
|
|
513
|
-
GeolocationSubregion?: string;
|
|
514
|
-
/** ☆☆☆☆ ✔ Example: "Pacific/Saipan" */
|
|
515
|
-
GeolocationTimeZone?: string;
|
|
516
|
-
}
|
|
517
488
|
export interface JSONTags {
|
|
518
489
|
/** ☆☆☆☆ Example: 0 */
|
|
519
490
|
AIScene?: number;
|
|
@@ -528,6 +499,30 @@ export interface JSONTags {
|
|
|
528
499
|
/** ☆☆☆☆ Example: 1 */
|
|
529
500
|
ZoomMultiple?: number;
|
|
530
501
|
}
|
|
502
|
+
export interface MPFTags {
|
|
503
|
+
/** ★★☆☆ ✔ Example: 9697 */
|
|
504
|
+
DependentImage1EntryNumber?: number;
|
|
505
|
+
/** ★★☆☆ ✔ Example: 960 */
|
|
506
|
+
DependentImage2EntryNumber?: number;
|
|
507
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
508
|
+
ImageUIDList?: BinaryField | string;
|
|
509
|
+
/** ★★☆☆ ✔ Example: "0100" */
|
|
510
|
+
MPFVersion?: string;
|
|
511
|
+
/** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
|
|
512
|
+
MPImageFlags?: string;
|
|
513
|
+
/** ★★☆☆ ✔ Example: "Unknown (4)" */
|
|
514
|
+
MPImageFormat?: string;
|
|
515
|
+
/** ★★☆☆ ✔ Example: 999325 */
|
|
516
|
+
MPImageLength?: number;
|
|
517
|
+
/** ★★☆☆ ✔ Example: 9999872 */
|
|
518
|
+
MPImageStart?: number;
|
|
519
|
+
/** ★★☆☆ ✔ Example: "Undefined" */
|
|
520
|
+
MPImageType?: string;
|
|
521
|
+
/** ★★☆☆ ✔ Example: 3 */
|
|
522
|
+
NumberOfImages?: number;
|
|
523
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
524
|
+
TotalFrames?: number;
|
|
525
|
+
}
|
|
531
526
|
/**
|
|
532
527
|
* @see https://exiftool.org/TagNames/EXIF.html
|
|
533
528
|
*/
|
|
@@ -556,24 +551,20 @@ export interface EXIFTags {
|
|
|
556
551
|
BlackLevelRepeatDim?: string;
|
|
557
552
|
/** ★★★☆ ✔ Example: 9.9919505 */
|
|
558
553
|
BrightnessValue?: number;
|
|
554
|
+
/** ☆☆☆☆ Example: 6.1 */
|
|
555
|
+
CameraElevationAngle?: number;
|
|
559
556
|
/** ☆☆☆☆ ✔ Example: "Red,Green,Blue" */
|
|
560
557
|
CFAPlaneColor?: string;
|
|
561
558
|
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
562
559
|
CFARepeatPatternDim?: string;
|
|
563
|
-
/** ☆☆☆☆ Example: 6.1 */
|
|
564
|
-
CameraElevationAngle?: number;
|
|
565
560
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
566
561
|
ChromaticAberrationCorrection?: string;
|
|
567
562
|
/** ★★★★ ✔ Example: "sRGB" */
|
|
568
563
|
ColorSpace?: string;
|
|
569
|
-
/** ★★★★ ✔ Example: "Y, Cr, Cb, -" */
|
|
570
|
-
ComponentsConfiguration?: string;
|
|
571
564
|
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
572
565
|
CompositeImage?: string;
|
|
573
566
|
/** ★★★★ ✔ Example: 90 */
|
|
574
567
|
CompressedBitsPerPixel?: number;
|
|
575
|
-
/** ★★★★ ✔ Example: "Unknown (1536)" */
|
|
576
|
-
Compression?: string;
|
|
577
568
|
/** ★★★★ ✔ Example: "n/a" */
|
|
578
569
|
Contrast?: string;
|
|
579
570
|
/** ★★★☆ ✔ Example: "© Chuckles McSnortypants, Inc." */
|
|
@@ -582,28 +573,26 @@ export interface EXIFTags {
|
|
|
582
573
|
CreateDate?: ExifDateTime | string;
|
|
583
574
|
/** ★★★★ ✔ Example: "Unknown (Custom process)" */
|
|
584
575
|
CustomRendered?: string;
|
|
585
|
-
/** ☆☆☆☆ ✔ Example: "1.3.0.0" */
|
|
586
|
-
DNGBackwardVersion?: string;
|
|
587
|
-
/** ☆☆☆☆ ✔ Example: "1.4.0.0" */
|
|
588
|
-
DNGVersion?: string;
|
|
589
576
|
/** ★★★★ ✔ Example: "2218:09:22 02:32:14" */
|
|
590
577
|
DateTimeOriginal?: ExifDateTime | string;
|
|
591
578
|
/** ☆☆☆☆ ✔ Example: "8 8" */
|
|
592
579
|
DefaultCropOrigin?: string;
|
|
593
580
|
/** ☆☆☆☆ ✔ Example: "8272 6200" */
|
|
594
581
|
DefaultCropSize?: string;
|
|
595
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
582
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 0 bytes, use -b option to extract)" */
|
|
596
583
|
DeviceSettingDescription?: BinaryField | string;
|
|
597
584
|
/** ★★★☆ ✔ Example: 8.1319764 */
|
|
598
585
|
DigitalZoomRatio?: number;
|
|
586
|
+
/** ☆☆☆☆ ✔ Example: "1.3.0.0" */
|
|
587
|
+
DNGBackwardVersion?: string;
|
|
588
|
+
/** ☆☆☆☆ ✔ Example: "1.4.0.0" */
|
|
589
|
+
DNGVersion?: string;
|
|
599
590
|
/** ☆☆☆☆ Example: "" */
|
|
600
591
|
DocumentName?: string;
|
|
601
592
|
/** ★★★★ ✔ Example: 990 */
|
|
602
593
|
ExifImageHeight?: number;
|
|
603
594
|
/** ★★★★ ✔ Example: 999 */
|
|
604
595
|
ExifImageWidth?: number;
|
|
605
|
-
/** ★★★★ ✔ Example: 1 */
|
|
606
|
-
ExposureCompensation?: number;
|
|
607
596
|
/** ★☆☆☆ ✔ Example: 83 */
|
|
608
597
|
ExposureIndex?: number;
|
|
609
598
|
/** ★★★★ ✔ Example: "Unknown (Auto exposure)" */
|
|
@@ -612,16 +601,14 @@ export interface EXIFTags {
|
|
|
612
601
|
ExposureProgram?: string;
|
|
613
602
|
/** ★★★★ ✔ Example: "inf" */
|
|
614
603
|
ExposureTime?: string;
|
|
615
|
-
/** ★★★★ ✔ Example: 90 */
|
|
616
|
-
FNumber?: number;
|
|
617
604
|
/** ★★★★ ✔ Example: "Unknown (DSC)" */
|
|
618
605
|
FileSource?: string;
|
|
619
606
|
/** ★★★★ ✔ Example: "Unknown (0xffff)" */
|
|
620
607
|
Flash?: string;
|
|
621
608
|
/** ☆☆☆☆ ✔ Example: 54 */
|
|
622
609
|
FlashEnergy?: number;
|
|
623
|
-
/** ★★★★ ✔ Example:
|
|
624
|
-
|
|
610
|
+
/** ★★★★ ✔ Example: 90 */
|
|
611
|
+
FNumber?: number;
|
|
625
612
|
/** ★★★★ ✔ Example: "99.7 mm" */
|
|
626
613
|
FocalLength?: string;
|
|
627
614
|
/** ★★★☆ ✔ Example: "9920 mm" */
|
|
@@ -632,14 +619,16 @@ export interface EXIFTags {
|
|
|
632
619
|
FocalPlaneXResolution?: number;
|
|
633
620
|
/** ★★★☆ ✔ Example: 9846.1538 */
|
|
634
621
|
FocalPlaneYResolution?: number;
|
|
622
|
+
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
623
|
+
GainControl?: string;
|
|
624
|
+
/** ☆☆☆☆ ✔ Example: 2.4921875 */
|
|
625
|
+
Gamma?: number;
|
|
635
626
|
/** ★☆☆☆ ✔ Example: 99.8 */
|
|
636
627
|
GPSAltitude?: number;
|
|
637
628
|
/** ☆☆☆☆ ✔ Example: "Unknown (Sea level reference)" */
|
|
638
629
|
GPSAltitudeRef?: string;
|
|
639
630
|
/** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
|
|
640
631
|
GPSAreaInformation?: string;
|
|
641
|
-
/** ☆☆☆☆ ✔ Example: 9 */
|
|
642
|
-
GPSDOP?: number;
|
|
643
632
|
/** ☆☆☆☆ ✔ Example: "2024:04:21" */
|
|
644
633
|
GPSDateStamp?: ExifDate | string;
|
|
645
634
|
/** ☆☆☆☆ ✔ Example: 86.180049 */
|
|
@@ -660,6 +649,8 @@ export interface EXIFTags {
|
|
|
660
649
|
GPSDestLongitudeRef?: string;
|
|
661
650
|
/** ☆☆☆☆ ✔ Example: "No Correction" */
|
|
662
651
|
GPSDifferential?: string;
|
|
652
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
653
|
+
GPSDOP?: number;
|
|
663
654
|
/** ☆☆☆☆ ✔ Example: "8.937059922 m" */
|
|
664
655
|
GPSHPositioningError?: string;
|
|
665
656
|
/** ☆☆☆☆ ✔ Example: 94.800416 */
|
|
@@ -690,10 +681,6 @@ export interface EXIFTags {
|
|
|
690
681
|
GPSStatus?: string;
|
|
691
682
|
/** ☆☆☆☆ ✔ Example: "23:59:41.001" */
|
|
692
683
|
GPSTimeStamp?: ExifTime | string;
|
|
693
|
-
/** ★★★☆ ✔ Example: "Unknown (8176)" */
|
|
694
|
-
GainControl?: string;
|
|
695
|
-
/** ☆☆☆☆ ✔ Example: 2.4921875 */
|
|
696
|
-
Gamma?: number;
|
|
697
684
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
698
685
|
HighISOMultiplierBlue?: number;
|
|
699
686
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -702,17 +689,17 @@ export interface EXIFTags {
|
|
|
702
689
|
HighISOMultiplierRed?: number;
|
|
703
690
|
/** ☆☆☆☆ ✔ Example: "iPhone 15 Plus" */
|
|
704
691
|
HostComputer?: string;
|
|
705
|
-
/** ★★★★ ✔ Example: 993 */
|
|
706
|
-
ISO?: number;
|
|
707
|
-
/** ☆☆☆☆ ✔ Example: 80 */
|
|
708
|
-
ISOSpeed?: number;
|
|
709
692
|
/** ★★★☆ ✔ Example: "untitled" */
|
|
710
693
|
ImageDescription?: string;
|
|
711
694
|
/** ★★★★ ✔ Example: "Unknown ([None])" */
|
|
712
695
|
InteropIndex?: string;
|
|
713
696
|
/** ★★★★ ✔ Example: "undef undef undef" */
|
|
714
697
|
InteropVersion?: string;
|
|
715
|
-
/**
|
|
698
|
+
/** ★★★★ ✔ Example: 993 */
|
|
699
|
+
ISO?: number;
|
|
700
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
701
|
+
ISOSpeed?: number;
|
|
702
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
|
|
716
703
|
JpgFromRaw?: BinaryField;
|
|
717
704
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
718
705
|
JpgFromRawLength?: number;
|
|
@@ -820,8 +807,6 @@ export interface EXIFTags {
|
|
|
820
807
|
ResolutionUnit?: string;
|
|
821
808
|
/** ☆☆☆☆ ✔ Example: 96 */
|
|
822
809
|
RowsPerStrip?: number;
|
|
823
|
-
/** ☆☆☆☆ ✔ Example: 4 */
|
|
824
|
-
SRawType?: number;
|
|
825
810
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
826
811
|
SamplesPerPixel?: number;
|
|
827
812
|
/** ★★★★ ✔ Example: "n/a" */
|
|
@@ -846,18 +831,14 @@ export interface EXIFTags {
|
|
|
846
831
|
SonyToneCurve?: string;
|
|
847
832
|
/** ☆☆☆☆ ✔ Example: 668058300 */
|
|
848
833
|
SpatialFrequencyResponse?: number;
|
|
834
|
+
/** ☆☆☆☆ ✔ Example: 4 */
|
|
835
|
+
SRawType?: number;
|
|
849
836
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
850
837
|
StandardOutputSensitivity?: number;
|
|
851
838
|
/** ☆☆☆☆ ✔ Example: 9600 */
|
|
852
839
|
StripByteCounts?: number;
|
|
853
840
|
/** ☆☆☆☆ ✔ Example: 986 */
|
|
854
841
|
StripOffsets?: number;
|
|
855
|
-
/** ★☆☆☆ ✔ Example: 996 */
|
|
856
|
-
SubSecTime?: number;
|
|
857
|
-
/** ★☆☆☆ ✔ Example: 996 */
|
|
858
|
-
SubSecTimeDigitized?: number;
|
|
859
|
-
/** ★☆☆☆ ✔ Example: 999 */
|
|
860
|
-
SubSecTimeOriginal?: number;
|
|
861
842
|
/** ☆☆☆☆ ✔ Example: "Reduced-resolution image" */
|
|
862
843
|
SubfileType?: string;
|
|
863
844
|
/** ☆☆☆☆ ✔ Example: "967 967 1425 851" */
|
|
@@ -868,6 +849,12 @@ export interface EXIFTags {
|
|
|
868
849
|
SubjectDistanceRange?: string;
|
|
869
850
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
870
851
|
SubjectLocation?: number;
|
|
852
|
+
/** ★☆☆☆ ✔ Example: 996 */
|
|
853
|
+
SubSecTime?: number;
|
|
854
|
+
/** ★☆☆☆ ✔ Example: 996 */
|
|
855
|
+
SubSecTimeDigitized?: number;
|
|
856
|
+
/** ★☆☆☆ ✔ Example: 999 */
|
|
857
|
+
SubSecTimeOriginal?: number;
|
|
871
858
|
/** ★★★★ ✔ Example: "(Binary data 39781 bytes, use -b option to extract)" */
|
|
872
859
|
ThumbnailImage?: BinaryField;
|
|
873
860
|
/** ★★★★ ✔ Example: 9998 */
|
|
@@ -900,6 +887,8 @@ export interface EXIFTags {
|
|
|
900
887
|
WhiteLevel?: number;
|
|
901
888
|
/** ☆☆☆☆ ✔ Example: "9696 8192 8192 7136" */
|
|
902
889
|
WhitePoint?: string;
|
|
890
|
+
/** ☆☆☆☆ Example: "Redmi 9T" */
|
|
891
|
+
XiaomiModel?: string;
|
|
903
892
|
/** ☆☆☆☆ ✔ Example: "Norm De Plume" */
|
|
904
893
|
XPAuthor?: string;
|
|
905
894
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
@@ -912,8 +901,6 @@ export interface EXIFTags {
|
|
|
912
901
|
XPTitle?: string;
|
|
913
902
|
/** ★★★★ ✔ Example: 99 */
|
|
914
903
|
XResolution?: number;
|
|
915
|
-
/** ☆☆☆☆ Example: "Redmi 9T" */
|
|
916
|
-
XiaomiModel?: string;
|
|
917
904
|
/** ☆☆☆☆ ✔ Example: "0.299 0.587 0.114" */
|
|
918
905
|
YCbCrCoefficients?: string;
|
|
919
906
|
/** ★★★★ ✔ Example: "Unknown (512)" */
|
|
@@ -921,30 +908,6 @@ export interface EXIFTags {
|
|
|
921
908
|
/** ★★★★ ✔ Example: 99 */
|
|
922
909
|
YResolution?: number;
|
|
923
910
|
}
|
|
924
|
-
export interface MPFTags {
|
|
925
|
-
/** ★★☆☆ ✔ Example: 9697 */
|
|
926
|
-
DependentImage1EntryNumber?: number;
|
|
927
|
-
/** ★★☆☆ ✔ Example: 960 */
|
|
928
|
-
DependentImage2EntryNumber?: number;
|
|
929
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 66 bytes, use -b option to extract)" */
|
|
930
|
-
ImageUIDList?: BinaryField | string;
|
|
931
|
-
/** ★★☆☆ ✔ Example: "0100" */
|
|
932
|
-
MPFVersion?: string;
|
|
933
|
-
/** ★★☆☆ ✔ Example: "Representative image, Dependent parent image" */
|
|
934
|
-
MPImageFlags?: string;
|
|
935
|
-
/** ★★☆☆ ✔ Example: "Unknown (4)" */
|
|
936
|
-
MPImageFormat?: string;
|
|
937
|
-
/** ★★☆☆ ✔ Example: 999325 */
|
|
938
|
-
MPImageLength?: number;
|
|
939
|
-
/** ★★☆☆ ✔ Example: 9999872 */
|
|
940
|
-
MPImageStart?: number;
|
|
941
|
-
/** ★★☆☆ ✔ Example: "Undefined" */
|
|
942
|
-
MPImageType?: string;
|
|
943
|
-
/** ★★☆☆ ✔ Example: 3 */
|
|
944
|
-
NumberOfImages?: number;
|
|
945
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
946
|
-
TotalFrames?: number;
|
|
947
|
-
}
|
|
948
911
|
export interface MetaTags {
|
|
949
912
|
/** ☆☆☆☆ Example: 1 */
|
|
950
913
|
BorderID?: number;
|
|
@@ -952,10 +915,10 @@ export interface MetaTags {
|
|
|
952
915
|
BorderLocation?: number;
|
|
953
916
|
/** ☆☆☆☆ Example: "None" */
|
|
954
917
|
BorderName?: string;
|
|
955
|
-
/** ☆☆☆☆ Example: 0 */
|
|
956
|
-
BorderType?: number;
|
|
957
918
|
/** ☆☆☆☆ Example: "1 0 0 0" */
|
|
958
919
|
BordersVersion?: string;
|
|
920
|
+
/** ☆☆☆☆ Example: 0 */
|
|
921
|
+
BorderType?: number;
|
|
959
922
|
/** ☆☆☆☆ Example: "KODAK DC5000 ZOOM DIGITAL CAMERA" */
|
|
960
923
|
CameraOwner?: string;
|
|
961
924
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -1013,7 +976,7 @@ export interface PhotoshopTags {
|
|
|
1013
976
|
PhotoshopFormat?: string;
|
|
1014
977
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1015
978
|
PhotoshopQuality?: number;
|
|
1016
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
979
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 5768 bytes, use -b option to extract)" */
|
|
1017
980
|
PhotoshopThumbnail?: BinaryField | string;
|
|
1018
981
|
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
1019
982
|
PrintPosition?: string;
|
|
@@ -1083,8 +1046,6 @@ export interface QuickTimeTags {
|
|
|
1083
1046
|
EncodedPixelsDimensions?: string;
|
|
1084
1047
|
/** ☆☆☆☆ ✔ Example: "Helvetica" */
|
|
1085
1048
|
FontName?: string;
|
|
1086
|
-
/** ☆☆☆☆ ✔ Example: "51 deg 6' 13.32" N, 0 deg 52' 23.52" W, 99.22 m Above Sea Level" */
|
|
1087
|
-
GPSCoordinates?: string;
|
|
1088
1049
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1089
1050
|
GenBalance?: number;
|
|
1090
1051
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
@@ -1095,6 +1056,8 @@ export interface QuickTimeTags {
|
|
|
1095
1056
|
GenMediaVersion?: number;
|
|
1096
1057
|
/** ☆☆☆☆ ✔ Example: "32768 32768 32768" */
|
|
1097
1058
|
GenOpColor?: string;
|
|
1059
|
+
/** ☆☆☆☆ ✔ Example: "51 deg 6' 13.32" N, 0 deg 52' 23.52" W, 99.22 m Above Sea Level" */
|
|
1060
|
+
GPSCoordinates?: string;
|
|
1098
1061
|
/** ☆☆☆☆ ✔ Example: "srcCopy" */
|
|
1099
1062
|
GraphicsMode?: string;
|
|
1100
1063
|
/** ☆☆☆☆ ✔ Example: "Data Handler" */
|
|
@@ -1141,10 +1104,10 @@ export interface QuickTimeTags {
|
|
|
1141
1104
|
OpColor?: string;
|
|
1142
1105
|
/** ☆☆☆☆ ✔ Example: "tmcd" */
|
|
1143
1106
|
OtherFormat?: string;
|
|
1144
|
-
/** ☆☆☆☆ ✔ Example: "SEQ_PLAY" */
|
|
1145
|
-
PlayMode?: string;
|
|
1146
1107
|
/** ☆☆☆☆ ✔ Example: 59.94006 */
|
|
1147
1108
|
PlaybackFrameRate?: number;
|
|
1109
|
+
/** ☆☆☆☆ ✔ Example: "SEQ_PLAY" */
|
|
1110
|
+
PlayMode?: string;
|
|
1148
1111
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1149
1112
|
PosterTime?: string;
|
|
1150
1113
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -1215,10 +1178,10 @@ export interface RAFTags {
|
|
|
1215
1178
|
RAFCompression?: string;
|
|
1216
1179
|
/** ☆☆☆☆ ✔ Example: -1.7 */
|
|
1217
1180
|
RawExposureBias?: number;
|
|
1218
|
-
/** ☆☆☆☆ ✔ Example: "6 16" */
|
|
1219
|
-
RawImageCropTopLeft?: string;
|
|
1220
1181
|
/** ☆☆☆☆ ✔ Example: "4896x3264" */
|
|
1221
1182
|
RawImageCroppedSize?: string;
|
|
1183
|
+
/** ☆☆☆☆ ✔ Example: "6 16" */
|
|
1184
|
+
RawImageCropTopLeft?: string;
|
|
1222
1185
|
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
1223
1186
|
RawImageFullHeight?: number;
|
|
1224
1187
|
/** ☆☆☆☆ ✔ Example: "5120x3288" */
|
|
@@ -1328,12 +1291,42 @@ export interface JFIFTags {
|
|
|
1328
1291
|
JFIFVersion?: number;
|
|
1329
1292
|
}
|
|
1330
1293
|
export interface MakerNotesTags {
|
|
1294
|
+
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1295
|
+
AccelerationTracking?: number;
|
|
1296
|
+
/** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
|
|
1297
|
+
AccelerationVector?: string;
|
|
1298
|
+
/** ☆☆☆☆ Example: "358.3 11.2" */
|
|
1299
|
+
Accelerometer?: string;
|
|
1300
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1301
|
+
AccelerometerX?: number;
|
|
1302
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
1303
|
+
AccelerometerY?: number;
|
|
1304
|
+
/** ☆☆☆☆ ✔ Example: 56 */
|
|
1305
|
+
AccelerometerZ?: number;
|
|
1306
|
+
/** ☆☆☆☆ ✔ Example: "00:00" */
|
|
1307
|
+
AccessorySerialNumber?: string;
|
|
1308
|
+
/** ☆☆☆☆ ✔ Example: "NO-ACCESSORY" */
|
|
1309
|
+
AccessoryType?: string;
|
|
1310
|
+
/** ☆☆☆☆ Example: "+0.0" */
|
|
1311
|
+
ActualCompensation?: string;
|
|
1312
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1313
|
+
AddAspectRatioInfo?: string;
|
|
1314
|
+
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
1315
|
+
AddIPTCInformation?: string;
|
|
1316
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1317
|
+
AddOriginalDecisionData?: string;
|
|
1331
1318
|
/** ☆☆☆☆ Example: "(Binary data 1024 bytes, use -b option to extract)" */
|
|
1332
1319
|
ADJDebugInfo?: BinaryField | string;
|
|
1320
|
+
/** ☆☆☆☆ Example: "X3F Setting Mode" */
|
|
1321
|
+
AdjustmentMode?: string;
|
|
1333
1322
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1334
1323
|
ADLBracketingStep?: string;
|
|
1335
1324
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1336
1325
|
ADLBracketingType?: string;
|
|
1326
|
+
/** ☆☆☆☆ ✔ Example: "Toy Camera" */
|
|
1327
|
+
AdvancedFilter?: string;
|
|
1328
|
+
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1329
|
+
AdvancedSceneType?: number;
|
|
1337
1330
|
/** ☆☆☆☆ ✔ Example: 9.9 */
|
|
1338
1331
|
AEAperture?: number;
|
|
1339
1332
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
@@ -1344,6 +1337,8 @@ export interface MakerNotesTags {
|
|
|
1344
1337
|
AEBAutoCancel?: string;
|
|
1345
1338
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1346
1339
|
AEBBracketValue?: number;
|
|
1340
|
+
/** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
|
|
1341
|
+
AEBracketingSteps?: string;
|
|
1347
1342
|
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1348
1343
|
AEBSequence?: string;
|
|
1349
1344
|
/** ☆☆☆☆ ✔ Example: "0,-,+/Enabled" */
|
|
@@ -1352,8 +1347,6 @@ export interface MakerNotesTags {
|
|
|
1352
1347
|
AEBShotCount?: string;
|
|
1353
1348
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
1354
1349
|
AEBXv?: number;
|
|
1355
|
-
/** ☆☆☆☆ ✔ Example: "AE Bracketing Disabled" */
|
|
1356
|
-
AEBracketingSteps?: string;
|
|
1357
1350
|
/** ☆☆☆☆ Example: "(Binary data 256 bytes, use -b option to extract)" */
|
|
1358
1351
|
AEDebugInfo?: BinaryField | string;
|
|
1359
1352
|
/** ☆☆☆☆ ✔ Example: "1/965" */
|
|
@@ -1424,26 +1417,22 @@ export interface MakerNotesTags {
|
|
|
1424
1417
|
AFAreaModeSetting?: string;
|
|
1425
1418
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1426
1419
|
AFAreaPointSize?: string;
|
|
1427
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1428
|
-
|
|
1420
|
+
/** ☆☆☆☆ ✔ Example: "none" */
|
|
1421
|
+
AFAreas?: string;
|
|
1429
1422
|
/** ☆☆☆☆ ✔ Example: "Main Dial" */
|
|
1430
1423
|
AFAreaSelectionMethod?: string;
|
|
1424
|
+
/** ☆☆☆☆ ✔ Example: "AF area selection button" */
|
|
1425
|
+
AFAreaSelectMethod?: string;
|
|
1431
1426
|
/** ☆☆☆☆ ✔ Example: 996 */
|
|
1432
1427
|
AFAreaWidth?: number;
|
|
1433
1428
|
/** ★☆☆☆ ✔ Example: "994 18 18 18 18 18 18 18 18" */
|
|
1434
1429
|
AFAreaWidths?: string;
|
|
1435
1430
|
/** ☆☆☆☆ ✔ Example: 4388 */
|
|
1436
1431
|
AFAreaXPosition?: number;
|
|
1437
|
-
/** ★☆☆☆ ✔ Example: "999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
|
|
1438
|
-
AFAreaXPositions?: string;
|
|
1439
1432
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1440
1433
|
AFAreaYPosition?: number;
|
|
1441
|
-
/** ★☆☆☆ ✔ Example: "950 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0…0 0 0 0" */
|
|
1442
|
-
AFAreaYPositions?: string;
|
|
1443
1434
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1444
1435
|
AFAreaZoneSize?: string;
|
|
1445
|
-
/** ☆☆☆☆ ✔ Example: "none" */
|
|
1446
|
-
AFAreas?: string;
|
|
1447
1436
|
/** ☆☆☆☆ ✔ Example: "Only ext. flash emits/Fires" */
|
|
1448
1437
|
AFAssist?: string;
|
|
1449
1438
|
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
@@ -1472,7 +1461,7 @@ export interface MakerNotesTags {
|
|
|
1472
1461
|
AFFineTuneIndex?: string;
|
|
1473
1462
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1474
1463
|
AFIlluminator?: string;
|
|
1475
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1464
|
+
/** ☆☆☆☆ ✔ Example: "0401" */
|
|
1476
1465
|
AFInfo2Version?: string;
|
|
1477
1466
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
1478
1467
|
AFIntegrationTime?: string;
|
|
@@ -1484,10 +1473,10 @@ export interface MakerNotesTags {
|
|
|
1484
1473
|
AFMicroAdjMode?: string;
|
|
1485
1474
|
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1486
1475
|
AFMicroAdjRegisteredLenses?: number;
|
|
1487
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1488
|
-
AFMicroAdjValue?: number;
|
|
1489
1476
|
/** ☆☆☆☆ ✔ Example: "Disable; 0; 0; 0; 84" */
|
|
1490
1477
|
AFMicroadjustment?: string;
|
|
1478
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1479
|
+
AFMicroAdjValue?: number;
|
|
1491
1480
|
/** ★☆☆☆ ✔ Example: "Zone" */
|
|
1492
1481
|
AFMode?: string;
|
|
1493
1482
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1524,6 +1513,8 @@ export interface MakerNotesTags {
|
|
|
1524
1513
|
AFPointPosition?: string;
|
|
1525
1514
|
/** ☆☆☆☆ ✔ Example: "Center" */
|
|
1526
1515
|
AFPointRegistration?: string;
|
|
1516
|
+
/** ☆☆☆☆ Example: "Center" */
|
|
1517
|
+
AFPoints?: string;
|
|
1527
1518
|
/** ☆☆☆☆ ✔ Example: "Use Half" */
|
|
1528
1519
|
AFPointSel?: string;
|
|
1529
1520
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -1534,24 +1525,22 @@ export interface MakerNotesTags {
|
|
|
1534
1525
|
AFPointSelectionMethod?: string;
|
|
1535
1526
|
/** ☆☆☆☆ ✔ Example: "Lower-right" */
|
|
1536
1527
|
AFPointSetting?: string;
|
|
1537
|
-
/** ☆☆☆☆ ✔ Example: "9/Active AF point" */
|
|
1538
|
-
AFPointSpotMetering?: string;
|
|
1539
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1540
|
-
AFPointSwitching?: number;
|
|
1541
|
-
/** ☆☆☆☆ Example: "Center" */
|
|
1542
|
-
AFPoints?: string;
|
|
1543
1528
|
/** ★★☆☆ ✔ Example: "Upper-right, Top" */
|
|
1544
1529
|
AFPointsInFocus?: string;
|
|
1545
1530
|
/** ☆☆☆☆ ✔ Example: "C6 (C6)" */
|
|
1546
1531
|
AFPointsInFocus1D?: string;
|
|
1547
1532
|
/** ☆☆☆☆ ✔ Example: "Center" */
|
|
1548
1533
|
AFPointsInFocus5D?: string;
|
|
1534
|
+
/** ☆☆☆☆ ✔ Example: "9/Active AF point" */
|
|
1535
|
+
AFPointSpotMetering?: string;
|
|
1549
1536
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1550
1537
|
AFPointsSelected?: number;
|
|
1551
1538
|
/** ☆☆☆☆ Example: 17 */
|
|
1552
1539
|
AFPointsSpecial?: number;
|
|
1553
1540
|
/** ☆☆☆☆ ✔ Example: "Top" */
|
|
1554
1541
|
AFPointsUsed?: string;
|
|
1542
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1543
|
+
AFPointSwitching?: number;
|
|
1555
1544
|
/** ☆☆☆☆ ✔ Example: 903 */
|
|
1556
1545
|
AFPredictor?: number;
|
|
1557
1546
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1580,36 +1569,6 @@ export interface MakerNotesTags {
|
|
|
1580
1569
|
AIServoTrackingSensitivity?: string;
|
|
1581
1570
|
/** ☆☆☆☆ ✔ Example: "Off; Object Not Found" */
|
|
1582
1571
|
AISubjectTrackingMode?: string;
|
|
1583
|
-
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1584
|
-
AccelerationTracking?: number;
|
|
1585
|
-
/** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
|
|
1586
|
-
AccelerationVector?: string;
|
|
1587
|
-
/** ☆☆☆☆ Example: "358.3 11.2" */
|
|
1588
|
-
Accelerometer?: string;
|
|
1589
|
-
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1590
|
-
AccelerometerX?: number;
|
|
1591
|
-
/** ☆☆☆☆ ✔ Example: 80 */
|
|
1592
|
-
AccelerometerY?: number;
|
|
1593
|
-
/** ☆☆☆☆ ✔ Example: 56 */
|
|
1594
|
-
AccelerometerZ?: number;
|
|
1595
|
-
/** ☆☆☆☆ ✔ Example: "00:00" */
|
|
1596
|
-
AccessorySerialNumber?: string;
|
|
1597
|
-
/** ☆☆☆☆ ✔ Example: "NO-ACCESSORY" */
|
|
1598
|
-
AccessoryType?: string;
|
|
1599
|
-
/** ☆☆☆☆ Example: "+0.0" */
|
|
1600
|
-
ActualCompensation?: string;
|
|
1601
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1602
|
-
AddAspectRatioInfo?: string;
|
|
1603
|
-
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
1604
|
-
AddIPTCInformation?: string;
|
|
1605
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1606
|
-
AddOriginalDecisionData?: string;
|
|
1607
|
-
/** ☆☆☆☆ Example: "X3F Setting Mode" */
|
|
1608
|
-
AdjustmentMode?: string;
|
|
1609
|
-
/** ☆☆☆☆ ✔ Example: "Toy Camera" */
|
|
1610
|
-
AdvancedFilter?: string;
|
|
1611
|
-
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1612
|
-
AdvancedSceneType?: number;
|
|
1613
1572
|
/** ☆☆☆☆ ✔ Example: "91 m" */
|
|
1614
1573
|
Altitude?: string;
|
|
1615
1574
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
@@ -1680,28 +1639,28 @@ export interface MakerNotesTags {
|
|
|
1680
1639
|
AutoAperture?: string;
|
|
1681
1640
|
/** ☆☆☆☆ Example: "None" */
|
|
1682
1641
|
AutoBracket?: string;
|
|
1683
|
-
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1684
|
-
AutoBracketModeM?: string;
|
|
1685
|
-
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1686
|
-
AutoBracketOrder?: string;
|
|
1687
|
-
/** ☆☆☆☆ ✔ Example: "Exposure" */
|
|
1688
|
-
AutoBracketSet?: string;
|
|
1689
1642
|
/** ★☆☆☆ ✔ Example: "On" */
|
|
1690
1643
|
AutoBracketing?: string;
|
|
1691
1644
|
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1692
1645
|
AutoBracketingMode?: string;
|
|
1693
1646
|
/** ☆☆☆☆ ✔ Example: "AE Only" */
|
|
1694
1647
|
AutoBracketingSet?: string;
|
|
1648
|
+
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1649
|
+
AutoBracketModeM?: string;
|
|
1650
|
+
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1651
|
+
AutoBracketOrder?: string;
|
|
1652
|
+
/** ☆☆☆☆ ✔ Example: "Exposure" */
|
|
1653
|
+
AutoBracketSet?: string;
|
|
1695
1654
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1696
1655
|
AutoDistortionControl?: string;
|
|
1697
1656
|
/** ☆☆☆☆ ✔ Example: "400%" */
|
|
1698
1657
|
AutoDynamicRange?: string;
|
|
1699
1658
|
/** ★★☆☆ ✔ Example: "On" */
|
|
1700
1659
|
AutoExposureBracketing?: string;
|
|
1701
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1702
|
-
AutoFP?: string;
|
|
1703
1660
|
/** ☆☆☆☆ ✔ Example: "Subject and Background" */
|
|
1704
1661
|
AutoFlashISOSensitivity?: string;
|
|
1662
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1663
|
+
AutoFP?: string;
|
|
1705
1664
|
/** ★★☆☆ ✔ Example: 96 */
|
|
1706
1665
|
AutoISO?: number;
|
|
1707
1666
|
/** ☆☆☆☆ ✔ Example: "1/30 s" */
|
|
@@ -1716,16 +1675,12 @@ export interface MakerNotesTags {
|
|
|
1716
1675
|
AuxiliaryLens?: string;
|
|
1717
1676
|
/** ☆☆☆☆ ✔ Example: 6.7 */
|
|
1718
1677
|
AvApertureSetting?: number;
|
|
1719
|
-
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
1720
|
-
AvSettingWithoutLens?: string;
|
|
1721
1678
|
/** ☆☆☆☆ ✔ Example: "513 513 513 513" */
|
|
1722
1679
|
AverageBlackLevel?: string;
|
|
1723
1680
|
/** ☆☆☆☆ ✔ Example: 9.875 */
|
|
1724
1681
|
AverageLV?: number;
|
|
1725
|
-
/** ☆☆☆☆
|
|
1726
|
-
|
|
1727
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1728
|
-
BWMode?: string;
|
|
1682
|
+
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
1683
|
+
AvSettingWithoutLens?: string;
|
|
1729
1684
|
/** ☆☆☆☆ ✔ Example: "99:99:99 00:00:00" */
|
|
1730
1685
|
BabyAge?: string;
|
|
1731
1686
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
@@ -1794,6 +1749,8 @@ export interface MakerNotesTags {
|
|
|
1794
1749
|
BodyFirmwareVersion?: number;
|
|
1795
1750
|
/** ☆☆☆☆ Example: "SID:14101105 " */
|
|
1796
1751
|
BodySerialNumber?: string;
|
|
1752
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1753
|
+
BracketIncrement?: number;
|
|
1797
1754
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1798
1755
|
BracketMode?: string;
|
|
1799
1756
|
/** ☆☆☆☆ ✔ Example: "Disabled" */
|
|
@@ -1816,6 +1773,8 @@ export interface MakerNotesTags {
|
|
|
1816
1773
|
BuildNumber?: string;
|
|
1817
1774
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1818
1775
|
BulbDuration?: number;
|
|
1776
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1777
|
+
BurstGroupID?: number;
|
|
1819
1778
|
/** ☆☆☆☆ ✔ Example: "Unlimited" */
|
|
1820
1779
|
BurstMode?: string;
|
|
1821
1780
|
/** ☆☆☆☆ Example: 3 */
|
|
@@ -1826,22 +1785,10 @@ export interface MakerNotesTags {
|
|
|
1826
1785
|
BurstUUID?: string;
|
|
1827
1786
|
/** ☆☆☆☆ ✔ Example: "Normal (enable)" */
|
|
1828
1787
|
ButtonFunctionControlOff?: string;
|
|
1829
|
-
/** ☆☆☆☆ Example:
|
|
1830
|
-
|
|
1831
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1832
|
-
|
|
1833
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1834
|
-
CCDSensitivity?: number;
|
|
1835
|
-
/** ☆☆☆☆ Example: 0 */
|
|
1836
|
-
CCDVersion?: number;
|
|
1837
|
-
/** ☆☆☆☆ ✔ Example: "9 fps" */
|
|
1838
|
-
CHModeShootingSpeed?: string;
|
|
1839
|
-
/** ☆☆☆☆ ✔ Example: "6 fps" */
|
|
1840
|
-
CLModeShootingSpeed?: string;
|
|
1841
|
-
/** ☆☆☆☆ ✔ Example: "1.02.00.06" */
|
|
1842
|
-
CPUFirmwareVersion?: string;
|
|
1843
|
-
/** ☆☆☆☆ Example: "d, 2009:09:04 03:19:07" */
|
|
1844
|
-
CPUVersions?: string;
|
|
1788
|
+
/** ☆☆☆☆ Example: 8 */
|
|
1789
|
+
BWFilter?: number;
|
|
1790
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1791
|
+
BWMode?: string;
|
|
1845
1792
|
/** ☆☆☆☆ Example: "Starting calibration file for SD14F13_Rev3; S/N C75_00001…8:16:34" */
|
|
1846
1793
|
Calibration?: string;
|
|
1847
1794
|
/** ☆☆☆☆ Example: "2216/02/28 03:49:48" */
|
|
@@ -1876,26 +1823,32 @@ export interface MakerNotesTags {
|
|
|
1876
1823
|
CanonFirmwareVersion?: string;
|
|
1877
1824
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1878
1825
|
CanonFlashMode?: string;
|
|
1879
|
-
/** ★☆☆☆ ✔ Example: 768 */
|
|
1880
|
-
CanonImageHeight?: number;
|
|
1881
1826
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1882
1827
|
CanonImageSize?: string;
|
|
1883
1828
|
/** ★★☆☆ ✔ Example: "PIC:DC50 JPEG" */
|
|
1884
1829
|
CanonImageType?: string;
|
|
1885
|
-
/** ★☆☆☆ ✔ Example: 8688 */
|
|
1886
|
-
CanonImageWidth?: number;
|
|
1887
1830
|
/** ★★☆☆ ✔ Example: "XH A1S" */
|
|
1888
1831
|
CanonModelID?: string;
|
|
1889
1832
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1890
1833
|
CardShutterLock?: string;
|
|
1891
1834
|
/** ★☆☆☆ ✔ Example: "People" */
|
|
1892
1835
|
Categories?: string;
|
|
1836
|
+
/** ☆☆☆☆ Example: 2 */
|
|
1837
|
+
CCDBoardVersion?: number;
|
|
1838
|
+
/** ☆☆☆☆ ✔ Example: "Interlaced" */
|
|
1839
|
+
CCDScanMode?: string;
|
|
1840
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1841
|
+
CCDSensitivity?: number;
|
|
1842
|
+
/** ☆☆☆☆ Example: 0 */
|
|
1843
|
+
CCDVersion?: number;
|
|
1893
1844
|
/** ☆☆☆☆ ✔ Example: "Normal Zone" */
|
|
1894
1845
|
CenterAFArea?: string;
|
|
1895
1846
|
/** ☆☆☆☆ ✔ Example: "Normal Zone" */
|
|
1896
1847
|
CenterFocusPoint?: string;
|
|
1897
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1848
|
+
/** ☆☆☆☆ ✔ Example: "Small" */
|
|
1898
1849
|
CenterWeightedAreaSize?: string;
|
|
1850
|
+
/** ☆☆☆☆ ✔ Example: "9 fps" */
|
|
1851
|
+
CHModeShootingSpeed?: string;
|
|
1899
1852
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1900
1853
|
ChromaticAberrationCorr?: string;
|
|
1901
1854
|
/** ☆☆☆☆ ✔ Example: "9758 13871 16956 16964 14142 9776 30 9502 13101 15416 151…1 15949" */
|
|
@@ -1912,6 +1865,8 @@ export interface MakerNotesTags {
|
|
|
1912
1865
|
ClarityControl?: string;
|
|
1913
1866
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1914
1867
|
ClearRetouch?: string;
|
|
1868
|
+
/** ☆☆☆☆ ✔ Example: "6 fps" */
|
|
1869
|
+
CLModeShootingSpeed?: string;
|
|
1915
1870
|
/** ☆☆☆☆ ✔ Example: "Sub-command Dial" */
|
|
1916
1871
|
CmdDialsApertureSetting?: string;
|
|
1917
1872
|
/** ☆☆☆☆ ✔ Example: "Autofocus Off, Exposure Off" */
|
|
@@ -1920,12 +1875,12 @@ export interface MakerNotesTags {
|
|
|
1920
1875
|
CmdDialsMenuAndPlayback?: string;
|
|
1921
1876
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1922
1877
|
CmdDialsReverseRotation?: string;
|
|
1878
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1879
|
+
CmdDialsReverseRotExposureComp?: number;
|
|
1923
1880
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
1924
1881
|
ColorAdjustment?: string;
|
|
1925
1882
|
/** ☆☆☆☆ Example: "Off" */
|
|
1926
1883
|
ColorAdjustmentMode?: string;
|
|
1927
|
-
/** ☆☆☆☆ ✔ Example: 257 */
|
|
1928
|
-
ColorBW?: number;
|
|
1929
1884
|
/** ☆☆☆☆ Example: 256 */
|
|
1930
1885
|
ColorBalanceBlue?: number;
|
|
1931
1886
|
/** ☆☆☆☆ Example: 65792 */
|
|
@@ -1936,6 +1891,8 @@ export interface MakerNotesTags {
|
|
|
1936
1891
|
ColorBalanceVersion?: string;
|
|
1937
1892
|
/** ☆☆☆☆ ✔ Example: 24 */
|
|
1938
1893
|
ColorBitDepth?: number;
|
|
1894
|
+
/** ☆☆☆☆ ✔ Example: 257 */
|
|
1895
|
+
ColorBW?: number;
|
|
1939
1896
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1940
1897
|
ColorChromeEffect?: string;
|
|
1941
1898
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1982,6 +1939,16 @@ export interface MakerNotesTags {
|
|
|
1982
1939
|
ColorTempCustom?: number;
|
|
1983
1940
|
/** ☆☆☆☆ ✔ Example: 6071 */
|
|
1984
1941
|
ColorTempDaylight?: number;
|
|
1942
|
+
/** ★☆☆☆ ✔ Example: 9900 */
|
|
1943
|
+
ColorTemperature?: number;
|
|
1944
|
+
/** ☆☆☆☆ ✔ Example: 7820 */
|
|
1945
|
+
ColorTemperatureAuto?: number;
|
|
1946
|
+
/** ☆☆☆☆ ✔ Example: "6300 K" */
|
|
1947
|
+
ColorTemperatureCustom?: string;
|
|
1948
|
+
/** ☆☆☆☆ ✔ Example: "7200 K" */
|
|
1949
|
+
ColorTemperatureSet?: string;
|
|
1950
|
+
/** ☆☆☆☆ ✔ Example: "Temperature" */
|
|
1951
|
+
ColorTemperatureSetting?: string;
|
|
1985
1952
|
/** ☆☆☆☆ ✔ Example: 9826 */
|
|
1986
1953
|
ColorTempFlash?: number;
|
|
1987
1954
|
/** ☆☆☆☆ ✔ Example: 4607 */
|
|
@@ -1994,16 +1961,6 @@ export interface MakerNotesTags {
|
|
|
1994
1961
|
ColorTempShade?: number;
|
|
1995
1962
|
/** ☆☆☆☆ ✔ Example: 3212 */
|
|
1996
1963
|
ColorTempTungsten?: number;
|
|
1997
|
-
/** ★☆☆☆ ✔ Example: 9900 */
|
|
1998
|
-
ColorTemperature?: number;
|
|
1999
|
-
/** ☆☆☆☆ ✔ Example: 7820 */
|
|
2000
|
-
ColorTemperatureAuto?: number;
|
|
2001
|
-
/** ☆☆☆☆ ✔ Example: "6300 K" */
|
|
2002
|
-
ColorTemperatureCustom?: string;
|
|
2003
|
-
/** ☆☆☆☆ ✔ Example: "7200 K" */
|
|
2004
|
-
ColorTemperatureSet?: string;
|
|
2005
|
-
/** ☆☆☆☆ ✔ Example: "Temperature" */
|
|
2006
|
-
ColorTemperatureSetting?: string;
|
|
2007
1964
|
/** ☆☆☆☆ Example: 5 */
|
|
2008
1965
|
ColorTint?: number;
|
|
2009
1966
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
@@ -2118,12 +2075,14 @@ export interface MakerNotesTags {
|
|
|
2118
2075
|
ContrastStandard?: number;
|
|
2119
2076
|
/** ☆☆☆☆ ✔ Example: "Shutter Speed" */
|
|
2120
2077
|
ControlDialSet?: string;
|
|
2078
|
+
/** ☆☆☆☆ Example: 0 */
|
|
2079
|
+
ControllerBoardVersion?: number;
|
|
2121
2080
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
2122
2081
|
ControlMode?: string;
|
|
2082
|
+
/** ☆☆☆☆ ✔ Example: "High" */
|
|
2083
|
+
ControlRingResponse?: string;
|
|
2123
2084
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2124
2085
|
ControlRingRotation?: string;
|
|
2125
|
-
/** ☆☆☆☆ Example: 0 */
|
|
2126
|
-
ControllerBoardVersion?: number;
|
|
2127
2086
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
2128
2087
|
ConversionLens?: string;
|
|
2129
2088
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2132,6 +2091,10 @@ export interface MakerNotesTags {
|
|
|
2132
2091
|
CoringFilter?: number;
|
|
2133
2092
|
/** ☆☆☆☆ Example: 6807 */
|
|
2134
2093
|
CorrelatedColorTemp?: number;
|
|
2094
|
+
/** ☆☆☆☆ ✔ Example: "1.02.00.06" */
|
|
2095
|
+
CPUFirmwareVersion?: string;
|
|
2096
|
+
/** ☆☆☆☆ Example: "d, 2009:09:04 03:19:07" */
|
|
2097
|
+
CPUVersions?: string;
|
|
2135
2098
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
2136
2099
|
CreativeStyle?: string;
|
|
2137
2100
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
@@ -2146,12 +2109,6 @@ export interface MakerNotesTags {
|
|
|
2146
2109
|
CropLeftMargin?: number;
|
|
2147
2110
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2148
2111
|
CropMode?: string;
|
|
2149
|
-
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2150
|
-
CropRightMargin?: number;
|
|
2151
|
-
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2152
|
-
CropTopMargin?: number;
|
|
2153
|
-
/** ☆☆☆☆ ✔ Example: 5184 */
|
|
2154
|
-
CropWidth?: number;
|
|
2155
2112
|
/** ☆☆☆☆ ✔ Example: 5792 */
|
|
2156
2113
|
CroppedImageHeight?: number;
|
|
2157
2114
|
/** ☆☆☆☆ ✔ Example: 3153968 */
|
|
@@ -2160,10 +2117,18 @@ export interface MakerNotesTags {
|
|
|
2160
2117
|
CroppedImageTop?: number;
|
|
2161
2118
|
/** ☆☆☆☆ ✔ Example: 8688 */
|
|
2162
2119
|
CroppedImageWidth?: number;
|
|
2120
|
+
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2121
|
+
CropRightMargin?: number;
|
|
2122
|
+
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2123
|
+
CropTopMargin?: number;
|
|
2124
|
+
/** ☆☆☆☆ ✔ Example: 5184 */
|
|
2125
|
+
CropWidth?: number;
|
|
2163
2126
|
/** ☆☆☆☆ Example: "Off" */
|
|
2164
2127
|
CrossProcess?: string;
|
|
2165
2128
|
/** ☆☆☆☆ ✔ Example: "20 0 19 2 0 65535 65535 65535 2 2 0 65535 65535 65535 18 … 4 5 31" */
|
|
2166
2129
|
CustomControls?: string;
|
|
2130
|
+
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0…1 1 1 0" */
|
|
2131
|
+
CustomizeDials?: string;
|
|
2167
2132
|
/** ☆☆☆☆ ✔ Example: "P-STUDIO" */
|
|
2168
2133
|
CustomPictureStyleFileName?: string;
|
|
2169
2134
|
/** ☆☆☆☆ ✔ Example: "CS3 (min CS0, max CS4)" */
|
|
@@ -2182,12 +2147,6 @@ export interface MakerNotesTags {
|
|
|
2182
2147
|
CustomWBRedLevel?: number;
|
|
2183
2148
|
/** ☆☆☆☆ ✔ Example: "Setup" */
|
|
2184
2149
|
CustomWBSetting?: string;
|
|
2185
|
-
/** ☆☆☆☆ ✔ Example: "0 0 1 30 31 0 0 0 0 0 0 2 30 31 0 0 0 0 0 0 5 30 31 0 0 0…1 1 1 0" */
|
|
2186
|
-
CustomizeDials?: string;
|
|
2187
|
-
/** ☆☆☆☆ Example: "Unknown (27471)" */
|
|
2188
|
-
DECPosition?: string;
|
|
2189
|
-
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
2190
|
-
DSPFirmwareVersion?: string;
|
|
2191
2150
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2192
2151
|
DarkFocusEnvironment?: string;
|
|
2193
2152
|
/** ★★☆☆ ✔ Example: "(Binary data 280 bytes, use -b option to extract)" */
|
|
@@ -2208,6 +2167,8 @@ export interface MakerNotesTags {
|
|
|
2208
2167
|
DateTimeUTC?: ExifDateTime | string;
|
|
2209
2168
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2210
2169
|
DaylightSavings?: string;
|
|
2170
|
+
/** ☆☆☆☆ Example: "Unknown (27471)" */
|
|
2171
|
+
DECPosition?: string;
|
|
2211
2172
|
/** ☆☆☆☆ ✔ Example: "Erase selected" */
|
|
2212
2173
|
DefaultEraseOption?: string;
|
|
2213
2174
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
@@ -2244,32 +2205,38 @@ export interface MakerNotesTags {
|
|
|
2244
2205
|
DirectoryIndex?: number;
|
|
2245
2206
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2246
2207
|
DirectoryNumber?: number;
|
|
2208
|
+
/** ☆☆☆☆ ✔ Example: "DISP - Cycle Information Display (shooting)" */
|
|
2209
|
+
DispButton?: string;
|
|
2247
2210
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2248
2211
|
DisplayAllAFPoints?: string;
|
|
2249
2212
|
/** ☆☆☆☆ ✔ Example: 9.5 */
|
|
2250
2213
|
DisplayAperture?: number;
|
|
2251
2214
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2252
2215
|
DistortionControl?: string;
|
|
2253
|
-
/** ☆☆☆☆ ✔ Example: "88 0 -136 -288 -480 -696 -944 -1200 -1480 -1752 -2040 0 0 0 0 0" */
|
|
2254
|
-
DistortionCorrParams?: string;
|
|
2255
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
2256
|
-
DistortionCorrParamsNumber?: string;
|
|
2257
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2258
|
-
DistortionCorrParamsPresent?: string;
|
|
2259
2216
|
/** ★☆☆☆ ✔ Example: "Unknown (60)" */
|
|
2260
2217
|
DistortionCorrection?: string;
|
|
2261
2218
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2262
2219
|
DistortionCorrectionSetting?: string;
|
|
2263
2220
|
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2264
2221
|
DistortionCorrectionValue?: number;
|
|
2222
|
+
/** ☆☆☆☆ ✔ Example: "88 0 -136 -288 -480 -696 -944 -1200 -1480 -1752 -2040 0 0 0 0 0" */
|
|
2223
|
+
DistortionCorrParams?: string;
|
|
2224
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
2225
|
+
DistortionCorrParamsNumber?: string;
|
|
2226
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2227
|
+
DistortionCorrParamsPresent?: string;
|
|
2265
2228
|
/** ☆☆☆☆ ✔ Example: "Single Frame" */
|
|
2266
2229
|
DriveModeSetting?: string;
|
|
2267
2230
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2268
2231
|
DriveSpeed?: string;
|
|
2232
|
+
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
2233
|
+
DSPFirmwareVersion?: string;
|
|
2269
2234
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2270
2235
|
DualPixelRaw?: string;
|
|
2271
2236
|
/** ☆☆☆☆ ✔ Example: "(Binary data 1024 bytes, use -b option to extract)" */
|
|
2272
2237
|
DustRemovalData?: BinaryField | string;
|
|
2238
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2239
|
+
DXCropAlert?: string;
|
|
2273
2240
|
/** ☆☆☆☆ ✔ Example: "9 Points" */
|
|
2274
2241
|
DynamicAFArea?: string;
|
|
2275
2242
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2294,16 +2261,6 @@ export interface MakerNotesTags {
|
|
|
2294
2261
|
DynamicRangeOptimizerSetting?: string;
|
|
2295
2262
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2296
2263
|
DynamicRangeSetting?: string;
|
|
2297
|
-
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
2298
|
-
ETTLII?: string;
|
|
2299
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2300
|
-
EVStepSize?: string;
|
|
2301
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
|
|
2302
|
-
EVSteps?: string;
|
|
2303
|
-
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2304
|
-
EXRAuto?: string;
|
|
2305
|
-
/** ☆☆☆☆ ✔ Example: "HR (High Resolution)" */
|
|
2306
|
-
EXRMode?: string;
|
|
2307
2264
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2308
2265
|
EasyExposureComp?: string;
|
|
2309
2266
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2330,22 +2287,26 @@ export interface MakerNotesTags {
|
|
|
2330
2287
|
EpsonSoftware?: string;
|
|
2331
2288
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2332
2289
|
EquipmentVersion?: string;
|
|
2290
|
+
/** ☆☆☆☆ ✔ Example: "Evaluative" */
|
|
2291
|
+
ETTLII?: string;
|
|
2333
2292
|
/** ☆☆☆☆ Example: 89 */
|
|
2334
2293
|
EventNumber?: number;
|
|
2294
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV Steps" */
|
|
2295
|
+
EVSteps?: string;
|
|
2296
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2297
|
+
EVStepSize?: string;
|
|
2335
2298
|
/** ☆☆☆☆ ✔ Example: "97.5 mm" */
|
|
2336
2299
|
ExitPupilPosition?: string;
|
|
2300
|
+
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
2301
|
+
ExposureBracketingIndicatorLast?: string;
|
|
2337
2302
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2338
2303
|
ExposureBracketShotNumber?: number;
|
|
2339
2304
|
/** ☆☆☆☆ ✔ Example: 0.5 */
|
|
2340
2305
|
ExposureBracketStepSize?: number;
|
|
2341
2306
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2342
2307
|
ExposureBracketValue?: number;
|
|
2343
|
-
/** ☆☆☆☆ ✔ Example: "Not Indicated" */
|
|
2344
|
-
ExposureBracketingIndicatorLast?: string;
|
|
2345
2308
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2346
2309
|
ExposureCompAutoCancel?: string;
|
|
2347
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2348
|
-
ExposureCompStepSize?: string;
|
|
2349
2310
|
/** ☆☆☆☆ ✔ Example: "Ambient and Flash" */
|
|
2350
2311
|
ExposureCompensationMode?: string;
|
|
2351
2312
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -2353,6 +2314,8 @@ export interface MakerNotesTags {
|
|
|
2353
2314
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2354
2315
|
ExposureCompensationSetting?: number;
|
|
2355
2316
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2317
|
+
ExposureCompStepSize?: string;
|
|
2318
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2356
2319
|
ExposureControlStep?: string;
|
|
2357
2320
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2358
2321
|
ExposureControlStepSize?: string;
|
|
@@ -2376,6 +2339,12 @@ export interface MakerNotesTags {
|
|
|
2376
2339
|
ExposureTuning?: number;
|
|
2377
2340
|
/** ★☆☆☆ ✔ Example: "Good" */
|
|
2378
2341
|
ExposureWarning?: string;
|
|
2342
|
+
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2343
|
+
EXRAuto?: string;
|
|
2344
|
+
/** ☆☆☆☆ ✔ Example: "HR (High Resolution)" */
|
|
2345
|
+
EXRMode?: string;
|
|
2346
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2347
|
+
ExtendedMenuBanks?: string;
|
|
2379
2348
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2380
2349
|
ExtendedShutterSpeeds?: string;
|
|
2381
2350
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2400,10 +2369,10 @@ export interface MakerNotesTags {
|
|
|
2400
2369
|
ExternalFlashFirmware?: string;
|
|
2401
2370
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
2402
2371
|
ExternalFlashFlags?: string;
|
|
2403
|
-
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2404
|
-
ExternalFlashGValue?: number;
|
|
2405
2372
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2406
2373
|
ExternalFlashGuideNumber?: string;
|
|
2374
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2375
|
+
ExternalFlashGValue?: number;
|
|
2407
2376
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
2408
2377
|
ExternalFlashMode?: number;
|
|
2409
2378
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2422,8 +2391,6 @@ export interface MakerNotesTags {
|
|
|
2422
2391
|
EyeDetection?: string;
|
|
2423
2392
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2424
2393
|
EyeStartAF?: string;
|
|
2425
|
-
/** ☆☆☆☆ ✔ Example: "Enable; 0; 8; 0" */
|
|
2426
|
-
FEMicroadjustment?: string;
|
|
2427
2394
|
/** ☆☆☆☆ ✔ Example: "Unknown (II*)" */
|
|
2428
2395
|
FaceDetect?: string;
|
|
2429
2396
|
/** ☆☆☆☆ ✔ Example: "(Binary data 383 bytes, use -b option to extract)" */
|
|
@@ -2450,14 +2417,16 @@ export interface MakerNotesTags {
|
|
|
2450
2417
|
FacePosition?: string;
|
|
2451
2418
|
/** ☆☆☆☆ ✔ Example: "918 1058 1959 2101" */
|
|
2452
2419
|
FacePositions?: string;
|
|
2453
|
-
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2454
|
-
FaceWidth?: number;
|
|
2455
2420
|
/** ★★★☆ ✔ Example: 65535 */
|
|
2456
2421
|
FacesDetected?: number;
|
|
2457
2422
|
/** ☆☆☆☆ ✔ Example: 12336 */
|
|
2458
2423
|
FacesRecognized?: number;
|
|
2424
|
+
/** ☆☆☆☆ ✔ Example: 35 */
|
|
2425
|
+
FaceWidth?: number;
|
|
2459
2426
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2460
2427
|
Fade?: number;
|
|
2428
|
+
/** ☆☆☆☆ ✔ Example: "Enable; 0; 8; 0" */
|
|
2429
|
+
FEMicroadjustment?: string;
|
|
2461
2430
|
/** ☆☆☆☆ ✔ Example: "X3F" */
|
|
2462
2431
|
FileFormat?: string;
|
|
2463
2432
|
/** ☆☆☆☆ ✔ Example: 9984 */
|
|
@@ -2684,6 +2653,8 @@ export interface MakerNotesTags {
|
|
|
2684
2653
|
FocusHoldButton?: string;
|
|
2685
2654
|
/** ☆☆☆☆ ✔ Example: "0100" */
|
|
2686
2655
|
FocusInfoVersion?: string;
|
|
2656
|
+
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2657
|
+
FocusingScreen?: string;
|
|
2687
2658
|
/** ☆☆☆☆ ✔ Example: "9504 6336 6029 2587" */
|
|
2688
2659
|
FocusLocation?: string;
|
|
2689
2660
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
@@ -2700,7 +2671,7 @@ export interface MakerNotesTags {
|
|
|
2700
2671
|
FocusPeakingLevel?: string;
|
|
2701
2672
|
/** ★☆☆☆ ✔ Example: "972 1296" */
|
|
2702
2673
|
FocusPixel?: string;
|
|
2703
|
-
/** ☆☆☆☆
|
|
2674
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2704
2675
|
FocusPointPersistence?: string;
|
|
2705
2676
|
/** ☆☆☆☆ Example: "Normal" */
|
|
2706
2677
|
FocusPointSelectionSpeed?: string;
|
|
@@ -2718,6 +2689,8 @@ export interface MakerNotesTags {
|
|
|
2718
2689
|
FocusRange?: string;
|
|
2719
2690
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2720
2691
|
FocusRangeIndex?: number;
|
|
2692
|
+
/** ☆☆☆☆ ✔ Example: "Focus" */
|
|
2693
|
+
FocusResult?: string;
|
|
2721
2694
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2722
2695
|
FocusRingRotation?: string;
|
|
2723
2696
|
/** ☆☆☆☆ Example: "M" */
|
|
@@ -2728,6 +2701,8 @@ export interface MakerNotesTags {
|
|
|
2728
2701
|
FocusShiftInterval?: string;
|
|
2729
2702
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2730
2703
|
FocusShiftNumberShots?: number;
|
|
2704
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2705
|
+
FocusShiftShooting?: string;
|
|
2731
2706
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2732
2707
|
FocusShiftStepWidth?: number;
|
|
2733
2708
|
/** ☆☆☆☆ ✔ Example: "Not confirmed, Tracking" */
|
|
@@ -2740,8 +2715,6 @@ export interface MakerNotesTags {
|
|
|
2740
2715
|
FocusTrackingLockOn?: string;
|
|
2741
2716
|
/** ★☆☆☆ ✔ Example: "Out of focus" */
|
|
2742
2717
|
FocusWarning?: string;
|
|
2743
|
-
/** ☆☆☆☆ ✔ Example: "Eh-A" */
|
|
2744
|
-
FocusingScreen?: string;
|
|
2745
2718
|
/** ☆☆☆☆ Example: "Standard Form" */
|
|
2746
2719
|
FolderName?: string;
|
|
2747
2720
|
/** ☆☆☆☆ ✔ Example: 373 */
|
|
@@ -2776,14 +2749,14 @@ export interface MakerNotesTags {
|
|
|
2776
2749
|
FuncButtonPlusDials?: string;
|
|
2777
2750
|
/** ☆☆☆☆ ✔ Example: "ISO Display" */
|
|
2778
2751
|
FunctionButton?: string;
|
|
2752
|
+
/** ☆☆☆☆ ✔ Example: 256 */
|
|
2753
|
+
GainBase?: number;
|
|
2779
2754
|
/** ☆☆☆☆ Example: "4320x3240" */
|
|
2780
2755
|
GEImageSize?: string;
|
|
2781
2756
|
/** ☆☆☆☆ Example: "GEDSC DIGITAL CAMERA " */
|
|
2782
2757
|
GEMake?: string;
|
|
2783
2758
|
/** ☆☆☆☆ Example: "J1470S" */
|
|
2784
2759
|
GEModel?: string;
|
|
2785
|
-
/** ☆☆☆☆ ✔ Example: 256 */
|
|
2786
|
-
GainBase?: number;
|
|
2787
2760
|
/** ☆☆☆☆ Example: "1279,-900,0" */
|
|
2788
2761
|
GimbalDegree?: string;
|
|
2789
2762
|
/** ☆☆☆☆ ✔ Example: "n/a; User-Selected" */
|
|
@@ -2836,14 +2809,14 @@ export interface MakerNotesTags {
|
|
|
2836
2809
|
HiddenDataLength?: number;
|
|
2837
2810
|
/** ☆☆☆☆ Example: 7995392 */
|
|
2838
2811
|
HiddenDataOffset?: number;
|
|
2812
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2813
|
+
HighFrameRate?: string;
|
|
2839
2814
|
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
2840
2815
|
HighISONoiseReduction?: string;
|
|
2841
|
-
/** ☆☆☆☆ Example: 4 */
|
|
2842
|
-
HighLowKeyAdj?: number;
|
|
2843
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2844
|
-
HighSpeedSync?: string;
|
|
2845
2816
|
/** ☆☆☆☆ Example: 0.1 */
|
|
2846
2817
|
Highlight?: number;
|
|
2818
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2819
|
+
Highlights?: number;
|
|
2847
2820
|
/** ☆☆☆☆ ✔ Example: "0 0" */
|
|
2848
2821
|
HighlightShadow?: string;
|
|
2849
2822
|
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
@@ -2852,8 +2825,10 @@ export interface MakerNotesTags {
|
|
|
2852
2825
|
HighlightTonePriority?: string;
|
|
2853
2826
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2854
2827
|
HighlightWarning?: string;
|
|
2855
|
-
/** ☆☆☆☆
|
|
2856
|
-
|
|
2828
|
+
/** ☆☆☆☆ Example: 4 */
|
|
2829
|
+
HighLowKeyAdj?: number;
|
|
2830
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2831
|
+
HighSpeedSync?: string;
|
|
2857
2832
|
/** ☆☆☆☆ Example: "disable, " */
|
|
2858
2833
|
Histogram?: string;
|
|
2859
2834
|
/** ☆☆☆☆ ✔ Example: "ndon" */
|
|
@@ -2874,46 +2849,6 @@ export interface MakerNotesTags {
|
|
|
2874
2849
|
HueAdjustment?: string;
|
|
2875
2850
|
/** ☆☆☆☆ Example: "(Binary data 8 bytes, use -b option to extract)" */
|
|
2876
2851
|
HyperlapsDebugInfo?: BinaryField | string;
|
|
2877
|
-
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2878
|
-
ISO2?: number;
|
|
2879
|
-
/** ☆☆☆☆ Example: "On" */
|
|
2880
|
-
ISOAuto?: string;
|
|
2881
|
-
/** ☆☆☆☆ ✔ Example: "Same As Without Flash" */
|
|
2882
|
-
ISOAutoFlashLimit?: string;
|
|
2883
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
|
|
2884
|
-
ISOAutoHiLimit?: string;
|
|
2885
|
-
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2886
|
-
ISOAutoMax?: number;
|
|
2887
|
-
/** ☆☆☆☆ ✔ Example: 80 */
|
|
2888
|
-
ISOAutoMin?: number;
|
|
2889
|
-
/** ☆☆☆☆ Example: "Shutter Speed Control; 1/32" */
|
|
2890
|
-
ISOAutoMinSpeed?: string;
|
|
2891
|
-
/** ☆☆☆☆ ✔ Example: "Auto (Faster)" */
|
|
2892
|
-
ISOAutoShutterTime?: string;
|
|
2893
|
-
/** ☆☆☆☆ ✔ Example: "Show Frame Count" */
|
|
2894
|
-
ISODisplay?: string;
|
|
2895
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2896
|
-
ISOExpansion?: string;
|
|
2897
|
-
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2898
|
-
ISOFloor?: number;
|
|
2899
|
-
/** ☆☆☆☆ Example: "Auto" */
|
|
2900
|
-
ISOSelected?: string;
|
|
2901
|
-
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2902
|
-
ISOSelection?: string;
|
|
2903
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2904
|
-
ISOSensitivityStep?: string;
|
|
2905
|
-
/** ☆☆☆☆ ✔ Example: 90 */
|
|
2906
|
-
ISOSetting?: number;
|
|
2907
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2908
|
-
ISOSpeedExpansion?: string;
|
|
2909
|
-
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
2910
|
-
ISOSpeedIncrements?: string;
|
|
2911
|
-
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
2912
|
-
ISOSpeedRange?: string;
|
|
2913
|
-
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2914
|
-
ISOStepSize?: string;
|
|
2915
|
-
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
2916
|
-
ISOValue?: number;
|
|
2917
2852
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2918
2853
|
Illumination?: string;
|
|
2919
2854
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
@@ -3024,10 +2959,50 @@ export interface MakerNotesTags {
|
|
|
3024
2959
|
IntervalNumber?: number;
|
|
3025
2960
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3026
2961
|
IntervalPriority?: string;
|
|
3027
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3028
|
-
IntervalShooting?: string;
|
|
3029
2962
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3030
2963
|
Intervals?: number;
|
|
2964
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2965
|
+
IntervalShooting?: string;
|
|
2966
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2967
|
+
ISO2?: number;
|
|
2968
|
+
/** ☆☆☆☆ Example: "On" */
|
|
2969
|
+
ISOAuto?: string;
|
|
2970
|
+
/** ☆☆☆☆ ✔ Example: "Same As Without Flash" */
|
|
2971
|
+
ISOAutoFlashLimit?: string;
|
|
2972
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
|
|
2973
|
+
ISOAutoHiLimit?: string;
|
|
2974
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2975
|
+
ISOAutoMax?: number;
|
|
2976
|
+
/** ☆☆☆☆ ✔ Example: 80 */
|
|
2977
|
+
ISOAutoMin?: number;
|
|
2978
|
+
/** ☆☆☆☆ Example: "Shutter Speed Control; 1/32" */
|
|
2979
|
+
ISOAutoMinSpeed?: string;
|
|
2980
|
+
/** ☆☆☆☆ ✔ Example: "Auto (Faster)" */
|
|
2981
|
+
ISOAutoShutterTime?: string;
|
|
2982
|
+
/** ☆☆☆☆ ✔ Example: "Show Frame Count" */
|
|
2983
|
+
ISODisplay?: string;
|
|
2984
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2985
|
+
ISOExpansion?: string;
|
|
2986
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2987
|
+
ISOFloor?: number;
|
|
2988
|
+
/** ☆☆☆☆ Example: "Auto" */
|
|
2989
|
+
ISOSelected?: string;
|
|
2990
|
+
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2991
|
+
ISOSelection?: string;
|
|
2992
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2993
|
+
ISOSensitivityStep?: string;
|
|
2994
|
+
/** ☆☆☆☆ ✔ Example: 90 */
|
|
2995
|
+
ISOSetting?: number;
|
|
2996
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2997
|
+
ISOSpeedExpansion?: string;
|
|
2998
|
+
/** ☆☆☆☆ ✔ Example: "1/3 Stop" */
|
|
2999
|
+
ISOSpeedIncrements?: string;
|
|
3000
|
+
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
3001
|
+
ISOSpeedRange?: string;
|
|
3002
|
+
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
3003
|
+
ISOStepSize?: string;
|
|
3004
|
+
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
3005
|
+
ISOValue?: number;
|
|
3031
3006
|
/** ☆☆☆☆ ✔ Example: "n/a (Movie)" */
|
|
3032
3007
|
JPEGQuality?: string;
|
|
3033
3008
|
/** ☆☆☆☆ ✔ Example: "Size Priority" */
|
|
@@ -3035,6 +3010,8 @@ export interface MakerNotesTags {
|
|
|
3035
3010
|
/** ☆☆☆☆ ✔ Example: "10 MP" */
|
|
3036
3011
|
JpgRecordedPixels?: string;
|
|
3037
3012
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3013
|
+
KeepExposure?: string;
|
|
3014
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3038
3015
|
KeystoneCompensation?: string;
|
|
3039
3016
|
/** ☆☆☆☆ ✔ Example: "Vertical" */
|
|
3040
3017
|
KeystoneDirection?: string;
|
|
@@ -3054,6 +3031,12 @@ export interface MakerNotesTags {
|
|
|
3054
3031
|
KodakModel?: string;
|
|
3055
3032
|
/** ☆☆☆☆ Example: "1.0.0.0" */
|
|
3056
3033
|
KodakVersion?: string;
|
|
3034
|
+
/** ☆☆☆☆ ✔ Example: "English" */
|
|
3035
|
+
Language?: string;
|
|
3036
|
+
/** ☆☆☆☆ Example: 92 */
|
|
3037
|
+
LastFileNumber?: number;
|
|
3038
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3039
|
+
LateralChromaticAberration?: string;
|
|
3057
3040
|
/** ☆☆☆☆ ✔ Example: "Retain power off status" */
|
|
3058
3041
|
LCDDisplayAtPowerOn?: string;
|
|
3059
3042
|
/** ☆☆☆☆ ✔ Example: "With Shutter Button only" */
|
|
@@ -3064,17 +3047,9 @@ export interface MakerNotesTags {
|
|
|
3064
3047
|
LCDIlluminationDuringBulb?: string;
|
|
3065
3048
|
/** ☆☆☆☆ ✔ Example: "Remain. shots/File no." */
|
|
3066
3049
|
LCDPanels?: string;
|
|
3067
|
-
/** ☆☆☆☆ ✔ Example: "Masked" */
|
|
3068
|
-
LVShootingAreaDisplay?: string;
|
|
3069
|
-
/** ☆☆☆☆ ✔ Example: "English" */
|
|
3070
|
-
Language?: string;
|
|
3071
|
-
/** ☆☆☆☆ Example: 92 */
|
|
3072
|
-
LastFileNumber?: number;
|
|
3073
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3074
|
-
LateralChromaticAberration?: string;
|
|
3075
3050
|
/** ☆☆☆☆ Example: "4.0 to 22" */
|
|
3076
3051
|
LensApertureRange?: string;
|
|
3077
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3052
|
+
/** ☆☆☆☆ ✔ Example: "None (Disabled)" */
|
|
3078
3053
|
LensControlRing?: string;
|
|
3079
3054
|
/** ☆☆☆☆ ✔ Example: "0802" */
|
|
3080
3055
|
LensDataVersion?: string;
|
|
@@ -3084,8 +3059,6 @@ export interface MakerNotesTags {
|
|
|
3084
3059
|
LensDriveNoAF?: string;
|
|
3085
3060
|
/** ☆☆☆☆ ✔ Example: "Continue Focus Search" */
|
|
3086
3061
|
LensDriveWhenAFImpossible?: string;
|
|
3087
|
-
/** ☆☆☆☆ ✔ Example: 8.67 */
|
|
3088
|
-
LensFStops?: number;
|
|
3089
3062
|
/** ☆☆☆☆ Example: "RL8 :V01390000 " */
|
|
3090
3063
|
LensFirmware?: string;
|
|
3091
3064
|
/** ☆☆☆☆ ✔ Example: "Ver.04.000" */
|
|
@@ -3098,6 +3071,8 @@ export interface MakerNotesTags {
|
|
|
3098
3071
|
LensFocusFunctionButtons?: string;
|
|
3099
3072
|
/** ☆☆☆☆ ✔ Example: "Unknown (72)" */
|
|
3100
3073
|
LensFormat?: string;
|
|
3074
|
+
/** ☆☆☆☆ ✔ Example: 8.67 */
|
|
3075
|
+
LensFStops?: number;
|
|
3101
3076
|
/** ☆☆☆☆ ✔ Example: "AE/AF Lock" */
|
|
3102
3077
|
LensFunc1Button?: string;
|
|
3103
3078
|
/** ☆☆☆☆ ✔ Example: "AF-On" */
|
|
@@ -3110,7 +3085,7 @@ export interface MakerNotesTags {
|
|
|
3110
3085
|
LensModulationOptimizer?: string;
|
|
3111
3086
|
/** ☆☆☆☆ ✔ Example: "Unknown (74)" */
|
|
3112
3087
|
LensMount?: string;
|
|
3113
|
-
/** ☆☆☆☆ ✔ Example: "Z-mount
|
|
3088
|
+
/** ☆☆☆☆ ✔ Example: "Z-mount" */
|
|
3114
3089
|
LensMountType?: string;
|
|
3115
3090
|
/** ☆☆☆☆ ✔ Example: 91 */
|
|
3116
3091
|
LensPositionAbsolute?: number;
|
|
@@ -3144,6 +3119,8 @@ export interface MakerNotesTags {
|
|
|
3144
3119
|
LevelOrientation?: string;
|
|
3145
3120
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3146
3121
|
LightCondition?: number;
|
|
3122
|
+
/** ☆☆☆☆ Example: "Shadow Enhance Low" */
|
|
3123
|
+
LightingMode?: string;
|
|
3147
3124
|
/** ☆☆☆☆ Example: 8 */
|
|
3148
3125
|
LightReading?: number;
|
|
3149
3126
|
/** ☆☆☆☆ Example: "Unknown (512)" */
|
|
@@ -3154,8 +3131,6 @@ export interface MakerNotesTags {
|
|
|
3154
3131
|
LightValueCenter?: number;
|
|
3155
3132
|
/** ☆☆☆☆ ✔ Example: 7.796875 */
|
|
3156
3133
|
LightValuePeriphery?: number;
|
|
3157
|
-
/** ☆☆☆☆ Example: "Shadow Enhance Low" */
|
|
3158
|
-
LightingMode?: string;
|
|
3159
3134
|
/** ☆☆☆☆ ✔ Example: "No Restrictions" */
|
|
3160
3135
|
LimitAFAreaModeSelection?: string;
|
|
3161
3136
|
/** ☆☆☆☆ ✔ Example: 12735 */
|
|
@@ -3196,22 +3171,20 @@ export interface MakerNotesTags {
|
|
|
3196
3171
|
LocationName?: string;
|
|
3197
3172
|
/** ☆☆☆☆ ✔ Example: "Protect (hold:record memo); 31" */
|
|
3198
3173
|
LockMicrophoneButton?: string;
|
|
3199
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3200
|
-
LongExposureNRUsed?: string;
|
|
3201
3174
|
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
3202
3175
|
LongExposureNoiseReduction?: string;
|
|
3176
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3177
|
+
LongExposureNRUsed?: string;
|
|
3203
3178
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3204
3179
|
LowLightAF?: string;
|
|
3205
3180
|
/** ☆☆☆☆ ✔ Example: 0.014752804 */
|
|
3206
3181
|
LuminanceNoiseAmplitude?: number;
|
|
3207
3182
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
3208
3183
|
LuminanceNoiseReduction?: string;
|
|
3184
|
+
/** ☆☆☆☆ ✔ Example: "Masked" */
|
|
3185
|
+
LVShootingAreaDisplay?: string;
|
|
3209
3186
|
/** ☆☆☆☆ Example: 0 */
|
|
3210
3187
|
M16CVersion?: number;
|
|
3211
|
-
/** ☆☆☆☆ ✔ Example: "Bulgaria (284)" */
|
|
3212
|
-
MCCData?: string;
|
|
3213
|
-
/** ☆☆☆☆ ✔ Example: 99 */
|
|
3214
|
-
MCUVersion?: number;
|
|
3215
3188
|
/** ★★☆☆ ✔ Example: "Unknown (3)" */
|
|
3216
3189
|
Macro?: string;
|
|
3217
3190
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3234,10 +3207,10 @@ export interface MakerNotesTags {
|
|
|
3234
3207
|
ManometerPressure?: string;
|
|
3235
3208
|
/** ☆☆☆☆ ✔ Example: "400 m, 1320 ft" */
|
|
3236
3209
|
ManometerReading?: string;
|
|
3237
|
-
/** ☆☆☆☆ ✔ Example: "Stops at AF Area Edges" */
|
|
3238
|
-
ManualAFPointSelPattern?: string;
|
|
3239
3210
|
/** ☆☆☆☆ ✔ Example: "Stops at AF area edges" */
|
|
3240
3211
|
ManualAFPointSelectPattern?: string;
|
|
3212
|
+
/** ☆☆☆☆ ✔ Example: "Stops at AF Area Edges" */
|
|
3213
|
+
ManualAFPointSelPattern?: string;
|
|
3241
3214
|
/** ☆☆☆☆ ✔ Example: "On (1/64 strength)" */
|
|
3242
3215
|
ManualFlash?: string;
|
|
3243
3216
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
@@ -3270,6 +3243,10 @@ export interface MakerNotesTags {
|
|
|
3270
3243
|
MaxFaces?: string;
|
|
3271
3244
|
/** ★★☆☆ ✔ Example: "96.2 mm" */
|
|
3272
3245
|
MaxFocalLength?: string;
|
|
3246
|
+
/** ☆☆☆☆ ✔ Example: "Bulgaria (284)" */
|
|
3247
|
+
MCCData?: string;
|
|
3248
|
+
/** ☆☆☆☆ ✔ Example: 99 */
|
|
3249
|
+
MCUVersion?: number;
|
|
3273
3250
|
/** ★★☆☆ ✔ Example: 9.97 */
|
|
3274
3251
|
MeasuredEV?: number;
|
|
3275
3252
|
/** ☆☆☆☆ ✔ Example: 9.375 */
|
|
@@ -3296,14 +3273,14 @@ export interface MakerNotesTags {
|
|
|
3296
3273
|
MergedImages?: number;
|
|
3297
3274
|
/** ☆☆☆☆ ✔ Example: "THm211000000000" */
|
|
3298
3275
|
MetaVersion?: string;
|
|
3299
|
-
/** ☆☆☆☆ Example: "Matrix metering" */
|
|
3300
|
-
MeterMode?: string;
|
|
3301
3276
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
3302
3277
|
Metering?: string;
|
|
3303
3278
|
/** ☆☆☆☆ ✔ Example: "Within Range" */
|
|
3304
3279
|
MeteringOffScaleIndicator?: string;
|
|
3305
3280
|
/** ☆☆☆☆ ✔ Example: "8 s" */
|
|
3306
3281
|
MeteringTime?: string;
|
|
3282
|
+
/** ☆☆☆☆ Example: "Matrix metering" */
|
|
3283
|
+
MeterMode?: string;
|
|
3307
3284
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3308
3285
|
MidRangeSharpness?: string;
|
|
3309
3286
|
/** ★★☆☆ ✔ Example: 9.8 */
|
|
@@ -3336,10 +3313,10 @@ export interface MakerNotesTags {
|
|
|
3336
3313
|
MirrorLockup?: string;
|
|
3337
3314
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
3338
3315
|
ModeDialPosition?: string;
|
|
3339
|
-
/** ☆☆☆☆ ✔ Example: 2018 */
|
|
3340
|
-
ModelReleaseYear?: number;
|
|
3341
3316
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3342
3317
|
ModelingFlash?: string;
|
|
3318
|
+
/** ☆☆☆☆ ✔ Example: 2018 */
|
|
3319
|
+
ModelReleaseYear?: number;
|
|
3343
3320
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3344
3321
|
ModifiedColorTemp?: number;
|
|
3345
3322
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -3394,6 +3371,8 @@ export interface MakerNotesTags {
|
|
|
3394
3371
|
MovieAFAreaMode?: string;
|
|
3395
3372
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
3396
3373
|
MovieAFTrackingSensitivity?: string;
|
|
3374
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
3375
|
+
MovieFlickerReduction?: string;
|
|
3397
3376
|
/** ☆☆☆☆ ✔ Example: "Zoom (Low)" */
|
|
3398
3377
|
MovieFunc1Button?: string;
|
|
3399
3378
|
/** ☆☆☆☆ ✔ Example: "Zoom (1:1)" */
|
|
@@ -3412,6 +3391,8 @@ export interface MakerNotesTags {
|
|
|
3412
3391
|
MovieISOAutoControlManualMode?: string;
|
|
3413
3392
|
/** ☆☆☆☆ ✔ Example: "ISO 6400" */
|
|
3414
3393
|
MovieISOAutoHiLimit?: string;
|
|
3394
|
+
/** ☆☆☆☆ ✔ Example: "Power Aperture" */
|
|
3395
|
+
MovieLensControlRing?: string;
|
|
3415
3396
|
/** ☆☆☆☆ ✔ Example: "Center Focus Point" */
|
|
3416
3397
|
MovieMultiSelector?: string;
|
|
3417
3398
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
@@ -3424,6 +3405,8 @@ export interface MakerNotesTags {
|
|
|
3424
3405
|
MovieSubSelectorAssignment?: string;
|
|
3425
3406
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3426
3407
|
MovieSubSelectorAssignmentPlusDials?: string;
|
|
3408
|
+
/** ☆☆☆☆ ✔ Example: "H.265 10-bit (MOV)" */
|
|
3409
|
+
MovieType?: string;
|
|
3427
3410
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3428
3411
|
MovieWhiteBalanceSameAsPhoto?: string;
|
|
3429
3412
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -3440,14 +3423,18 @@ export interface MakerNotesTags {
|
|
|
3440
3423
|
MultiExposureOverlayMode?: string;
|
|
3441
3424
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3442
3425
|
MultiExposureShots?: number;
|
|
3443
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3426
|
+
/** ☆☆☆☆ ✔ Example: "0103" */
|
|
3444
3427
|
MultiExposureVersion?: string;
|
|
3445
|
-
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3446
|
-
MultiFrameNREffect?: string;
|
|
3447
3428
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3448
3429
|
MultiFrameNoiseReduction?: string;
|
|
3430
|
+
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3431
|
+
MultiFrameNREffect?: string;
|
|
3449
3432
|
/** ☆☆☆☆ ✔ Example: "On (quick control dial)" */
|
|
3450
3433
|
MultiFunctionLock?: string;
|
|
3434
|
+
/** ☆☆☆☆ ✔ Example: "On (2 frames); 1" */
|
|
3435
|
+
MultipleExposureMode?: string;
|
|
3436
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (15)" */
|
|
3437
|
+
MultipleExposureSet?: string;
|
|
3451
3438
|
/** ☆☆☆☆ ✔ Example: "Reset Meter-off Delay" */
|
|
3452
3439
|
MultiSelector?: string;
|
|
3453
3440
|
/** ☆☆☆☆ ✔ Example: "Start Movie Recording" */
|
|
@@ -3456,10 +3443,6 @@ export interface MakerNotesTags {
|
|
|
3456
3443
|
MultiSelectorPlaybackMode?: string;
|
|
3457
3444
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point (Reset)" */
|
|
3458
3445
|
MultiSelectorShootMode?: string;
|
|
3459
|
-
/** ☆☆☆☆ ✔ Example: "On (2 frames); 1" */
|
|
3460
|
-
MultipleExposureMode?: string;
|
|
3461
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (15)" */
|
|
3462
|
-
MultipleExposureSet?: string;
|
|
3463
3446
|
/** ★☆☆☆ ✔ Example: "Vivid" */
|
|
3464
3447
|
MyColorMode?: string;
|
|
3465
3448
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
@@ -3468,7 +3451,7 @@ export interface MakerNotesTags {
|
|
|
3468
3451
|
NEFBitDepth?: string;
|
|
3469
3452
|
/** ☆☆☆☆ ✔ Example: "Uncompressed (reduced to 12 bit)" */
|
|
3470
3453
|
NEFCompression?: string;
|
|
3471
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
3454
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 624 bytes, use -b option to extract)" */
|
|
3472
3455
|
NEFLinearizationTable?: BinaryField | string;
|
|
3473
3456
|
/** ☆☆☆☆ Example: "Off (Auto)" */
|
|
3474
3457
|
NeutralDensityFilter?: string;
|
|
@@ -3478,36 +3461,34 @@ export interface MakerNotesTags {
|
|
|
3478
3461
|
NikonImageSize?: string;
|
|
3479
3462
|
/** ☆☆☆☆ ✔ Example: "Matrix" */
|
|
3480
3463
|
NikonMeteringMode?: string;
|
|
3481
|
-
/** ☆☆☆☆ ✔ Example: "Release Locked" */
|
|
3482
|
-
NoMemoryCard?: string;
|
|
3483
3464
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3484
3465
|
NoiseFilter?: string;
|
|
3485
3466
|
/** ★★☆☆ ✔ Example: "[4]" */
|
|
3486
3467
|
NoiseReduction?: string;
|
|
3487
3468
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3488
3469
|
NoiseReductionStrength?: number;
|
|
3470
|
+
/** ☆☆☆☆ ✔ Example: "Release Locked" */
|
|
3471
|
+
NoMemoryCard?: string;
|
|
3489
3472
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
3490
3473
|
NominalMaxAperture?: number;
|
|
3491
3474
|
/** ☆☆☆☆ ✔ Example: 7 */
|
|
3492
3475
|
NominalMinAperture?: number;
|
|
3493
3476
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3494
3477
|
NormalWhiteLevel?: number;
|
|
3495
|
-
/** ★☆☆☆ ✔ Example: 9 */
|
|
3496
|
-
NumAFPoints?: number;
|
|
3497
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3498
|
-
NumFaceElements?: number;
|
|
3499
|
-
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3500
|
-
NumFacePositions?: number;
|
|
3501
3478
|
/** ☆☆☆☆ ✔ Example: "55 Points" */
|
|
3502
3479
|
NumberOfFocusPoints?: string;
|
|
3503
3480
|
/** ☆☆☆☆ ✔ Example: 32 */
|
|
3504
3481
|
NumberOffsets?: number;
|
|
3482
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3483
|
+
NumFaceElements?: number;
|
|
3484
|
+
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
3485
|
+
NumFacePositions?: number;
|
|
3486
|
+
/** ☆☆☆☆ Example: "inf" */
|
|
3487
|
+
ObjectDistance?: string;
|
|
3505
3488
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
3506
3489
|
OISMode?: number;
|
|
3507
3490
|
/** ☆☆☆☆ ✔ Example: "Select Center Focus Point" */
|
|
3508
3491
|
OKButton?: string;
|
|
3509
|
-
/** ☆☆☆☆ Example: "inf" */
|
|
3510
|
-
ObjectDistance?: string;
|
|
3511
3492
|
/** ☆☆☆☆ ✔ Example: 960 */
|
|
3512
3493
|
OlympusImageHeight?: number;
|
|
3513
3494
|
/** ☆☆☆☆ ✔ Example: 3648 */
|
|
@@ -3544,8 +3525,6 @@ export interface MakerNotesTags {
|
|
|
3544
3525
|
OutputLUT?: BinaryField | string;
|
|
3545
3526
|
/** ★★☆☆ ✔ Example: "Itsa Myowna" */
|
|
3546
3527
|
OwnerName?: string;
|
|
3547
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3548
|
-
POILevel?: number;
|
|
3549
3528
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3550
3529
|
PaintingFilter?: string;
|
|
3551
3530
|
/** ☆☆☆☆ ✔ Example: "2023:01:19 22:32:42.04" */
|
|
@@ -3610,14 +3589,14 @@ export interface MakerNotesTags {
|
|
|
3610
3589
|
PhotoIdentifier?: string;
|
|
3611
3590
|
/** ☆☆☆☆ ✔ Example: "Info Up-down, Playback Left-right" */
|
|
3612
3591
|
PhotoInfoPlayback?: string;
|
|
3592
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3593
|
+
PhotosAppFeatureFlags?: number;
|
|
3613
3594
|
/** ☆☆☆☆ ✔ Example: "A" */
|
|
3614
3595
|
PhotoShootingMenuBank?: string;
|
|
3615
3596
|
/** ☆☆☆☆ ✔ Example: "FX (36x24)" */
|
|
3616
3597
|
PhotoShootingMenuBankImageArea?: string;
|
|
3617
3598
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
3618
3599
|
PhotoStyle?: string;
|
|
3619
|
-
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3620
|
-
PhotosAppFeatureFlags?: number;
|
|
3621
3600
|
/** ☆☆☆☆ ✔ Example: "Quick Adjust" */
|
|
3622
3601
|
PictureControlAdjust?: string;
|
|
3623
3602
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
@@ -3626,7 +3605,7 @@ export interface MakerNotesTags {
|
|
|
3626
3605
|
PictureControlName?: string;
|
|
3627
3606
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3628
3607
|
PictureControlQuickAdjust?: string;
|
|
3629
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3608
|
+
/** ☆☆☆☆ ✔ Example: "0310" */
|
|
3630
3609
|
PictureControlVersion?: string;
|
|
3631
3610
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3632
3611
|
PictureEffect?: string;
|
|
@@ -3664,28 +3643,38 @@ export interface MakerNotesTags {
|
|
|
3664
3643
|
PixelShiftInfo?: string;
|
|
3665
3644
|
/** ☆☆☆☆ Example: "On" */
|
|
3666
3645
|
PixelShiftResolution?: string;
|
|
3667
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3668
|
-
|
|
3646
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3647
|
+
PixelShiftShooting?: string;
|
|
3669
3648
|
/** ☆☆☆☆ ✔ Example: "5 min" */
|
|
3670
3649
|
PlaybackMenusTime?: string;
|
|
3671
3650
|
/** ☆☆☆☆ ✔ Example: "20 s" */
|
|
3672
3651
|
PlaybackMonitorOffTime?: string;
|
|
3673
3652
|
/** ☆☆☆☆ ✔ Example: "Use Separate Zoom Buttons" */
|
|
3674
3653
|
PlaybackZoom?: string;
|
|
3654
|
+
/** ☆☆☆☆ ✔ Example: "Auto Rotate" */
|
|
3655
|
+
PlayDisplay?: string;
|
|
3656
|
+
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3657
|
+
POILevel?: number;
|
|
3675
3658
|
/** ☆☆☆☆ Example: "Off" */
|
|
3676
3659
|
PopupFlash?: string;
|
|
3660
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3661
|
+
PortraitImpressionBalance?: string;
|
|
3677
3662
|
/** ☆☆☆☆ Example: "Off" */
|
|
3678
3663
|
PortraitRefiner?: string;
|
|
3679
3664
|
/** ☆☆☆☆ ✔ Example: "Post Focus Auto Merging or None" */
|
|
3680
3665
|
PostFocusMerging?: string;
|
|
3666
|
+
/** ☆☆☆☆ ✔ Example: "Max" */
|
|
3667
|
+
PostReleaseBurstLength?: string;
|
|
3681
3668
|
/** ☆☆☆☆ ✔ Example: "External Power Supply" */
|
|
3682
3669
|
PowerSource?: string;
|
|
3683
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3670
|
+
/** ☆☆☆☆ ✔ Example: "2024:07:01 09:23:16" */
|
|
3684
3671
|
PowerUpTime?: ExifDateTime | string;
|
|
3685
3672
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3686
3673
|
PreAF?: string;
|
|
3687
3674
|
/** ☆☆☆☆ ✔ Example: 3.2996109 */
|
|
3688
3675
|
PreCaptureFrames?: number;
|
|
3676
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3677
|
+
PreReleaseBurstLength?: string;
|
|
3689
3678
|
/** ☆☆☆☆ ✔ Example: "Daylight" */
|
|
3690
3679
|
PresetWhiteBalance?: string;
|
|
3691
3680
|
/** ☆☆☆☆ ✔ Example: "Preview" */
|
|
@@ -3728,14 +3717,6 @@ export interface MakerNotesTags {
|
|
|
3728
3717
|
QuickControlDialInMeter?: string;
|
|
3729
3718
|
/** ☆☆☆☆ Example: "Off" */
|
|
3730
3719
|
QuickShot?: string;
|
|
3731
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3732
|
-
RAWFileType?: string;
|
|
3733
|
-
/** ☆☆☆☆ ✔ Example: "Varies With Rotation Speed" */
|
|
3734
|
-
RFLensMFFocusRingSensitivity?: string;
|
|
3735
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3736
|
-
RFLensType?: string;
|
|
3737
|
-
/** ☆☆☆☆ ✔ Example: "USA" */
|
|
3738
|
-
ROMOperationMode?: string;
|
|
3739
3720
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3740
3721
|
RangeFinder?: string;
|
|
3741
3722
|
/** ☆☆☆☆ ✔ Example: "RAW+Small/Normal" */
|
|
@@ -3756,6 +3737,8 @@ export interface MakerNotesTags {
|
|
|
3756
3737
|
RawDevContrastValue?: string;
|
|
3757
3738
|
/** ☆☆☆☆ ✔ Example: "Original" */
|
|
3758
3739
|
RawDevEditStatus?: string;
|
|
3740
|
+
/** ☆☆☆☆ Example: "9 (Q)" */
|
|
3741
|
+
RawDevelopmentProcess?: string;
|
|
3759
3742
|
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
3760
3743
|
RawDevEngine?: string;
|
|
3761
3744
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -3768,6 +3751,8 @@ export interface MakerNotesTags {
|
|
|
3768
3751
|
RawDevMemoryColorEmphasis?: number;
|
|
3769
3752
|
/** ☆☆☆☆ ✔ Example: "Noise Filter" */
|
|
3770
3753
|
RawDevNoiseReduction?: string;
|
|
3754
|
+
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
3755
|
+
RawDevPictureMode?: string;
|
|
3771
3756
|
/** ☆☆☆☆ ✔ Example: "0 -2 2" */
|
|
3772
3757
|
RawDevPMContrast?: string;
|
|
3773
3758
|
/** ☆☆☆☆ ✔ Example: "2 0 -2 1" */
|
|
@@ -3778,8 +3763,6 @@ export interface MakerNotesTags {
|
|
|
3778
3763
|
RawDevPMSaturation?: string;
|
|
3779
3764
|
/** ☆☆☆☆ ✔ Example: "0 -2 2" */
|
|
3780
3765
|
RawDevPMSharpness?: string;
|
|
3781
|
-
/** ☆☆☆☆ ✔ Example: "Natural" */
|
|
3782
|
-
RawDevPictureMode?: string;
|
|
3783
3766
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
3784
3767
|
RawDevSaturationEmphasis?: string;
|
|
3785
3768
|
/** ☆☆☆☆ ✔ Example: "(none)" */
|
|
@@ -3794,8 +3777,8 @@ export interface MakerNotesTags {
|
|
|
3794
3777
|
RawDevWhiteBalance?: string;
|
|
3795
3778
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3796
3779
|
RawDevWhiteBalanceValue?: number;
|
|
3797
|
-
/** ☆☆☆☆
|
|
3798
|
-
|
|
3780
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3781
|
+
RAWFileType?: string;
|
|
3799
3782
|
/** ☆☆☆☆ ✔ Example: "3712 2462" */
|
|
3800
3783
|
RawImageCenter?: string;
|
|
3801
3784
|
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
@@ -3814,14 +3797,14 @@ export interface MakerNotesTags {
|
|
|
3814
3797
|
RecordDisplay?: string;
|
|
3815
3798
|
/** ☆☆☆☆ ✔ Example: 58 */
|
|
3816
3799
|
RecordID?: number;
|
|
3817
|
-
/** ★★☆☆ ✔ Example: "TIF+JPEG" */
|
|
3818
|
-
RecordMode?: string;
|
|
3819
|
-
/** ☆☆☆☆ Example: "Record while down" */
|
|
3820
|
-
RecordShutterRelease?: string;
|
|
3821
3800
|
/** ☆☆☆☆ Example: "JPEG" */
|
|
3822
3801
|
RecordingFormat?: string;
|
|
3823
3802
|
/** ☆☆☆☆ Example: "Auto" */
|
|
3824
3803
|
RecordingMode?: string;
|
|
3804
|
+
/** ★★☆☆ ✔ Example: "TIF+JPEG" */
|
|
3805
|
+
RecordMode?: string;
|
|
3806
|
+
/** ☆☆☆☆ Example: "Record while down" */
|
|
3807
|
+
RecordShutterRelease?: string;
|
|
3825
3808
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3826
3809
|
RedEyeRemoval?: string;
|
|
3827
3810
|
/** ☆☆☆☆ Example: "8D" */
|
|
@@ -3864,6 +3847,10 @@ export interface MakerNotesTags {
|
|
|
3864
3847
|
ReverseIndicators?: string;
|
|
3865
3848
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
3866
3849
|
ReverseShutterSpeedAperture?: string;
|
|
3850
|
+
/** ☆☆☆☆ ✔ Example: "Varies With Rotation Speed" */
|
|
3851
|
+
RFLensMFFocusRingSensitivity?: string;
|
|
3852
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3853
|
+
RFLensType?: string;
|
|
3867
3854
|
/** ☆☆☆☆ Example: "2012:03:29 18:17:52" */
|
|
3868
3855
|
RicohDate?: ExifDateTime | string;
|
|
3869
3856
|
/** ☆☆☆☆ Example: 960 */
|
|
@@ -3878,6 +3865,8 @@ export interface MakerNotesTags {
|
|
|
3878
3865
|
Roll?: number;
|
|
3879
3866
|
/** ☆☆☆☆ ✔ Example: 90 */
|
|
3880
3867
|
RollAngle?: number;
|
|
3868
|
+
/** ☆☆☆☆ ✔ Example: "USA" */
|
|
3869
|
+
ROMOperationMode?: string;
|
|
3881
3870
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3882
3871
|
RunTimeEpoch?: number;
|
|
3883
3872
|
/** ☆☆☆☆ ✔ Example: "Valid" */
|
|
@@ -3886,16 +3875,6 @@ export interface MakerNotesTags {
|
|
|
3886
3875
|
RunTimeScale?: number;
|
|
3887
3876
|
/** ☆☆☆☆ ✔ Example: 987823130000000 */
|
|
3888
3877
|
RunTimeValue?: number;
|
|
3889
|
-
/** ☆☆☆☆ ✔ Example: "sRAW2 (sRAW)" */
|
|
3890
|
-
SRAWQuality?: string;
|
|
3891
|
-
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
3892
|
-
SRActive?: string;
|
|
3893
|
-
/** ☆☆☆☆ ✔ Example: "97 mm" */
|
|
3894
|
-
SRFocalLength?: string;
|
|
3895
|
-
/** ☆☆☆☆ ✔ Example: "4.25 s or longer" */
|
|
3896
|
-
SRHalfPressTime?: string;
|
|
3897
|
-
/** ☆☆☆☆ ✔ Example: "Stabilized, Not ready" */
|
|
3898
|
-
SRResult?: string;
|
|
3899
3878
|
/** ☆☆☆☆ ✔ Example: "Enable (Tv/Av)" */
|
|
3900
3879
|
SafetyShift?: string;
|
|
3901
3880
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
@@ -3944,12 +3923,12 @@ export interface MakerNotesTags {
|
|
|
3944
3923
|
ScreenTips?: string;
|
|
3945
3924
|
/** ☆☆☆☆ ✔ Example: "Unknown (1)" */
|
|
3946
3925
|
SecondarySlotFunction?: string;
|
|
3947
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (87)" */
|
|
3948
|
-
SelectAFAreaSelectMode?: string;
|
|
3949
|
-
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], […], [14]" */
|
|
3950
|
-
SelectAFAreaSelectionMode?: string;
|
|
3951
3926
|
/** ☆☆☆☆ ✔ Example: "45 points" */
|
|
3952
3927
|
SelectableAFPoint?: string;
|
|
3928
|
+
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], […], [14]" */
|
|
3929
|
+
SelectAFAreaSelectionMode?: string;
|
|
3930
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (87)" */
|
|
3931
|
+
SelectAFAreaSelectMode?: string;
|
|
3953
3932
|
/** ★★☆☆ ✔ Example: "Self-timer 5 or 10 s" */
|
|
3954
3933
|
SelfTimer?: string;
|
|
3955
3934
|
/** ☆☆☆☆ ✔ Example: "0.5 s" */
|
|
@@ -4038,10 +4017,10 @@ export interface MakerNotesTags {
|
|
|
4038
4017
|
Shadow?: number;
|
|
4039
4018
|
/** ☆☆☆☆ Example: "On" */
|
|
4040
4019
|
ShadowCorrection?: string;
|
|
4041
|
-
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
4042
|
-
ShadowTone?: string;
|
|
4043
4020
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4044
4021
|
Shadows?: number;
|
|
4022
|
+
/** ☆☆☆☆ ✔ Example: "0 (normal)" */
|
|
4023
|
+
ShadowTone?: string;
|
|
4045
4024
|
/** ☆☆☆☆ ✔ Example: "On but Disabled" */
|
|
4046
4025
|
ShakeReduction?: string;
|
|
4047
4026
|
/** ☆☆☆☆ Example: "Normal" */
|
|
@@ -4082,7 +4061,7 @@ export interface MakerNotesTags {
|
|
|
4082
4061
|
ShortOwnerName?: string;
|
|
4083
4062
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4084
4063
|
ShortReleaseTimeLag?: string;
|
|
4085
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4064
|
+
/** ☆☆☆☆ ✔ Example: "0809" */
|
|
4086
4065
|
ShotInfoVersion?: string;
|
|
4087
4066
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
4088
4067
|
ShotNumberSincePowerUp?: number;
|
|
@@ -4154,8 +4133,6 @@ export interface MakerNotesTags {
|
|
|
4154
4133
|
SonyExposureTime?: string;
|
|
4155
4134
|
/** ☆☆☆☆ ✔ Example: 8.8 */
|
|
4156
4135
|
SonyFNumber?: number;
|
|
4157
|
-
/** ☆☆☆☆ ✔ Example: 926 */
|
|
4158
|
-
SonyISO?: number;
|
|
4159
4136
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
4160
4137
|
SonyImageHeight?: number;
|
|
4161
4138
|
/** ☆☆☆☆ ✔ Example: 6376 */
|
|
@@ -4166,6 +4143,8 @@ export interface MakerNotesTags {
|
|
|
4166
4143
|
SonyImageWidth?: number;
|
|
4167
4144
|
/** ☆☆☆☆ ✔ Example: 9568 */
|
|
4168
4145
|
SonyImageWidthMax?: number;
|
|
4146
|
+
/** ☆☆☆☆ ✔ Example: 926 */
|
|
4147
|
+
SonyISO?: number;
|
|
4169
4148
|
/** ☆☆☆☆ ✔ Example: 5.5 */
|
|
4170
4149
|
SonyMaxAperture?: number;
|
|
4171
4150
|
/** ☆☆☆☆ ✔ Example: 6.4 */
|
|
@@ -4202,10 +4181,20 @@ export interface MakerNotesTags {
|
|
|
4202
4181
|
SpotFocusPointX?: number;
|
|
4203
4182
|
/** ☆☆☆☆ Example: 960 */
|
|
4204
4183
|
SpotFocusPointY?: number;
|
|
4205
|
-
/** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
|
|
4206
|
-
SpotMeterLinkToAFPoint?: string;
|
|
4207
4184
|
/** ★☆☆☆ ✔ Example: "Center" */
|
|
4208
4185
|
SpotMeteringMode?: string;
|
|
4186
|
+
/** ☆☆☆☆ ✔ Example: "Enable (use active AF point)" */
|
|
4187
|
+
SpotMeterLinkToAFPoint?: string;
|
|
4188
|
+
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
4189
|
+
SRActive?: string;
|
|
4190
|
+
/** ☆☆☆☆ ✔ Example: "sRAW2 (sRAW)" */
|
|
4191
|
+
SRAWQuality?: string;
|
|
4192
|
+
/** ☆☆☆☆ ✔ Example: "97 mm" */
|
|
4193
|
+
SRFocalLength?: string;
|
|
4194
|
+
/** ☆☆☆☆ ✔ Example: "4.25 s or longer" */
|
|
4195
|
+
SRHalfPressTime?: string;
|
|
4196
|
+
/** ☆☆☆☆ ✔ Example: "Stabilized, Not ready" */
|
|
4197
|
+
SRResult?: string;
|
|
4209
4198
|
/** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
|
|
4210
4199
|
StackedImage?: string;
|
|
4211
4200
|
/** ☆☆☆☆ ✔ Example: "6 s" */
|
|
@@ -4220,6 +4209,16 @@ export interface MakerNotesTags {
|
|
|
4220
4209
|
StoreByOrientation?: string;
|
|
4221
4210
|
/** ☆☆☆☆ ✔ Example: "10 Frames" */
|
|
4222
4211
|
SubDialFrameAdvance?: string;
|
|
4212
|
+
/** ☆☆☆☆ ✔ Example: "People" */
|
|
4213
|
+
SubjectDetection?: string;
|
|
4214
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4215
|
+
SubjectDetectionAreaMF?: string;
|
|
4216
|
+
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
4217
|
+
SubjectMotion?: string;
|
|
4218
|
+
/** ☆☆☆☆ Example: "None" */
|
|
4219
|
+
SubjectProgram?: string;
|
|
4220
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4221
|
+
SubjectToDetect?: string;
|
|
4223
4222
|
/** ☆☆☆☆ ✔ Example: "Focus Point Selection" */
|
|
4224
4223
|
SubSelector?: string;
|
|
4225
4224
|
/** ☆☆☆☆ ✔ Example: "Focus Point Selection" */
|
|
@@ -4228,16 +4227,10 @@ export interface MakerNotesTags {
|
|
|
4228
4227
|
SubSelectorCenter?: string;
|
|
4229
4228
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4230
4229
|
SubSelectorPlusDials?: string;
|
|
4231
|
-
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
4232
|
-
SubjectMotion?: string;
|
|
4233
|
-
/** ☆☆☆☆ Example: "None" */
|
|
4234
|
-
SubjectProgram?: string;
|
|
4235
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4236
|
-
SubjectToDetect?: string;
|
|
4237
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4238
|
-
SuperMacro?: string;
|
|
4239
4230
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4240
4231
|
SuperimposedDisplay?: string;
|
|
4232
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4233
|
+
SuperMacro?: string;
|
|
4241
4234
|
/** ☆☆☆☆ ✔ Example: 100 */
|
|
4242
4235
|
SvISOSetting?: number;
|
|
4243
4236
|
/** ☆☆☆☆ ✔ Example: "Right" */
|
|
@@ -4284,11 +4277,17 @@ export interface MakerNotesTags {
|
|
|
4284
4277
|
Time?: ExifTime | string;
|
|
4285
4278
|
/** ☆☆☆☆ ✔ Example: 50336257 */
|
|
4286
4279
|
TimeLapseShotNumber?: number;
|
|
4280
|
+
/** ☆☆☆☆ ✔ Example: "Self-timer" */
|
|
4281
|
+
TimerFunctionButton?: string;
|
|
4282
|
+
/** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
|
|
4283
|
+
TimerLength?: string;
|
|
4284
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4285
|
+
TimerRecording?: string;
|
|
4287
4286
|
/** ☆☆☆☆ ✔ Example: "01:48:53.63" */
|
|
4288
4287
|
TimeSincePowerOn?: ExifTime | string;
|
|
4289
4288
|
/** ☆☆☆☆ ✔ Example: "2023:10:13 04:33:41" */
|
|
4290
4289
|
TimeStamp?: ExifDateTime | string;
|
|
4291
|
-
/**
|
|
4290
|
+
/** ★☆☆☆ ✔ Example: "-09:00" */
|
|
4292
4291
|
TimeZone?: string;
|
|
4293
4292
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4294
4293
|
TimeZoneCity?: string;
|
|
@@ -4296,19 +4295,13 @@ export interface MakerNotesTags {
|
|
|
4296
4295
|
TimeZoneCode?: number;
|
|
4297
4296
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4298
4297
|
TimeZoneInfo?: number;
|
|
4299
|
-
/** ☆☆☆☆ ✔ Example: "Self-timer" */
|
|
4300
|
-
TimerFunctionButton?: string;
|
|
4301
|
-
/** ☆☆☆☆ ✔ Example: "Disable; 6 s: 6; 16 s: 16; After release: 2" */
|
|
4302
|
-
TimerLength?: string;
|
|
4303
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4304
|
-
TimerRecording?: string;
|
|
4305
4298
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
4306
4299
|
ToneComp?: string;
|
|
4307
4300
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
4308
4301
|
ToneCurve?: string;
|
|
4309
4302
|
/** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
|
|
4310
4303
|
ToneCurveMatching?: BinaryField | string;
|
|
4311
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
4304
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 1505 bytes, use -b option to extract)" */
|
|
4312
4305
|
ToneCurveTable?: BinaryField | string;
|
|
4313
4306
|
/** ☆☆☆☆ ✔ Example: "Highlights; 0; -7; 7; Shadows; 0; -7; 7; Midtones; 0; -7;…0; 0; 0" */
|
|
4314
4307
|
ToneLevel?: string;
|
|
@@ -4336,10 +4329,6 @@ export interface MakerNotesTags {
|
|
|
4336
4329
|
TriggerMode?: string;
|
|
4337
4330
|
/** ☆☆☆☆ ✔ Example: "1/64" */
|
|
4338
4331
|
TvExposureTimeSetting?: string;
|
|
4339
|
-
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4340
|
-
USBPowerDelivery?: string;
|
|
4341
|
-
/** ☆☆☆☆ ✔ Example: "Turns on after one-shot AF" */
|
|
4342
|
-
USMLensElectronicMF?: string;
|
|
4343
4332
|
/** ☆☆☆☆ ✔ Example: "7860345b882000641403450101000000170d0f1d0f11827ca3111430d3000000" */
|
|
4344
4333
|
UniqueID?: string;
|
|
4345
4334
|
/** ☆☆☆☆ Example: "ZME151000007" */
|
|
@@ -4352,6 +4341,8 @@ export interface MakerNotesTags {
|
|
|
4352
4341
|
UsableMeteringModes?: string;
|
|
4353
4342
|
/** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
|
|
4354
4343
|
UsableShootingModes?: string;
|
|
4344
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4345
|
+
USBPowerDelivery?: string;
|
|
4355
4346
|
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4356
4347
|
UserDef1PictureStyle?: string;
|
|
4357
4348
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
@@ -4362,24 +4353,16 @@ export interface MakerNotesTags {
|
|
|
4362
4353
|
UserLabel?: string;
|
|
4363
4354
|
/** ☆☆☆☆ Example: "dpreview " */
|
|
4364
4355
|
UserProfile?: string;
|
|
4365
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4366
|
-
|
|
4367
|
-
/** ★☆☆☆ ✔ Example: 0 */
|
|
4368
|
-
VRDOffset?: number;
|
|
4369
|
-
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
4370
|
-
VRInfoVersion?: string;
|
|
4371
|
-
/** ☆☆☆☆ ✔ Example: "Sport" */
|
|
4372
|
-
VRMode?: string;
|
|
4373
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (1)" */
|
|
4374
|
-
VRType?: string;
|
|
4356
|
+
/** ☆☆☆☆ ✔ Example: "Turns on after one-shot AF" */
|
|
4357
|
+
USMLensElectronicMF?: string;
|
|
4375
4358
|
/** ★☆☆☆ ✔ Example: 99 */
|
|
4376
4359
|
ValidAFPoints?: number;
|
|
4377
4360
|
/** ☆☆☆☆ ✔ Example: "12 0" */
|
|
4378
4361
|
ValidBits?: string;
|
|
4379
|
-
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
4380
|
-
VariProgram?: string;
|
|
4381
4362
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4382
4363
|
VariableLowPassFilter?: string;
|
|
4364
|
+
/** ☆☆☆☆ ✔ Example: "Scene Auto" */
|
|
4365
|
+
VariProgram?: string;
|
|
4383
4366
|
/** ☆☆☆☆ ✔ Example: "Same as AF-On Button" */
|
|
4384
4367
|
VerticalAFOnButton?: string;
|
|
4385
4368
|
/** ☆☆☆☆ ✔ Example: "Exposure Compensation" */
|
|
@@ -4392,6 +4375,8 @@ export interface MakerNotesTags {
|
|
|
4392
4375
|
VerticalMovieFuncButton?: string;
|
|
4393
4376
|
/** ☆☆☆☆ ✔ Example: "Same as MultiSelector" */
|
|
4394
4377
|
VerticalMultiSelector?: string;
|
|
4378
|
+
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4379
|
+
VFDisplayIllumination?: string;
|
|
4395
4380
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4396
4381
|
VibrationReduction?: string;
|
|
4397
4382
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -4400,30 +4385,42 @@ export interface MakerNotesTags {
|
|
|
4400
4385
|
VideoBurstResolution?: string;
|
|
4401
4386
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
4402
4387
|
VideoPreburst?: string;
|
|
4403
|
-
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
4404
|
-
ViewInfoDuringExposure?: string;
|
|
4405
4388
|
/** ☆☆☆☆ ✔ Example: "Frame Count" */
|
|
4406
4389
|
ViewfinderDisplay?: string;
|
|
4407
4390
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4408
4391
|
ViewfinderWarning?: string;
|
|
4409
4392
|
/** ☆☆☆☆ ✔ Example: "Monochrome, WB corrected, One-touch image quality, Noise …on, HDR" */
|
|
4410
4393
|
ViewfinderWarnings?: string;
|
|
4394
|
+
/** ☆☆☆☆ ✔ Example: "Disable" */
|
|
4395
|
+
ViewInfoDuringExposure?: string;
|
|
4411
4396
|
/** ☆☆☆☆ ✔ Example: "ViewFinder" */
|
|
4412
4397
|
ViewingMode?: string;
|
|
4413
4398
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4414
4399
|
VignetteControl?: string;
|
|
4415
4400
|
/** ☆☆☆☆ Example: "Off" */
|
|
4416
4401
|
Vignetting?: string;
|
|
4402
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4403
|
+
VignettingCorrection?: string;
|
|
4417
4404
|
/** ☆☆☆☆ ✔ Example: "36 -17446 -19682 0 15496 -19605 -10627 -28672 187 27452 -… 99 121" */
|
|
4418
4405
|
VignettingCorrParams?: string;
|
|
4419
4406
|
/** ☆☆☆☆ ✔ Example: 97 */
|
|
4420
4407
|
VignettingCorrVersion?: number;
|
|
4421
|
-
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4422
|
-
VignettingCorrection?: string;
|
|
4423
4408
|
/** ☆☆☆☆ Example: "Off" */
|
|
4424
4409
|
VoiceMemo?: string;
|
|
4410
|
+
/** ★☆☆☆ ✔ Example: 0 */
|
|
4411
|
+
VRDOffset?: number;
|
|
4412
|
+
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
4413
|
+
VRInfoVersion?: string;
|
|
4414
|
+
/** ☆☆☆☆ ✔ Example: "Sport" */
|
|
4415
|
+
VRMode?: string;
|
|
4416
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (1)" */
|
|
4417
|
+
VRType?: string;
|
|
4418
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4419
|
+
WatercolorFilter?: string;
|
|
4425
4420
|
/** ☆☆☆☆ ✔ Example: 9235 */
|
|
4426
4421
|
WBBlueLevel?: number;
|
|
4422
|
+
/** ☆☆☆☆ ✔ Example: "WB Bracketing Disabled" */
|
|
4423
|
+
WBBracketingSteps?: string;
|
|
4427
4424
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4428
4425
|
WBBracketMode?: string;
|
|
4429
4426
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4432,8 +4429,8 @@ export interface MakerNotesTags {
|
|
|
4432
4429
|
WBBracketValueAB?: number;
|
|
4433
4430
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4434
4431
|
WBBracketValueGM?: number;
|
|
4435
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4436
|
-
|
|
4432
|
+
/** ☆☆☆☆ ✔ Example: "Select To Send (PC)" */
|
|
4433
|
+
WBButtonPlaybackMode?: string;
|
|
4437
4434
|
/** ☆☆☆☆ ✔ Example: 60416 */
|
|
4438
4435
|
WBGreenLevel?: number;
|
|
4439
4436
|
/** ☆☆☆☆ ✔ Example: "Rear LCD panel" */
|
|
@@ -4450,8 +4447,6 @@ export interface MakerNotesTags {
|
|
|
4450
4447
|
WBShiftGM?: number;
|
|
4451
4448
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4452
4449
|
WBShiftIntelligentAuto?: number;
|
|
4453
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
4454
|
-
WatercolorFilter?: string;
|
|
4455
4450
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
4456
4451
|
WhiteBalanceAutoAdjustment?: string;
|
|
4457
4452
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4476,7 +4471,7 @@ export interface MakerNotesTags {
|
|
|
4476
4471
|
WhiteBalanceSetting?: string;
|
|
4477
4472
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
4478
4473
|
WhiteBalanceSetup?: string;
|
|
4479
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
4474
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 2201 bytes, use -b option to extract)" */
|
|
4480
4475
|
WhiteBalanceTable?: BinaryField | string;
|
|
4481
4476
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
4482
4477
|
WhiteBalanceTemperature?: string;
|
|
@@ -4508,12 +4503,6 @@ export interface MakerNotesTags {
|
|
|
4508
4503
|
ZoneMatchingOn?: string;
|
|
4509
4504
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4510
4505
|
ZoneMatchingValue?: number;
|
|
4511
|
-
/** ★★☆☆ ✔ Example: 768 */
|
|
4512
|
-
ZoomSourceWidth?: number;
|
|
4513
|
-
/** ☆☆☆☆ ✔ Example: 8 */
|
|
4514
|
-
ZoomStepCount?: number;
|
|
4515
|
-
/** ★★☆☆ ✔ Example: 6000 */
|
|
4516
|
-
ZoomTargetWidth?: number;
|
|
4517
4506
|
/** ☆☆☆☆ ✔ Example: "(Binary data 64581 bytes, use -b option to extract)" */
|
|
4518
4507
|
ZoomedPreviewImage?: BinaryField | string;
|
|
4519
4508
|
/** ☆☆☆☆ ✔ Example: 92592 */
|
|
@@ -4522,6 +4511,12 @@ export interface MakerNotesTags {
|
|
|
4522
4511
|
ZoomedPreviewSize?: string;
|
|
4523
4512
|
/** ☆☆☆☆ ✔ Example: 4184638 */
|
|
4524
4513
|
ZoomedPreviewStart?: number;
|
|
4514
|
+
/** ★★☆☆ ✔ Example: 768 */
|
|
4515
|
+
ZoomSourceWidth?: number;
|
|
4516
|
+
/** ☆☆☆☆ ✔ Example: 8 */
|
|
4517
|
+
ZoomStepCount?: number;
|
|
4518
|
+
/** ★★☆☆ ✔ Example: 6000 */
|
|
4519
|
+
ZoomTargetWidth?: number;
|
|
4525
4520
|
}
|
|
4526
4521
|
/**
|
|
4527
4522
|
* @see https://exiftool.org/TagNames/XMP.html
|
|
@@ -4559,8 +4554,6 @@ export interface XMPTags {
|
|
|
4559
4554
|
BurstID?: string;
|
|
4560
4555
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4561
4556
|
BurstPrimary?: number;
|
|
4562
|
-
/** ☆☆☆☆ Example: 0 */
|
|
4563
|
-
CamReverse?: number;
|
|
4564
4557
|
/** ☆☆☆☆ ✔ Example: "5c62348a-2bbb-4e4c-89d9-3bf6a461ec89" */
|
|
4565
4558
|
CameraBurstID?: string;
|
|
4566
4559
|
/** ☆☆☆☆ Example: "Front" */
|
|
@@ -4571,10 +4564,12 @@ export interface XMPTags {
|
|
|
4571
4564
|
CameraProfile?: string;
|
|
4572
4565
|
/** ☆☆☆☆ ✔ Example: "D4FE5D91640D0C5A01B5633EB8061002" */
|
|
4573
4566
|
CameraProfileDigest?: string;
|
|
4567
|
+
/** ☆☆☆☆ ✔ Example: [{"Camera":{"DepthMap":{"ConfidenceURI":"android/confiden…cal"}}] */
|
|
4568
|
+
Cameras?: Struct[];
|
|
4574
4569
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4575
4570
|
CameraUnit?: string;
|
|
4576
|
-
/** ☆☆☆☆
|
|
4577
|
-
|
|
4571
|
+
/** ☆☆☆☆ Example: 0 */
|
|
4572
|
+
CamReverse?: number;
|
|
4578
4573
|
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4579
4574
|
CaptureMode?: string;
|
|
4580
4575
|
/** ☆☆☆☆ ✔ Example: "https://PhotoStructure.com/" */
|
|
@@ -4599,17 +4594,17 @@ export interface XMPTags {
|
|
|
4599
4594
|
ColorClass?: string;
|
|
4600
4595
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4601
4596
|
ColorLabel?: number;
|
|
4597
|
+
/** ☆☆☆☆ ✔ Example: "" */
|
|
4598
|
+
Colorlabels?: string;
|
|
4602
4599
|
/** ☆☆☆☆ ✔ Example: 25 */
|
|
4603
4600
|
ColorNoiseReduction?: number;
|
|
4604
4601
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4605
4602
|
ColorNoiseReductionDetail?: number;
|
|
4606
4603
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4607
4604
|
ColorNoiseReductionSmoothness?: number;
|
|
4608
|
-
/** ☆☆☆☆ ✔ Example: "" */
|
|
4609
|
-
Colorlabels?: string;
|
|
4610
4605
|
/** ☆☆☆☆ ✔ Example: "This is a comment." */
|
|
4611
4606
|
Comment?: string;
|
|
4612
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length"
|
|
4607
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"Item":{"DataURI":"primary_image","Length"…eg"}}]} */
|
|
4613
4608
|
Container?: Struct;
|
|
4614
4609
|
/** ☆☆☆☆ Example: "/home/username/pictures" */
|
|
4615
4610
|
ContainerDirectory?: ContainerDirectoryItem[] | Struct[];
|
|
@@ -4629,10 +4624,10 @@ export interface XMPTags {
|
|
|
4629
4624
|
CreatorContactInfo?: Struct;
|
|
4630
4625
|
/** ☆☆☆☆ Example: 1 */
|
|
4631
4626
|
CreatorOpenWithUIOptions?: number;
|
|
4632
|
-
/** ☆☆☆☆ ✔ Example: "picnik.com" */
|
|
4633
|
-
CreatorTool?: string;
|
|
4634
4627
|
/** ☆☆☆☆ Example: "Version Ver 1.04 " */
|
|
4635
4628
|
Creatortool?: string;
|
|
4629
|
+
/** ☆☆☆☆ ✔ Example: "picnik.com" */
|
|
4630
|
+
CreatorTool?: string;
|
|
4636
4631
|
/** ☆☆☆☆ Example: 0 */
|
|
4637
4632
|
CropAngle?: number;
|
|
4638
4633
|
/** ☆☆☆☆ Example: 1 */
|
|
@@ -4641,10 +4636,6 @@ export interface XMPTags {
|
|
|
4641
4636
|
CropConstrainToWarp?: number;
|
|
4642
4637
|
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
4643
4638
|
CropLeft?: string;
|
|
4644
|
-
/** ☆☆☆☆ Example: 1 */
|
|
4645
|
-
CropRight?: number;
|
|
4646
|
-
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
4647
|
-
CropTop?: string;
|
|
4648
4639
|
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4649
4640
|
CroppedAreaImageHeightPixels?: number;
|
|
4650
4641
|
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
@@ -4653,6 +4644,10 @@ export interface XMPTags {
|
|
|
4653
4644
|
CroppedAreaLeftPixels?: number;
|
|
4654
4645
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4655
4646
|
CroppedAreaTopPixels?: number;
|
|
4647
|
+
/** ☆☆☆☆ Example: 1 */
|
|
4648
|
+
CropRight?: number;
|
|
4649
|
+
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
4650
|
+
CropTop?: string;
|
|
4656
4651
|
/** ☆☆☆☆ ✔ Example: "2014:05:11 13:08:25.659" */
|
|
4657
4652
|
DateAcquired?: ExifDateTime | string;
|
|
4658
4653
|
/** ☆☆☆☆ ✔ Example: "2023:11:07" */
|
|
@@ -4741,8 +4736,6 @@ export interface XMPTags {
|
|
|
4741
4736
|
GreenHue?: number;
|
|
4742
4737
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4743
4738
|
GreenSaturation?: number;
|
|
4744
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data 49603 bytes, use -b option to extract)" */
|
|
4745
|
-
HDRPMakerNote?: BinaryField | string;
|
|
4746
4739
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4747
4740
|
HasCrop?: boolean;
|
|
4748
4741
|
/** ☆☆☆☆ ✔ Example: "F995C3239BC6E6FC1997814864CD2CA2" */
|
|
@@ -4751,6 +4744,8 @@ export interface XMPTags {
|
|
|
4751
4744
|
HasSettings?: boolean;
|
|
4752
4745
|
/** ☆☆☆☆ ✔ Example: "(Binary data 23388 bytes, use -b option to extract)" */
|
|
4753
4746
|
HdrPlusMakernote?: BinaryField | string;
|
|
4747
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
|
|
4748
|
+
HDRPMakerNote?: BinaryField | string;
|
|
4754
4749
|
/** ☆☆☆☆ ✔ Example: ["点像F11"] */
|
|
4755
4750
|
HierarchicalSubject?: string[];
|
|
4756
4751
|
/** ☆☆☆☆ ✔ Example: [{"Action":"converted","Parameters":"from image/x-canon-c…alse}}] */
|
|
@@ -4841,7 +4836,7 @@ export interface XMPTags {
|
|
|
4841
4836
|
Marked?: boolean;
|
|
4842
4837
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4843
4838
|
Mask?: string;
|
|
4844
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4839
|
+
/** ☆☆☆☆ ✔ Example: "2024:10:02 15:51:50-07:00" */
|
|
4845
4840
|
MetadataDate?: ExifDateTime | string;
|
|
4846
4841
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
4847
4842
|
MicroVideo?: number;
|
|
@@ -4887,22 +4882,20 @@ export interface XMPTags {
|
|
|
4887
4882
|
OriginalDocumentID?: string;
|
|
4888
4883
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4889
4884
|
OverrideLookVignette?: boolean;
|
|
4890
|
-
/** ☆☆☆☆ ✔ Example: "PM6" */
|
|
4891
|
-
PMVersion?: string;
|
|
4892
4885
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4893
4886
|
ParametricDarks?: number;
|
|
4894
|
-
/** ☆☆☆☆ ✔ Example: 75 */
|
|
4895
|
-
ParametricHighlightSplit?: number;
|
|
4896
4887
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4897
4888
|
ParametricHighlights?: number;
|
|
4889
|
+
/** ☆☆☆☆ ✔ Example: 75 */
|
|
4890
|
+
ParametricHighlightSplit?: number;
|
|
4898
4891
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4899
4892
|
ParametricLights?: number;
|
|
4900
4893
|
/** ☆☆☆☆ ✔ Example: 50 */
|
|
4901
4894
|
ParametricMidtoneSplit?: number;
|
|
4902
|
-
/** ☆☆☆☆ ✔ Example: 25 */
|
|
4903
|
-
ParametricShadowSplit?: number;
|
|
4904
4895
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4905
4896
|
ParametricShadows?: number;
|
|
4897
|
+
/** ☆☆☆☆ ✔ Example: 25 */
|
|
4898
|
+
ParametricShadowSplit?: number;
|
|
4906
4899
|
/** ☆☆☆☆ ✔ Example: ["John Doe"] */
|
|
4907
4900
|
PersonInImage?: string[];
|
|
4908
4901
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4927,6 +4920,8 @@ export interface XMPTags {
|
|
|
4927
4920
|
PickLabel?: number;
|
|
4928
4921
|
/** ☆☆☆☆ ✔ Example: "01.00" */
|
|
4929
4922
|
PipelineVersion?: string;
|
|
4923
|
+
/** ☆☆☆☆ ✔ Example: "PM6" */
|
|
4924
|
+
PMVersion?: string;
|
|
4930
4925
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4931
4926
|
PortraitVersion?: number;
|
|
4932
4927
|
/** ☆☆☆☆ ✔ Example: 22.5 */
|
|
@@ -4941,7 +4936,7 @@ export interface XMPTags {
|
|
|
4941
4936
|
PreservedFileName?: string;
|
|
4942
4937
|
/** ☆☆☆☆ ✔ Example: 11 */
|
|
4943
4938
|
ProcessVersion?: number;
|
|
4944
|
-
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4939
|
+
/** ☆☆☆☆ ✔ Example: [{"Profile":{"CameraIndices":[0],"Type":"DepthPhoto"}}] */
|
|
4945
4940
|
Profiles?: Struct[];
|
|
4946
4941
|
/** ☆☆☆☆ Example: */
|
|
4947
4942
|
ProgramMode?: string;
|
|
@@ -5097,8 +5092,8 @@ export interface XMPTags {
|
|
|
5097
5092
|
* - a checkmark if the tag is used by popular devices (like iPhones), and
|
|
5098
5093
|
* - an example value, JSON stringified.
|
|
5099
5094
|
*
|
|
5100
|
-
* Autogenerated by "npm run mktags" by ExifTool 12.
|
|
5101
|
-
*
|
|
5095
|
+
* Autogenerated by "npm run mktags" by ExifTool 12.97 on Sun Oct 06 2024.
|
|
5096
|
+
* 2752 unique tags were found in 10128 photo and video files.
|
|
5102
5097
|
*
|
|
5103
5098
|
* @see https://exiftool.org/TagNames/
|
|
5104
5099
|
*/
|