exiftool-vendored 28.4.0 → 28.5.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 +14 -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 +60 -33
- package/dist/ReadTask.js.map +1 -1
- package/dist/Tags.d.ts +172 -177
- 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 +1 -1
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";
|
|
@@ -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 13:56:46-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,95 +83,6 @@ 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 {
|
|
175
87
|
/** ☆☆☆☆ Example: 388 */
|
|
176
88
|
Again?: number;
|
|
@@ -338,7 +250,7 @@ export interface APPTags {
|
|
|
338
250
|
CreatorSoftware?: string;
|
|
339
251
|
/** ☆☆☆☆ Example: "2013:03:12 16:31:26" */
|
|
340
252
|
DateTimeGenerated?: ExifDateTime | string;
|
|
341
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
253
|
+
/** ☆☆☆☆ Example: "(Binary data 1011393 bytes, use -b option to extract)" */
|
|
342
254
|
EmbeddedImage?: BinaryField | string;
|
|
343
255
|
/** ☆☆☆☆ Example: 960 */
|
|
344
256
|
EmbeddedImageHeight?: number;
|
|
@@ -410,7 +322,7 @@ export interface APPTags {
|
|
|
410
322
|
PaletteStretch?: number;
|
|
411
323
|
/** ☆☆☆☆ Example: ".basicImgData.objectParams.emissivity" */
|
|
412
324
|
Param0?: string;
|
|
413
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
325
|
+
/** ☆☆☆☆ Example: "(Binary data 614604 bytes, use -b option to extract)" */
|
|
414
326
|
RawThermalImage?: BinaryField | string;
|
|
415
327
|
/** ☆☆☆☆ Example: 90 */
|
|
416
328
|
RawThermalImageHeight?: number;
|
|
@@ -457,6 +369,95 @@ export interface APPTags {
|
|
|
457
369
|
/** ☆☆☆☆ ✔ Example: "4_1SEC" */
|
|
458
370
|
Rate?: string;
|
|
459
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;
|
|
382
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
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: "inf (9.66 m - inf)" */
|
|
395
|
+
DOF?: string;
|
|
396
|
+
/** ☆☆☆☆ ✔ Example: "2021:03:16 18:14:25" */
|
|
397
|
+
DigitalCreationDateTime?: ExifDateTime | string;
|
|
398
|
+
/** ★★☆☆ ✔ Example: "Unknown (3152)" */
|
|
399
|
+
DriveMode?: string;
|
|
400
|
+
/** ☆☆☆☆ ✔ Example: "Not attached" */
|
|
401
|
+
ExtenderStatus?: string;
|
|
402
|
+
/** ★★★★ ✔ Example: "97.7 deg" */
|
|
403
|
+
FOV?: string;
|
|
404
|
+
/** ☆☆☆☆ ✔ Example: "Optional,TTL" */
|
|
405
|
+
FlashType?: string;
|
|
406
|
+
/** ★★★★ ✔ Example: "99.7 mm (35 mm equivalent: 554.0 mm)" */
|
|
407
|
+
FocalLength35efl?: 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 315546 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;
|
|
460
|
+
}
|
|
460
461
|
/**
|
|
461
462
|
* @see https://exiftool.org/TagNames/FlashPix.html
|
|
462
463
|
*/
|
|
@@ -484,36 +485,6 @@ export interface FlashPixTags {
|
|
|
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
|
*/
|
|
@@ -566,14 +561,10 @@ export interface EXIFTags {
|
|
|
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." */
|
|
@@ -592,7 +583,7 @@ export interface EXIFTags {
|
|
|
592
583
|
DefaultCropOrigin?: string;
|
|
593
584
|
/** ☆☆☆☆ ✔ Example: "8272 6200" */
|
|
594
585
|
DefaultCropSize?: string;
|
|
595
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
586
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 0 bytes, use -b option to extract)" */
|
|
596
587
|
DeviceSettingDescription?: BinaryField | string;
|
|
597
588
|
/** ★★★☆ ✔ Example: 8.1319764 */
|
|
598
589
|
DigitalZoomRatio?: number;
|
|
@@ -602,8 +593,6 @@ export interface EXIFTags {
|
|
|
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)" */
|
|
@@ -620,8 +609,6 @@ export interface EXIFTags {
|
|
|
620
609
|
Flash?: string;
|
|
621
610
|
/** ☆☆☆☆ ✔ Example: 54 */
|
|
622
611
|
FlashEnergy?: number;
|
|
623
|
-
/** ★★★★ ✔ Example: "?" */
|
|
624
|
-
FlashpixVersion?: string;
|
|
625
612
|
/** ★★★★ ✔ Example: "99.7 mm" */
|
|
626
613
|
FocalLength?: string;
|
|
627
614
|
/** ★★★☆ ✔ Example: "9920 mm" */
|
|
@@ -712,7 +699,7 @@ export interface EXIFTags {
|
|
|
712
699
|
InteropIndex?: string;
|
|
713
700
|
/** ★★★★ ✔ Example: "undef undef undef" */
|
|
714
701
|
InteropVersion?: string;
|
|
715
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
702
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
|
|
716
703
|
JpgFromRaw?: BinaryField;
|
|
717
704
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
718
705
|
JpgFromRawLength?: number;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -1438,8 +1401,6 @@ export interface MakerNotesTags {
|
|
|
1438
1401
|
AFAreaXPositions?: string;
|
|
1439
1402
|
/** ☆☆☆☆ ✔ Example: 744 */
|
|
1440
1403
|
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
1404
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1444
1405
|
AFAreaZoneSize?: string;
|
|
1445
1406
|
/** ☆☆☆☆ ✔ Example: "none" */
|
|
@@ -1472,7 +1433,7 @@ export interface MakerNotesTags {
|
|
|
1472
1433
|
AFFineTuneIndex?: string;
|
|
1473
1434
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1474
1435
|
AFIlluminator?: string;
|
|
1475
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1436
|
+
/** ☆☆☆☆ ✔ Example: "0401" */
|
|
1476
1437
|
AFInfo2Version?: string;
|
|
1477
1438
|
/** ☆☆☆☆ ✔ Example: "90 ms" */
|
|
1478
1439
|
AFIntegrationTime?: string;
|
|
@@ -1794,6 +1755,8 @@ export interface MakerNotesTags {
|
|
|
1794
1755
|
BodyFirmwareVersion?: number;
|
|
1795
1756
|
/** ☆☆☆☆ Example: "SID:14101105 " */
|
|
1796
1757
|
BodySerialNumber?: string;
|
|
1758
|
+
/** ☆☆☆☆ ✔ Example: 1 */
|
|
1759
|
+
BracketIncrement?: number;
|
|
1797
1760
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1798
1761
|
BracketMode?: string;
|
|
1799
1762
|
/** ☆☆☆☆ ✔ Example: "Disabled" */
|
|
@@ -1816,6 +1779,8 @@ export interface MakerNotesTags {
|
|
|
1816
1779
|
BuildNumber?: string;
|
|
1817
1780
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1818
1781
|
BulbDuration?: number;
|
|
1782
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1783
|
+
BurstGroupID?: number;
|
|
1819
1784
|
/** ☆☆☆☆ ✔ Example: "Unlimited" */
|
|
1820
1785
|
BurstMode?: string;
|
|
1821
1786
|
/** ☆☆☆☆ Example: 3 */
|
|
@@ -1918,6 +1883,8 @@ export interface MakerNotesTags {
|
|
|
1918
1883
|
CmdDialsChangeMainSub?: string;
|
|
1919
1884
|
/** ☆☆☆☆ ✔ Example: "On (Image Review Excluded)" */
|
|
1920
1885
|
CmdDialsMenuAndPlayback?: string;
|
|
1886
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1887
|
+
CmdDialsReverseRotExposureComp?: number;
|
|
1921
1888
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1922
1889
|
CmdDialsReverseRotation?: string;
|
|
1923
1890
|
/** ☆☆☆☆ Example: "0 0 0" */
|
|
@@ -2120,6 +2087,8 @@ export interface MakerNotesTags {
|
|
|
2120
2087
|
ControlDialSet?: string;
|
|
2121
2088
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
2122
2089
|
ControlMode?: string;
|
|
2090
|
+
/** ☆☆☆☆ ✔ Example: "High" */
|
|
2091
|
+
ControlRingResponse?: string;
|
|
2123
2092
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2124
2093
|
ControlRingRotation?: string;
|
|
2125
2094
|
/** ☆☆☆☆ Example: 0 */
|
|
@@ -2188,9 +2157,11 @@ export interface MakerNotesTags {
|
|
|
2188
2157
|
DECPosition?: string;
|
|
2189
2158
|
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
2190
2159
|
DSPFirmwareVersion?: string;
|
|
2160
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2161
|
+
DXCropAlert?: string;
|
|
2191
2162
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2192
2163
|
DarkFocusEnvironment?: string;
|
|
2193
|
-
/** ★★☆☆ ✔ Example: "(Binary data
|
|
2164
|
+
/** ★★☆☆ ✔ Example: "(Binary data 114 bytes, use -b option to extract)" */
|
|
2194
2165
|
DataDump?: BinaryField | string;
|
|
2195
2166
|
/** ☆☆☆☆ ✔ Example: 8289 */
|
|
2196
2167
|
DataScaling?: number;
|
|
@@ -2244,6 +2215,8 @@ export interface MakerNotesTags {
|
|
|
2244
2215
|
DirectoryIndex?: number;
|
|
2245
2216
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2246
2217
|
DirectoryNumber?: number;
|
|
2218
|
+
/** ☆☆☆☆ ✔ Example: "DISP - Cycle Information Display (shooting)" */
|
|
2219
|
+
DispButton?: string;
|
|
2247
2220
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2248
2221
|
DisplayAllAFPoints?: string;
|
|
2249
2222
|
/** ☆☆☆☆ ✔ Example: 9.5 */
|
|
@@ -2377,6 +2350,8 @@ export interface MakerNotesTags {
|
|
|
2377
2350
|
/** ★☆☆☆ ✔ Example: "Good" */
|
|
2378
2351
|
ExposureWarning?: string;
|
|
2379
2352
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2353
|
+
ExtendedMenuBanks?: string;
|
|
2354
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2380
2355
|
ExtendedShutterSpeeds?: string;
|
|
2381
2356
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2382
2357
|
ExtendedWBDetect?: string;
|
|
@@ -2700,7 +2675,7 @@ export interface MakerNotesTags {
|
|
|
2700
2675
|
FocusPeakingLevel?: string;
|
|
2701
2676
|
/** ★☆☆☆ ✔ Example: "972 1296" */
|
|
2702
2677
|
FocusPixel?: string;
|
|
2703
|
-
/** ☆☆☆☆
|
|
2678
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
2704
2679
|
FocusPointPersistence?: string;
|
|
2705
2680
|
/** ☆☆☆☆ Example: "Normal" */
|
|
2706
2681
|
FocusPointSelectionSpeed?: string;
|
|
@@ -2718,6 +2693,8 @@ export interface MakerNotesTags {
|
|
|
2718
2693
|
FocusRange?: string;
|
|
2719
2694
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2720
2695
|
FocusRangeIndex?: number;
|
|
2696
|
+
/** ☆☆☆☆ ✔ Example: "Focus" */
|
|
2697
|
+
FocusResult?: string;
|
|
2721
2698
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
2722
2699
|
FocusRingRotation?: string;
|
|
2723
2700
|
/** ☆☆☆☆ Example: "M" */
|
|
@@ -2728,6 +2705,8 @@ export interface MakerNotesTags {
|
|
|
2728
2705
|
FocusShiftInterval?: string;
|
|
2729
2706
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2730
2707
|
FocusShiftNumberShots?: number;
|
|
2708
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2709
|
+
FocusShiftShooting?: string;
|
|
2731
2710
|
/** ☆☆☆☆ ✔ Example: 5 */
|
|
2732
2711
|
FocusShiftStepWidth?: number;
|
|
2733
2712
|
/** ☆☆☆☆ ✔ Example: "Not confirmed, Tracking" */
|
|
@@ -2836,6 +2815,8 @@ export interface MakerNotesTags {
|
|
|
2836
2815
|
HiddenDataLength?: number;
|
|
2837
2816
|
/** ☆☆☆☆ Example: 7995392 */
|
|
2838
2817
|
HiddenDataOffset?: number;
|
|
2818
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2819
|
+
HighFrameRate?: string;
|
|
2839
2820
|
/** ★☆☆☆ ✔ Example: "n/a" */
|
|
2840
2821
|
HighISONoiseReduction?: string;
|
|
2841
2822
|
/** ☆☆☆☆ Example: 4 */
|
|
@@ -3035,6 +3016,8 @@ export interface MakerNotesTags {
|
|
|
3035
3016
|
/** ☆☆☆☆ ✔ Example: "10 MP" */
|
|
3036
3017
|
JpgRecordedPixels?: string;
|
|
3037
3018
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3019
|
+
KeepExposure?: string;
|
|
3020
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3038
3021
|
KeystoneCompensation?: string;
|
|
3039
3022
|
/** ☆☆☆☆ ✔ Example: "Vertical" */
|
|
3040
3023
|
KeystoneDirection?: string;
|
|
@@ -3394,6 +3377,8 @@ export interface MakerNotesTags {
|
|
|
3394
3377
|
MovieAFAreaMode?: string;
|
|
3395
3378
|
/** ☆☆☆☆ ✔ Example: "4 (Normal)" */
|
|
3396
3379
|
MovieAFTrackingSensitivity?: string;
|
|
3380
|
+
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
3381
|
+
MovieFlickerReduction?: string;
|
|
3397
3382
|
/** ☆☆☆☆ ✔ Example: "Zoom (Low)" */
|
|
3398
3383
|
MovieFunc1Button?: string;
|
|
3399
3384
|
/** ☆☆☆☆ ✔ Example: "Zoom (1:1)" */
|
|
@@ -3412,6 +3397,8 @@ export interface MakerNotesTags {
|
|
|
3412
3397
|
MovieISOAutoControlManualMode?: string;
|
|
3413
3398
|
/** ☆☆☆☆ ✔ Example: "ISO 6400" */
|
|
3414
3399
|
MovieISOAutoHiLimit?: string;
|
|
3400
|
+
/** ☆☆☆☆ ✔ Example: "Power Aperture" */
|
|
3401
|
+
MovieLensControlRing?: string;
|
|
3415
3402
|
/** ☆☆☆☆ ✔ Example: "Center Focus Point" */
|
|
3416
3403
|
MovieMultiSelector?: string;
|
|
3417
3404
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
@@ -3440,7 +3427,7 @@ export interface MakerNotesTags {
|
|
|
3440
3427
|
MultiExposureOverlayMode?: string;
|
|
3441
3428
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
3442
3429
|
MultiExposureShots?: number;
|
|
3443
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3430
|
+
/** ☆☆☆☆ ✔ Example: "0103" */
|
|
3444
3431
|
MultiExposureVersion?: string;
|
|
3445
3432
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3446
3433
|
MultiFrameNREffect?: string;
|
|
@@ -3492,8 +3479,6 @@ export interface MakerNotesTags {
|
|
|
3492
3479
|
NominalMinAperture?: number;
|
|
3493
3480
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3494
3481
|
NormalWhiteLevel?: number;
|
|
3495
|
-
/** ★☆☆☆ ✔ Example: 9 */
|
|
3496
|
-
NumAFPoints?: number;
|
|
3497
3482
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3498
3483
|
NumFaceElements?: number;
|
|
3499
3484
|
/** ☆☆☆☆ ✔ Example: 65535 */
|
|
@@ -3626,7 +3611,7 @@ export interface MakerNotesTags {
|
|
|
3626
3611
|
PictureControlName?: string;
|
|
3627
3612
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3628
3613
|
PictureControlQuickAdjust?: string;
|
|
3629
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3614
|
+
/** ☆☆☆☆ ✔ Example: "0310" */
|
|
3630
3615
|
PictureControlVersion?: string;
|
|
3631
3616
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3632
3617
|
PictureEffect?: string;
|
|
@@ -3674,18 +3659,24 @@ export interface MakerNotesTags {
|
|
|
3674
3659
|
PlaybackZoom?: string;
|
|
3675
3660
|
/** ☆☆☆☆ Example: "Off" */
|
|
3676
3661
|
PopupFlash?: string;
|
|
3662
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3663
|
+
PortraitImpressionBalance?: string;
|
|
3677
3664
|
/** ☆☆☆☆ Example: "Off" */
|
|
3678
3665
|
PortraitRefiner?: string;
|
|
3679
3666
|
/** ☆☆☆☆ ✔ Example: "Post Focus Auto Merging or None" */
|
|
3680
3667
|
PostFocusMerging?: string;
|
|
3668
|
+
/** ☆☆☆☆ ✔ Example: "Max" */
|
|
3669
|
+
PostReleaseBurstLength?: string;
|
|
3681
3670
|
/** ☆☆☆☆ ✔ Example: "External Power Supply" */
|
|
3682
3671
|
PowerSource?: string;
|
|
3683
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3672
|
+
/** ☆☆☆☆ ✔ Example: "2024:07:01 09:23:16" */
|
|
3684
3673
|
PowerUpTime?: ExifDateTime | string;
|
|
3685
3674
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3686
3675
|
PreAF?: string;
|
|
3687
3676
|
/** ☆☆☆☆ ✔ Example: 3.2996109 */
|
|
3688
3677
|
PreCaptureFrames?: number;
|
|
3678
|
+
/** ☆☆☆☆ ✔ Example: "None" */
|
|
3679
|
+
PreReleaseBurstLength?: string;
|
|
3689
3680
|
/** ☆☆☆☆ ✔ Example: "Daylight" */
|
|
3690
3681
|
PresetWhiteBalance?: string;
|
|
3691
3682
|
/** ☆☆☆☆ ✔ Example: "Preview" */
|
|
@@ -4082,7 +4073,7 @@ export interface MakerNotesTags {
|
|
|
4082
4073
|
ShortOwnerName?: string;
|
|
4083
4074
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
4084
4075
|
ShortReleaseTimeLag?: string;
|
|
4085
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4076
|
+
/** ☆☆☆☆ ✔ Example: "0809" */
|
|
4086
4077
|
ShotInfoVersion?: string;
|
|
4087
4078
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
4088
4079
|
ShotNumberSincePowerUp?: number;
|
|
@@ -4228,6 +4219,8 @@ export interface MakerNotesTags {
|
|
|
4228
4219
|
SubSelectorCenter?: string;
|
|
4229
4220
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4230
4221
|
SubSelectorPlusDials?: string;
|
|
4222
|
+
/** ☆☆☆☆ ✔ Example: "People" */
|
|
4223
|
+
SubjectDetection?: string;
|
|
4231
4224
|
/** ☆☆☆☆ ✔ Example: "Steady" */
|
|
4232
4225
|
SubjectMotion?: string;
|
|
4233
4226
|
/** ☆☆☆☆ Example: "None" */
|
|
@@ -4288,7 +4281,7 @@ export interface MakerNotesTags {
|
|
|
4288
4281
|
TimeSincePowerOn?: ExifTime | string;
|
|
4289
4282
|
/** ☆☆☆☆ ✔ Example: "2023:10:13 04:33:41" */
|
|
4290
4283
|
TimeStamp?: ExifDateTime | string;
|
|
4291
|
-
/**
|
|
4284
|
+
/** ★☆☆☆ ✔ Example: "-09:00" */
|
|
4292
4285
|
TimeZone?: string;
|
|
4293
4286
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4294
4287
|
TimeZoneCity?: string;
|
|
@@ -4434,6 +4427,8 @@ export interface MakerNotesTags {
|
|
|
4434
4427
|
WBBracketValueGM?: number;
|
|
4435
4428
|
/** ☆☆☆☆ ✔ Example: "WB Bracketing Disabled" */
|
|
4436
4429
|
WBBracketingSteps?: string;
|
|
4430
|
+
/** ☆☆☆☆ ✔ Example: "Select To Send (PC)" */
|
|
4431
|
+
WBButtonPlaybackMode?: string;
|
|
4437
4432
|
/** ☆☆☆☆ ✔ Example: 60416 */
|
|
4438
4433
|
WBGreenLevel?: number;
|
|
4439
4434
|
/** ☆☆☆☆ ✔ Example: "Rear LCD panel" */
|
|
@@ -4573,7 +4568,7 @@ export interface XMPTags {
|
|
|
4573
4568
|
CameraProfileDigest?: string;
|
|
4574
4569
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4575
4570
|
CameraUnit?: string;
|
|
4576
|
-
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/
|
|
4571
|
+
/** ☆☆☆☆ ✔ Example: [{"Camera":{"DepthMap":{"ConfidenceURI":"android/confiden…cal"}}] */
|
|
4577
4572
|
Cameras?: Struct[];
|
|
4578
4573
|
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4579
4574
|
CaptureMode?: string;
|
|
@@ -4609,7 +4604,7 @@ export interface XMPTags {
|
|
|
4609
4604
|
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[];
|
|
@@ -4741,7 +4736,7 @@ export interface XMPTags {
|
|
|
4741
4736
|
GreenHue?: number;
|
|
4742
4737
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4743
4738
|
GreenSaturation?: number;
|
|
4744
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
4739
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 23317 bytes, use -b option to extract)" */
|
|
4745
4740
|
HDRPMakerNote?: BinaryField | string;
|
|
4746
4741
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4747
4742
|
HasCrop?: boolean;
|
|
@@ -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;
|
|
@@ -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.96 on Sun
|
|
5101
|
-
*
|
|
5095
|
+
* Autogenerated by "npm run mktags" by ExifTool 12.96 on Sun Oct 06 2024.
|
|
5096
|
+
* 2749 unique tags were found in 10128 photo and video files.
|
|
5102
5097
|
*
|
|
5103
5098
|
* @see https://exiftool.org/TagNames/
|
|
5104
5099
|
*/
|
package/dist/Timezones.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface TzSrc {
|
|
|
62
62
|
export declare function extractZone(value: any, opts?: {
|
|
63
63
|
stripTZA?: boolean;
|
|
64
64
|
}): Maybe<TzSrc>;
|
|
65
|
+
export declare const TimezoneOffsetTagnames: readonly ["TimeZone", "OffsetTime", "OffsetTimeOriginal", "OffsetTimeDigitized", "TimeZoneOffset", "GeolocationTimeZone"];
|
|
65
66
|
export declare function incrementZone(z: string | Zone | number, minutes: number): Maybe<Zone>;
|
|
66
67
|
export declare function extractTzOffsetFromTags(t: Tags, opts?: Pick<ExifToolOptions, "adjustTimeZoneIfDaylightSavings">): Maybe<TzSrc>;
|
|
67
68
|
export declare function extractTzOffsetFromDatestamps(t: Tags, opts: Partial<Pick<ExifToolOptions, "inferTimezoneFromDatestamps" | "inferTimezoneFromDatestampTags">>): Maybe<TzSrc>;
|