exiftool-vendored 19.0.0 → 21.0.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 +21 -0
- package/dist/BinaryExtractionTask.js +1 -1
- package/dist/BinaryExtractionTask.js.map +1 -1
- package/dist/DateTime.d.ts +4 -1
- package/dist/DateTime.js +8 -5
- package/dist/DateTime.js.map +1 -1
- package/dist/ExifDateTime.d.ts +9 -2
- package/dist/ExifDateTime.js +75 -43
- package/dist/ExifDateTime.js.map +1 -1
- package/dist/ExifTool.d.ts +1 -1
- package/dist/ExifTool.js.map +1 -1
- package/dist/ReadRawTask.js.map +1 -1
- package/dist/ReadTask.js +1 -1
- package/dist/ReadTask.js.map +1 -1
- package/dist/Tags.d.ts +144 -140
- package/package.json +18 -15
package/dist/Tags.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { Version } from "./Version";
|
|
|
10
10
|
export interface ExifToolTags {
|
|
11
11
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
12
12
|
Error?: string;
|
|
13
|
-
/** ★★★★ ✔ Example: 12.
|
|
13
|
+
/** ★★★★ ✔ Example: 12.55 */
|
|
14
14
|
ExifToolVersion?: number;
|
|
15
15
|
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
16
16
|
Warning?: string;
|
|
@@ -28,11 +28,11 @@ export interface FileTags {
|
|
|
28
28
|
CurrentIPTCDigest?: string;
|
|
29
29
|
/** ★★★★ ✔ Example: "/home/username/pictures" */
|
|
30
30
|
Directory?: string;
|
|
31
|
-
/** ★★★★ ✔ Example: "2023:
|
|
31
|
+
/** ★★★★ ✔ Example: "2023:02:05 12:52:30-08:00" */
|
|
32
32
|
FileAccessDate?: ExifDateTime | string;
|
|
33
|
-
/** ★★★★ ✔ Example: "
|
|
33
|
+
/** ★★★★ ✔ Example: "2023:01:30 11:33:43-08:00" */
|
|
34
34
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
35
|
-
/** ★★★★ ✔ Example: "
|
|
35
|
+
/** ★★★★ ✔ Example: "2023:01:16 13:26:20-08:00" */
|
|
36
36
|
FileModifyDate?: ExifDateTime | string;
|
|
37
37
|
/** ★★★★ ✔ Example: "utc+8_oly.jpg" */
|
|
38
38
|
FileName?: string;
|
|
@@ -160,7 +160,7 @@ export interface CompositeTags {
|
|
|
160
160
|
RedEyeReduction?: string;
|
|
161
161
|
/** ☆☆☆☆ Example: 11.2 */
|
|
162
162
|
RicohPitch?: number;
|
|
163
|
-
/** ☆☆☆☆ Example:
|
|
163
|
+
/** ☆☆☆☆ Example: 1.59 */
|
|
164
164
|
RicohRoll?: number;
|
|
165
165
|
/** ☆☆☆☆ ✔ Example: 90 */
|
|
166
166
|
Rotation?: number;
|
|
@@ -174,13 +174,13 @@ export interface CompositeTags {
|
|
|
174
174
|
ShutterCurtainHack?: string;
|
|
175
175
|
/** ★★★★ ✔ Example: "inf" */
|
|
176
176
|
ShutterSpeed?: string;
|
|
177
|
-
/** ★☆☆☆ ✔ Example: "2022:10:
|
|
177
|
+
/** ★☆☆☆ ✔ Example: "2022:10:25 11:21:56.77-08:00" */
|
|
178
178
|
SubSecCreateDate?: ExifDateTime | string;
|
|
179
|
-
/** ★☆☆☆ ✔ Example: "2022:10:
|
|
179
|
+
/** ★☆☆☆ ✔ Example: "2022:10:25 11:21:56.77-08:00" */
|
|
180
180
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
181
181
|
/** ☆☆☆☆ Example: */
|
|
182
182
|
SubSecMediaCreateDate?: ExifDateTime | string;
|
|
183
|
-
/** ★☆☆☆ ✔ Example: "2022:10:
|
|
183
|
+
/** ★☆☆☆ ✔ Example: "2022:10:25 11:21:56.77-08:00" */
|
|
184
184
|
SubSecModifyDate?: ExifDateTime | string;
|
|
185
185
|
}
|
|
186
186
|
export interface APP1Tags {
|
|
@@ -506,6 +506,10 @@ export interface APP5Tags {
|
|
|
506
506
|
Compass?: string;
|
|
507
507
|
}
|
|
508
508
|
export interface EXIFTags {
|
|
509
|
+
/** ☆☆☆☆ ✔ Example: 978279 */
|
|
510
|
+
Acceleration?: number;
|
|
511
|
+
/** ☆☆☆☆ ✔ Example: "22.6 C" */
|
|
512
|
+
AmbientTemperature?: string;
|
|
509
513
|
/** ☆☆☆☆ ✔ Example: "2.225585938 1 2.039794922" */
|
|
510
514
|
AnalogBalance?: string;
|
|
511
515
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -514,8 +518,6 @@ export interface EXIFTags {
|
|
|
514
518
|
ApertureValue?: number;
|
|
515
519
|
/** ★☆☆☆ ✔ Example: "Arturo DeImage" */
|
|
516
520
|
Artist?: string;
|
|
517
|
-
/** ☆☆☆☆ ✔ Example: "1 1 1" */
|
|
518
|
-
AsShotNeutral?: string;
|
|
519
521
|
/** ☆☆☆☆ ✔ Example: 3.0021124 */
|
|
520
522
|
BaselineExposure?: number;
|
|
521
523
|
/** ☆☆☆☆ ✔ Example: 1.5 */
|
|
@@ -524,11 +526,11 @@ export interface EXIFTags {
|
|
|
524
526
|
BitsPerSample?: string;
|
|
525
527
|
/** ☆☆☆☆ ✔ Example: 528 */
|
|
526
528
|
BlackLevel?: number;
|
|
527
|
-
/** ☆☆☆☆ ✔ Example:
|
|
529
|
+
/** ☆☆☆☆ ✔ Example: 130 */
|
|
528
530
|
BlackLevelBlue?: number;
|
|
529
|
-
/** ☆☆☆☆ ✔ Example:
|
|
531
|
+
/** ☆☆☆☆ ✔ Example: 130 */
|
|
530
532
|
BlackLevelGreen?: number;
|
|
531
|
-
/** ☆☆☆☆ ✔ Example:
|
|
533
|
+
/** ☆☆☆☆ ✔ Example: 130 */
|
|
532
534
|
BlackLevelRed?: number;
|
|
533
535
|
/** ☆☆☆☆ ✔ Example: "1 1" */
|
|
534
536
|
BlackLevelRepeatDim?: string;
|
|
@@ -538,9 +540,9 @@ export interface EXIFTags {
|
|
|
538
540
|
CFAPlaneColor?: string;
|
|
539
541
|
/** ☆☆☆☆ ✔ Example: "2 2" */
|
|
540
542
|
CFARepeatPatternDim?: string;
|
|
541
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
543
|
+
/** ☆☆☆☆ ✔ Example: "32 2048 1920 1792 1664 1664 1536 1408 1280 1152 1024 896 …96 1280" */
|
|
542
544
|
ChromaticAberrationCorrParams?: string;
|
|
543
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
545
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
544
546
|
ChromaticAberrationCorrection?: string;
|
|
545
547
|
/** ☆☆☆☆ ✔ Example: "Unknown" */
|
|
546
548
|
CompositeImage?: string;
|
|
@@ -568,9 +570,9 @@ export interface EXIFTags {
|
|
|
568
570
|
DeviceSettingDescription?: BinaryField | string;
|
|
569
571
|
/** ★★★☆ ✔ Example: 8.1319764 */
|
|
570
572
|
DigitalZoomRatio?: number;
|
|
571
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
573
|
+
/** ☆☆☆☆ ✔ Example: "16 3 -3 -16 -35 -62 -94 -135 -178 -226 -274 -326 -377 -42…23 -564" */
|
|
572
574
|
DistortionCorrParams?: string;
|
|
573
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
575
|
+
/** ☆☆☆☆ ✔ Example: "No correction params available" */
|
|
574
576
|
DistortionCorrection?: string;
|
|
575
577
|
/** ☆☆☆☆ Example: "" */
|
|
576
578
|
DocumentName?: string;
|
|
@@ -614,8 +616,6 @@ export interface EXIFTags {
|
|
|
614
616
|
GPSDifferential?: string;
|
|
615
617
|
/** ☆☆☆☆ ✔ Example: "8.937059922 m" */
|
|
616
618
|
GPSHPositioningError?: string;
|
|
617
|
-
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
618
|
-
GPSMeasureMode?: string;
|
|
619
619
|
/** ☆☆☆☆ ✔ Example: "gps" */
|
|
620
620
|
GPSProcessingMethod?: string;
|
|
621
621
|
/** ☆☆☆☆ ✔ Example: "??B??" */
|
|
@@ -642,7 +642,7 @@ export interface EXIFTags {
|
|
|
642
642
|
ImageNumber?: number;
|
|
643
643
|
/** ☆☆☆☆ ✔ Example: "fa5fdfee65f3a6e05fe7d4692b9112a7" */
|
|
644
644
|
ImageUniqueID?: string;
|
|
645
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
645
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 772608 bytes, use -b option to extract)" */
|
|
646
646
|
JpgFromRaw?: BinaryField;
|
|
647
647
|
/** ☆☆☆☆ ✔ Example: 845574 */
|
|
648
648
|
JpgFromRawLength?: number;
|
|
@@ -708,10 +708,14 @@ export interface EXIFTags {
|
|
|
708
708
|
Padding?: BinaryField | string;
|
|
709
709
|
/** ☆☆☆☆ ✔ Example: "Reflective" */
|
|
710
710
|
PageName?: string;
|
|
711
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
711
|
+
/** ☆☆☆☆ ✔ Example: "0350" */
|
|
712
712
|
PanasonicRawVersion?: string;
|
|
713
713
|
/** ☆☆☆☆ ✔ Example: "YCbCr" */
|
|
714
714
|
PhotometricInterpretation?: string;
|
|
715
|
+
/** ☆☆☆☆ ✔ Example: "Chunky" */
|
|
716
|
+
PlanarConfiguration?: string;
|
|
717
|
+
/** ☆☆☆☆ ✔ Example: 1022 */
|
|
718
|
+
Pressure?: number;
|
|
715
719
|
/** ☆☆☆☆ ✔ Example: "2015:06:02 09:56:01" */
|
|
716
720
|
PreviewDateTime?: ExifDateTime | string;
|
|
717
721
|
/** ☆☆☆☆ ✔ Example: 895146 */
|
|
@@ -736,7 +740,7 @@ export interface EXIFTags {
|
|
|
736
740
|
RatingPercent?: number;
|
|
737
741
|
/** ☆☆☆☆ ✔ Example: 928768 */
|
|
738
742
|
RawDataOffset?: number;
|
|
739
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
743
|
+
/** ☆☆☆☆ ✔ Example: "30353330394431333030303032383242" */
|
|
740
744
|
RawDataUniqueID?: string;
|
|
741
745
|
/** ☆☆☆☆ ✔ Example: 4 */
|
|
742
746
|
RawFormat?: number;
|
|
@@ -770,13 +774,13 @@ export interface EXIFTags {
|
|
|
770
774
|
SensingMethod?: string;
|
|
771
775
|
/** ★★☆☆ ✔ Example: "Unknown" */
|
|
772
776
|
SensitivityType?: string;
|
|
773
|
-
/** ☆☆☆☆ ✔ Example: 3456 */
|
|
774
|
-
SensorBottomBorder?: number;
|
|
775
777
|
/** ☆☆☆☆ ✔ Example: 3464 */
|
|
778
|
+
SensorBottomBorder?: number;
|
|
779
|
+
/** ☆☆☆☆ ✔ Example: 3472 */
|
|
776
780
|
SensorHeight?: number;
|
|
777
781
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
778
782
|
SensorLeftBorder?: number;
|
|
779
|
-
/** ☆☆☆☆ ✔ Example:
|
|
783
|
+
/** ☆☆☆☆ ✔ Example: 4616 */
|
|
780
784
|
SensorRightBorder?: number;
|
|
781
785
|
/** ☆☆☆☆ ✔ Example: 8 */
|
|
782
786
|
SensorTopBorder?: number;
|
|
@@ -788,10 +792,6 @@ export interface EXIFTags {
|
|
|
788
792
|
ShutterSpeedValue?: string;
|
|
789
793
|
/** ★★★★ ✔ Example: "https://PhotoStructure.com/" */
|
|
790
794
|
Software?: string;
|
|
791
|
-
/** ☆☆☆☆ ✔ Example: "Sony Compressed RAW" */
|
|
792
|
-
SonyRawFileType?: string;
|
|
793
|
-
/** ☆☆☆☆ ✔ Example: "8000 10400 12900 14100" */
|
|
794
|
-
SonyToneCurve?: string;
|
|
795
795
|
/** ☆☆☆☆ ✔ Example: 668058300 */
|
|
796
796
|
SpatialFrequencyResponse?: number;
|
|
797
797
|
/** ☆☆☆☆ ✔ Example: 800 */
|
|
@@ -814,13 +814,13 @@ export interface EXIFTags {
|
|
|
814
814
|
SubjectDistanceRange?: string;
|
|
815
815
|
/** ★★★★ ✔ Example: "(Binary data 10202 bytes, use -b option to extract)" */
|
|
816
816
|
ThumbnailImage?: BinaryField;
|
|
817
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
817
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 57816 bytes, use -b option to extract)" */
|
|
818
818
|
ThumbnailTIFF?: BinaryField;
|
|
819
819
|
/** ☆☆☆☆ ✔ Example: "(Binary data 447 bytes, use -b option to extract)" */
|
|
820
820
|
TileByteCounts?: BinaryField | string;
|
|
821
821
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
822
822
|
TileLength?: number;
|
|
823
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
823
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 507 bytes, use -b option to extract)" */
|
|
824
824
|
TileOffsets?: BinaryField | string;
|
|
825
825
|
/** ☆☆☆☆ ✔ Example: 512 */
|
|
826
826
|
TileWidth?: number;
|
|
@@ -828,11 +828,13 @@ export interface EXIFTags {
|
|
|
828
828
|
TimeZoneOffset?: number | string;
|
|
829
829
|
/** ☆☆☆☆ ✔ Example: "(Binary data 3636 bytes, use -b option to extract)" */
|
|
830
830
|
TransferFunction?: BinaryField | string;
|
|
831
|
+
/** ☆☆☆☆ ✔ Example: "motorola XT1254" */
|
|
832
|
+
UniqueCameraModel?: string;
|
|
831
833
|
/** ★★★☆ ✔ Example: "This is a comment." */
|
|
832
834
|
UserComment?: string;
|
|
833
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
835
|
+
/** ☆☆☆☆ ✔ Example: "16 0 32 144 336 592 912 1280 1712 2208 2736 3312 3920 454…72 6544" */
|
|
834
836
|
VignettingCorrParams?: string;
|
|
835
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
837
|
+
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
836
838
|
VignettingCorrection?: string;
|
|
837
839
|
/** ☆☆☆☆ ✔ Example: 538 */
|
|
838
840
|
WBBlueLevel?: number;
|
|
@@ -840,8 +842,8 @@ export interface EXIFTags {
|
|
|
840
842
|
WBGreenLevel?: number;
|
|
841
843
|
/** ☆☆☆☆ ✔ Example: 737 */
|
|
842
844
|
WBRedLevel?: number;
|
|
843
|
-
/** ☆☆☆☆ ✔ Example:
|
|
844
|
-
|
|
845
|
+
/** ☆☆☆☆ ✔ Example: 0.1 */
|
|
846
|
+
WaterDepth?: number;
|
|
845
847
|
/** ☆☆☆☆ ✔ Example: "0.4234 0.399" */
|
|
846
848
|
WhitePoint?: string;
|
|
847
849
|
/** ☆☆☆☆ ✔ Example: "Nom De Plume" */
|
|
@@ -886,7 +888,7 @@ export interface APP6Tags {
|
|
|
886
888
|
WhiteBalance?: string;
|
|
887
889
|
}
|
|
888
890
|
export interface FlashPixTags {
|
|
889
|
-
/** ☆☆☆☆ Example: "(Binary data
|
|
891
|
+
/** ☆☆☆☆ Example: "(Binary data 20796 bytes, use -b option to extract)" */
|
|
890
892
|
AudioStream?: BinaryField | string;
|
|
891
893
|
/** ☆☆☆☆ ✔ Example: "Unicode UTF-16, little endian" */
|
|
892
894
|
CodePage?: string;
|
|
@@ -904,7 +906,7 @@ export interface FlashPixTags {
|
|
|
904
906
|
ExtensionName?: string;
|
|
905
907
|
/** ☆☆☆☆ ✔ Example: "Invalidated By Modification" */
|
|
906
908
|
ExtensionPersistence?: string;
|
|
907
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
909
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 46285 bytes, use -b option to extract)" */
|
|
908
910
|
ScreenNail?: BinaryField | string;
|
|
909
911
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
910
912
|
UsedExtensionNumbers?: number;
|
|
@@ -942,14 +944,12 @@ export interface IPTCTags {
|
|
|
942
944
|
FileVersion?: number;
|
|
943
945
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
944
946
|
Headline?: string;
|
|
945
|
-
/** ☆☆☆☆ ✔ Example:
|
|
947
|
+
/** ☆☆☆☆ ✔ Example: ["red","car"] */
|
|
946
948
|
Keywords?: string | string[];
|
|
947
949
|
/** ☆☆☆☆ ✔ Example: "Artist deep into to wine and flower" */
|
|
948
950
|
ObjectName?: string;
|
|
949
951
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
950
952
|
OriginalTransmissionReference?: string;
|
|
951
|
-
/** ☆☆☆☆ ✔ Example: "digiKam" */
|
|
952
|
-
OriginatingProgram?: string;
|
|
953
953
|
/** ☆☆☆☆ ✔ Example: "Tagged:1, ColorClass:2, Rating:0, FrameNum:000940" */
|
|
954
954
|
Prefs?: string;
|
|
955
955
|
/** ☆☆☆☆ ✔ Example: "4.13.0" */
|
|
@@ -1214,24 +1214,12 @@ export interface QuickTimeTags {
|
|
|
1214
1214
|
VideoFrameRate?: number;
|
|
1215
1215
|
}
|
|
1216
1216
|
export interface RAFTags {
|
|
1217
|
-
/** ☆☆☆☆ ✔ Example: "294.2 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 6.8e-05 0.000….001464" */
|
|
1218
|
-
ChromaticAberrationParams?: string;
|
|
1219
|
-
/** ☆☆☆☆ ✔ Example: "12 12 12 12" */
|
|
1220
|
-
FujiLayout?: string;
|
|
1221
|
-
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 0 0 0…5 0.488" */
|
|
1222
|
-
GeometricDistortionParams?: string;
|
|
1223
1217
|
/** ☆☆☆☆ ✔ Example: -1.7 */
|
|
1224
1218
|
RawExposureBias?: number;
|
|
1225
1219
|
/** ☆☆☆☆ ✔ Example: "6 16" */
|
|
1226
1220
|
RawImageCropTopLeft?: string;
|
|
1227
|
-
/** ☆☆☆☆ ✔ Example: "4896x3264" */
|
|
1228
|
-
RawImageCroppedSize?: string;
|
|
1229
|
-
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
1230
|
-
RawImageFullHeight?: number;
|
|
1231
1221
|
/** ☆☆☆☆ ✔ Example: "5120x3288" */
|
|
1232
1222
|
RawImageFullSize?: string;
|
|
1233
|
-
/** ☆☆☆☆ ✔ Example: 5120 */
|
|
1234
|
-
RawImageFullWidth?: number;
|
|
1235
1223
|
/** ☆☆☆☆ ✔ Example: "267.4545455 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 100 9…3 94.11" */
|
|
1236
1224
|
VignettingParams?: string;
|
|
1237
1225
|
/** ☆☆☆☆ ✔ Example: "GRBGBR BGGRGG RGGBGG GBRGRB RGGBGG BGGRGG" */
|
|
@@ -1284,12 +1272,8 @@ export interface MakerNotesTags {
|
|
|
1284
1272
|
AEApertureSteps?: number;
|
|
1285
1273
|
/** ☆☆☆☆ ✔ Example: 51 */
|
|
1286
1274
|
AEAverage?: number;
|
|
1287
|
-
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1288
|
-
AEBAutoCancel?: string;
|
|
1289
1275
|
/** ★★☆☆ ✔ Example: 0 */
|
|
1290
1276
|
AEBBracketValue?: number;
|
|
1291
|
-
/** ☆☆☆☆ ✔ Example: "0,-,+" */
|
|
1292
|
-
AEBSequence?: string;
|
|
1293
1277
|
/** ☆☆☆☆ ✔ Example: "0,-,+/Enabled" */
|
|
1294
1278
|
AEBSequenceAutoCancel?: string;
|
|
1295
1279
|
/** ☆☆☆☆ ✔ Example: "7 shots" */
|
|
@@ -1378,7 +1362,7 @@ export interface MakerNotesTags {
|
|
|
1378
1362
|
AFAreas?: string;
|
|
1379
1363
|
/** ☆☆☆☆ ✔ Example: "Only ext. flash emits/Fires" */
|
|
1380
1364
|
AFAssist?: string;
|
|
1381
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1365
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
1382
1366
|
AFAssistBeam?: string;
|
|
1383
1367
|
/** ☆☆☆☆ ✔ Example: "Unknown (5)" */
|
|
1384
1368
|
AFAssistLamp?: string;
|
|
@@ -1396,10 +1380,10 @@ export interface MakerNotesTags {
|
|
|
1396
1380
|
AFFineTune?: string;
|
|
1397
1381
|
/** ☆☆☆☆ ✔ Example: "0 0 0" */
|
|
1398
1382
|
AFFineTuneAdj?: string;
|
|
1399
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1400
|
-
|
|
1401
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1402
|
-
|
|
1383
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1384
|
+
AFFineTuneAdjTele?: number;
|
|
1385
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
1386
|
+
AFFineTuneIndex?: string;
|
|
1403
1387
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
1404
1388
|
AFIlluminator?: string;
|
|
1405
1389
|
/** ☆☆☆☆ ✔ Example: "0400" */
|
|
@@ -1410,7 +1394,7 @@ export interface MakerNotesTags {
|
|
|
1410
1394
|
AFMicroAdj?: number;
|
|
1411
1395
|
/** ☆☆☆☆ ✔ Example: "Unknown (3)" */
|
|
1412
1396
|
AFMicroAdjMode?: string;
|
|
1413
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1397
|
+
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1414
1398
|
AFMicroAdjRegisteredLenses?: number;
|
|
1415
1399
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1416
1400
|
AFMicroAdjValue?: number;
|
|
@@ -1430,6 +1414,8 @@ export interface MakerNotesTags {
|
|
|
1430
1414
|
AFPointAreaExpansion?: string;
|
|
1431
1415
|
/** ☆☆☆☆ ✔ Example: "Left (vertical)" */
|
|
1432
1416
|
AFPointAtShutterRelease?: string;
|
|
1417
|
+
/** ☆☆☆☆ ✔ Example: "Control-direct:disable/Main:enable" */
|
|
1418
|
+
AFPointAutoSelection?: string;
|
|
1433
1419
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
1434
1420
|
AFPointBrightness?: string;
|
|
1435
1421
|
/** ☆☆☆☆ ✔ Example: "On in Continuous Shooting and Manual Focusing" */
|
|
@@ -1466,6 +1452,8 @@ export interface MakerNotesTags {
|
|
|
1466
1452
|
AFPointsInFocus5D?: string;
|
|
1467
1453
|
/** ☆☆☆☆ ✔ Example: 9 */
|
|
1468
1454
|
AFPointsSelected?: number;
|
|
1455
|
+
/** ☆☆☆☆ Example: 17 */
|
|
1456
|
+
AFPointsSpecial?: number;
|
|
1469
1457
|
/** ☆☆☆☆ ✔ Example: "Top" */
|
|
1470
1458
|
AFPointsUsed?: string;
|
|
1471
1459
|
/** ☆☆☆☆ ✔ Example: 903 */
|
|
@@ -1478,13 +1466,13 @@ export interface MakerNotesTags {
|
|
|
1478
1466
|
AFWithShutter?: string;
|
|
1479
1467
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1480
1468
|
AIServoFirstImage?: string;
|
|
1481
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1469
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
1482
1470
|
AIServoFirstImagePriority?: string;
|
|
1483
1471
|
/** ☆☆☆☆ ✔ Example: "1: AF, 2: Tracking" */
|
|
1484
1472
|
AIServoImagePriority?: string;
|
|
1485
1473
|
/** ☆☆☆☆ ✔ Example: "Focus Priority" */
|
|
1486
1474
|
AIServoSecondImage?: string;
|
|
1487
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1475
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
1488
1476
|
AIServoSecondImagePriority?: string;
|
|
1489
1477
|
/** ☆☆☆☆ ✔ Example: "Main focus point priority" */
|
|
1490
1478
|
AIServoTrackingMethod?: string;
|
|
@@ -1492,16 +1480,12 @@ export interface MakerNotesTags {
|
|
|
1492
1480
|
AIServoTrackingSensitivity?: string;
|
|
1493
1481
|
/** ☆☆☆☆ ✔ Example: "Off; Object Not Found" */
|
|
1494
1482
|
AISubjectTrackingMode?: string;
|
|
1495
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1483
|
+
/** ☆☆☆☆ ✔ Example: 2 */
|
|
1496
1484
|
AccelerationTracking?: number;
|
|
1497
1485
|
/** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
|
|
1498
1486
|
AccelerationVector?: string;
|
|
1499
1487
|
/** ☆☆☆☆ Example: "358.3 11.2" */
|
|
1500
1488
|
Accelerometer?: string;
|
|
1501
|
-
/** ☆☆☆☆ ✔ Example: "00:00" */
|
|
1502
|
-
AccessorySerialNumber?: string;
|
|
1503
|
-
/** ☆☆☆☆ ✔ Example: "NO-ACCESSORY" */
|
|
1504
|
-
AccessoryType?: string;
|
|
1505
1489
|
/** ☆☆☆☆ Example: "+0.0" */
|
|
1506
1490
|
ActualCompensation?: string;
|
|
1507
1491
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1516,8 +1500,6 @@ export interface MakerNotesTags {
|
|
|
1516
1500
|
AdvancedSceneType?: number;
|
|
1517
1501
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
1518
1502
|
AmbienceSelection?: string;
|
|
1519
|
-
/** ☆☆☆☆ ✔ Example: "40 C" */
|
|
1520
|
-
AmbientTemperature?: string;
|
|
1521
1503
|
/** ☆☆☆☆ Example: "95 F" */
|
|
1522
1504
|
AmbientTemperatureFahrenheit?: string;
|
|
1523
1505
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
@@ -1530,6 +1512,8 @@ export interface MakerNotesTags {
|
|
|
1530
1512
|
ApertureSetting?: number;
|
|
1531
1513
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1532
1514
|
ApplySettingsToLiveView?: string;
|
|
1515
|
+
/** ☆☆☆☆ ✔ Example: "Enable; 1; 2; 1; 128; 48; 0; 1" */
|
|
1516
|
+
ApplyShootingMeteringMode?: string;
|
|
1533
1517
|
/** ☆☆☆☆ Example: 8 */
|
|
1534
1518
|
ApproximateFNumber?: number;
|
|
1535
1519
|
/** ☆☆☆☆ ✔ Example: "Soft Focus; 1280; 0; 0" */
|
|
@@ -1584,7 +1568,7 @@ export interface MakerNotesTags {
|
|
|
1584
1568
|
AutoBracketSet?: string;
|
|
1585
1569
|
/** ☆☆☆☆ ✔ Example: "Flash/Speed" */
|
|
1586
1570
|
AutoBracketingMode?: string;
|
|
1587
|
-
/** ☆☆☆☆ ✔ Example: "AE
|
|
1571
|
+
/** ☆☆☆☆ ✔ Example: "AE Only" */
|
|
1588
1572
|
AutoBracketingSet?: string;
|
|
1589
1573
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1590
1574
|
AutoDistortionControl?: string;
|
|
@@ -1614,6 +1598,8 @@ export interface MakerNotesTags {
|
|
|
1614
1598
|
AverageBlackLevel?: string;
|
|
1615
1599
|
/** ☆☆☆☆ ✔ Example: 9.875 */
|
|
1616
1600
|
AverageLV?: number;
|
|
1601
|
+
/** ☆☆☆☆ Example: 8 */
|
|
1602
|
+
BWFilter?: number;
|
|
1617
1603
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1618
1604
|
BWMode?: string;
|
|
1619
1605
|
/** ☆☆☆☆ ✔ Example: "99:99:99 00:00:00" */
|
|
@@ -1636,7 +1622,7 @@ export interface MakerNotesTags {
|
|
|
1636
1622
|
BatteryTemperature?: string;
|
|
1637
1623
|
/** ☆☆☆☆ Example: "8.52 V" */
|
|
1638
1624
|
BatteryVoltage?: string;
|
|
1639
|
-
/** ☆☆☆☆ Example: "
|
|
1625
|
+
/** ☆☆☆☆ Example: "Unknown (0)" */
|
|
1640
1626
|
BayerPattern?: string;
|
|
1641
1627
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1642
1628
|
Beep?: string;
|
|
@@ -1702,6 +1688,8 @@ export interface MakerNotesTags {
|
|
|
1702
1688
|
BurstSpeed?: number;
|
|
1703
1689
|
/** ☆☆☆☆ ✔ Example: "460727F2-20CF-4031-957B-7E04D567DF1F" */
|
|
1704
1690
|
BurstUUID?: string;
|
|
1691
|
+
/** ☆☆☆☆ ✔ Example: "Normal (enable)" */
|
|
1692
|
+
ButtonFunctionControlOff?: string;
|
|
1705
1693
|
/** ☆☆☆☆ Example: 2 */
|
|
1706
1694
|
CCDBoardVersion?: number;
|
|
1707
1695
|
/** ☆☆☆☆ ✔ Example: "Interlaced" */
|
|
@@ -1765,6 +1753,8 @@ export interface MakerNotesTags {
|
|
|
1765
1753
|
/** ☆☆☆☆ ✔ Example: "8 mm" */
|
|
1766
1754
|
CenterWeightedAreaSize?: string;
|
|
1767
1755
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1756
|
+
ChromaticAberrationCorr?: string;
|
|
1757
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
1768
1758
|
ChromaticAberrationSetting?: string;
|
|
1769
1759
|
/** ☆☆☆☆ Example: "+0.500" */
|
|
1770
1760
|
ChrominanceNoiseReduction?: string;
|
|
@@ -1808,7 +1798,7 @@ export interface MakerNotesTags {
|
|
|
1808
1798
|
ColorCompensationFilterCustom?: number;
|
|
1809
1799
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1810
1800
|
ColorCompensationFilterSet?: number;
|
|
1811
|
-
/** ☆☆☆☆ ✔ Example: "96 4096
|
|
1801
|
+
/** ☆☆☆☆ ✔ Example: "96 4096 3072 4096 16 256" */
|
|
1812
1802
|
ColorControl?: string;
|
|
1813
1803
|
/** ☆☆☆☆ ✔ Example: "Color 0; 0; 29; Strength 0; -4; 3" */
|
|
1814
1804
|
ColorCreatorEffect?: string;
|
|
@@ -1836,23 +1826,23 @@ export interface MakerNotesTags {
|
|
|
1836
1826
|
ColorTempAsShot?: number;
|
|
1837
1827
|
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
1838
1828
|
ColorTempAuto?: number;
|
|
1839
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1829
|
+
/** ☆☆☆☆ ✔ Example: 7103 */
|
|
1840
1830
|
ColorTempCloudy?: number;
|
|
1841
1831
|
/** ☆☆☆☆ ✔ Example: 5210 */
|
|
1842
1832
|
ColorTempCustom?: number;
|
|
1843
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1833
|
+
/** ☆☆☆☆ ✔ Example: 6071 */
|
|
1844
1834
|
ColorTempDaylight?: number;
|
|
1845
1835
|
/** ☆☆☆☆ ✔ Example: 9826 */
|
|
1846
1836
|
ColorTempFlash?: number;
|
|
1847
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1837
|
+
/** ☆☆☆☆ ✔ Example: 4607 */
|
|
1848
1838
|
ColorTempFluorescent?: number;
|
|
1849
1839
|
/** ☆☆☆☆ ✔ Example: 8001 */
|
|
1850
1840
|
ColorTempKelvin?: number;
|
|
1851
1841
|
/** ☆☆☆☆ ✔ Example: 7397 */
|
|
1852
1842
|
ColorTempMeasured?: number;
|
|
1853
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1843
|
+
/** ☆☆☆☆ ✔ Example: 7830 */
|
|
1854
1844
|
ColorTempShade?: number;
|
|
1855
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1845
|
+
/** ☆☆☆☆ ✔ Example: 3212 */
|
|
1856
1846
|
ColorTempTungsten?: number;
|
|
1857
1847
|
/** ★☆☆☆ ✔ Example: 9900 */
|
|
1858
1848
|
ColorTemperature?: number;
|
|
@@ -1880,20 +1870,6 @@ export interface MakerNotesTags {
|
|
|
1880
1870
|
CommandDialsMenuAndPlayback?: string;
|
|
1881
1871
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
1882
1872
|
CommandDialsReverseRotation?: string;
|
|
1883
|
-
/** ☆☆☆☆ ✔ Example: 3 */
|
|
1884
|
-
CommanderChannel?: number;
|
|
1885
|
-
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1886
|
-
CommanderGroupAManualOutput?: string;
|
|
1887
|
-
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1888
|
-
CommanderGroupAMode?: string;
|
|
1889
|
-
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1890
|
-
CommanderGroupBManualOutput?: string;
|
|
1891
|
-
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1892
|
-
CommanderGroupBMode?: string;
|
|
1893
|
-
/** ☆☆☆☆ ✔ Example: "TTL" */
|
|
1894
|
-
CommanderInternalFlash?: string;
|
|
1895
|
-
/** ☆☆☆☆ ✔ Example: "Full" */
|
|
1896
|
-
CommanderInternalManualOutput?: string;
|
|
1897
1873
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
1898
1874
|
CommanderInternalTTLCompBuiltin?: number;
|
|
1899
1875
|
/** ☆☆☆☆ ✔ Example: -3 */
|
|
@@ -1940,7 +1916,7 @@ export interface MakerNotesTags {
|
|
|
1940
1916
|
ContrastDetectAFArea?: string;
|
|
1941
1917
|
/** ☆☆☆☆ Example: 0 */
|
|
1942
1918
|
ContrastHighlight?: number;
|
|
1943
|
-
/** ☆☆☆☆ Example: "
|
|
1919
|
+
/** ☆☆☆☆ Example: "On" */
|
|
1944
1920
|
ContrastHighlightShadowAdj?: string;
|
|
1945
1921
|
/** ☆☆☆☆ ✔ Example: "Unknown (19)" */
|
|
1946
1922
|
ContrastMode?: string;
|
|
@@ -2020,17 +1996,15 @@ export interface MakerNotesTags {
|
|
|
2020
1996
|
CustomWBSetting?: string;
|
|
2021
1997
|
/** ☆☆☆☆ ✔ 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" */
|
|
2022
1998
|
CustomizeDials?: string;
|
|
2023
|
-
/** ☆☆☆☆
|
|
2024
|
-
DECPosition?: string;
|
|
2025
|
-
/** ☆☆☆☆ ✔ Example: "10.01.00.00" */
|
|
1999
|
+
/** ☆☆☆☆ ✔ Example: "100.00.00.00" */
|
|
2026
2000
|
DSPFirmwareVersion?: string;
|
|
2027
2001
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2028
2002
|
DarkFocusEnvironment?: string;
|
|
2029
|
-
/** ★★☆☆ ✔ Example: "(Binary data
|
|
2003
|
+
/** ★★☆☆ ✔ Example: "(Binary data 280 bytes, use -b option to extract)" */
|
|
2030
2004
|
DataDump?: BinaryField | string;
|
|
2031
2005
|
/** ☆☆☆☆ ✔ Example: 8289 */
|
|
2032
2006
|
DataScaling?: number;
|
|
2033
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2007
|
+
/** ☆☆☆☆ ✔ Example: "2021:05:03" */
|
|
2034
2008
|
Date?: ExifDate | string;
|
|
2035
2009
|
/** ☆☆☆☆ ✔ Example: "Y/M/D" */
|
|
2036
2010
|
DateDisplayFormat?: string;
|
|
@@ -2040,7 +2014,7 @@ export interface MakerNotesTags {
|
|
|
2040
2014
|
DateStampMode?: string;
|
|
2041
2015
|
/** ☆☆☆☆ Example: "Off" */
|
|
2042
2016
|
DateTimeStamp?: string;
|
|
2043
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2017
|
+
/** ☆☆☆☆ ✔ Example: "2022:09:27 02:25:59" */
|
|
2044
2018
|
DateTimeUTC?: ExifDateTime | string;
|
|
2045
2019
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2046
2020
|
DaylightSavings?: string;
|
|
@@ -2078,6 +2052,8 @@ export interface MakerNotesTags {
|
|
|
2078
2052
|
DistortionCorrParamsPresent?: string;
|
|
2079
2053
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2080
2054
|
DistortionCorrectionSetting?: string;
|
|
2055
|
+
/** ☆☆☆☆ ✔ Example: 100 */
|
|
2056
|
+
DistortionCorrectionValue?: number;
|
|
2081
2057
|
/** ☆☆☆☆ ✔ Example: "Single Frame" */
|
|
2082
2058
|
DriveModeSetting?: string;
|
|
2083
2059
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
@@ -2122,8 +2098,6 @@ export interface MakerNotesTags {
|
|
|
2122
2098
|
EasyExposureCompensation?: string;
|
|
2123
2099
|
/** ★★☆☆ ✔ Example: "Unknown (83)" */
|
|
2124
2100
|
EasyMode?: string;
|
|
2125
|
-
/** ☆☆☆☆ ✔ Example: 9.8 */
|
|
2126
|
-
EffectiveLV?: number;
|
|
2127
2101
|
/** ☆☆☆☆ ✔ Example: 5.7 */
|
|
2128
2102
|
EffectiveMaxAperture?: number;
|
|
2129
2103
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
@@ -2216,7 +2190,7 @@ export interface MakerNotesTags {
|
|
|
2216
2190
|
ExternalFlashZoom?: number;
|
|
2217
2191
|
/** ☆☆☆☆ ✔ Example: "No" */
|
|
2218
2192
|
ExternalFlashZoomOverride?: string;
|
|
2219
|
-
/** ☆☆☆☆ ✔ Example: "0.
|
|
2193
|
+
/** ☆☆☆☆ ✔ Example: "0.2.0.0" */
|
|
2220
2194
|
ExtraInfoVersion?: string;
|
|
2221
2195
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2222
2196
|
EyeStartAF?: string;
|
|
@@ -2224,7 +2198,7 @@ export interface MakerNotesTags {
|
|
|
2224
2198
|
FEMicroadjustment?: string;
|
|
2225
2199
|
/** ☆☆☆☆ ✔ Example: "Unknown (II*)" */
|
|
2226
2200
|
FaceDetect?: string;
|
|
2227
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
2201
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 383 bytes, use -b option to extract)" */
|
|
2228
2202
|
FaceDetectArea?: BinaryField | string;
|
|
2229
2203
|
/** ☆☆☆☆ ✔ Example: "0 26 640 428 0 26 640 428 0 0 0 0" */
|
|
2230
2204
|
FaceDetectFrameCrop?: string;
|
|
@@ -2289,7 +2263,7 @@ export interface MakerNotesTags {
|
|
|
2289
2263
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2290
2264
|
FineTuneOptSpotMetering?: number;
|
|
2291
2265
|
/** ☆☆☆☆ Example: "2015:11:09 08:38" */
|
|
2292
|
-
FirmwareDate?: string;
|
|
2266
|
+
FirmwareDate?: ExifDateTime | string;
|
|
2293
2267
|
/** ☆☆☆☆ ✔ Example: "NX1_000000" */
|
|
2294
2268
|
FirmwareName?: string;
|
|
2295
2269
|
/** ★☆☆☆ ✔ Example: "Rev01500000" */
|
|
@@ -2366,7 +2340,7 @@ export interface MakerNotesTags {
|
|
|
2366
2340
|
FlashGroupCCompensation?: number;
|
|
2367
2341
|
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
2368
2342
|
FlashGroupCControlMode?: string;
|
|
2369
|
-
/**
|
|
2343
|
+
/** ★★☆☆ ✔ Example: 9 */
|
|
2370
2344
|
FlashGuideNumber?: number;
|
|
2371
2345
|
/** ☆☆☆☆ ✔ Example: "0301" */
|
|
2372
2346
|
FlashInfoVersion?: string;
|
|
@@ -2446,7 +2420,7 @@ export interface MakerNotesTags {
|
|
|
2446
2420
|
FocusDisplayAIServoAndMF?: string;
|
|
2447
2421
|
/** ☆☆☆☆ ✔ Example: "7.68 - 36.90 m" */
|
|
2448
2422
|
FocusDistanceRange?: string;
|
|
2449
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2423
|
+
/** ☆☆☆☆ ✔ Example: "475x476" */
|
|
2450
2424
|
FocusFrameSize?: string;
|
|
2451
2425
|
/** ☆☆☆☆ ✔ Example: "Focus Hold" */
|
|
2452
2426
|
FocusHoldButton?: string;
|
|
@@ -2470,6 +2444,10 @@ export interface MakerNotesTags {
|
|
|
2470
2444
|
FocusPointWrap?: string;
|
|
2471
2445
|
/** ☆☆☆☆ ✔ Example: 999 */
|
|
2472
2446
|
FocusPosition?: number;
|
|
2447
|
+
/** ☆☆☆☆ ✔ Example: "C" */
|
|
2448
|
+
FocusPositionHorizontal?: string;
|
|
2449
|
+
/** ☆☆☆☆ ✔ Example: "C" */
|
|
2450
|
+
FocusPositionVertical?: string;
|
|
2473
2451
|
/** ☆☆☆☆ ✔ Example: "AF Used; 96" */
|
|
2474
2452
|
FocusProcess?: string;
|
|
2475
2453
|
/** ★★☆☆ ✔ Example: "Unknown (2)" */
|
|
@@ -2604,11 +2582,11 @@ export interface MakerNotesTags {
|
|
|
2604
2582
|
ISOAutoFlashLimit?: string;
|
|
2605
2583
|
/** ☆☆☆☆ ✔ Example: "Unknown (0x6)" */
|
|
2606
2584
|
ISOAutoHiLimit?: string;
|
|
2607
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2585
|
+
/** ☆☆☆☆ ✔ Example: 800 */
|
|
2608
2586
|
ISOAutoMax?: number;
|
|
2609
2587
|
/** ☆☆☆☆ ✔ Example: 80 */
|
|
2610
2588
|
ISOAutoMin?: number;
|
|
2611
|
-
/** ☆☆☆☆ Example: "
|
|
2589
|
+
/** ☆☆☆☆ Example: "Unknown (1 132)" */
|
|
2612
2590
|
ISOAutoParameters?: string;
|
|
2613
2591
|
/** ☆☆☆☆ ✔ Example: "Auto (Faster)" */
|
|
2614
2592
|
ISOAutoShutterTime?: string;
|
|
@@ -2628,6 +2606,8 @@ export interface MakerNotesTags {
|
|
|
2628
2606
|
ISOSetting?: number;
|
|
2629
2607
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2630
2608
|
ISOSpeedExpansion?: string;
|
|
2609
|
+
/** ☆☆☆☆ ✔ Example: "Enable; Max 3200; Min 1" */
|
|
2610
|
+
ISOSpeedRange?: string;
|
|
2631
2611
|
/** ☆☆☆☆ ✔ Example: "1/3 EV" */
|
|
2632
2612
|
ISOStepSize?: string;
|
|
2633
2613
|
/** ☆☆☆☆ ✔ Example: 79.44 */
|
|
@@ -2656,7 +2636,7 @@ export interface MakerNotesTags {
|
|
|
2656
2636
|
ImageGeneration?: string;
|
|
2657
2637
|
/** ☆☆☆☆ Example: 912 */
|
|
2658
2638
|
ImageIDNumber?: number;
|
|
2659
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2639
|
+
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
2660
2640
|
ImageOptimization?: string;
|
|
2661
2641
|
/** ☆☆☆☆ ✔ Example: "Red Eye Ruduction ;" */
|
|
2662
2642
|
ImageProcessing?: string;
|
|
@@ -2678,7 +2658,7 @@ export interface MakerNotesTags {
|
|
|
2678
2658
|
ImageStabilization?: string;
|
|
2679
2659
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2680
2660
|
ImageStabilizationSetting?: string;
|
|
2681
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2661
|
+
/** ☆☆☆☆ ✔ Example: "StyleBox2" */
|
|
2682
2662
|
ImageStyle?: string;
|
|
2683
2663
|
/** ☆☆☆☆ Example: 94 */
|
|
2684
2664
|
ImageTemperatureMax?: number;
|
|
@@ -2686,6 +2666,8 @@ export interface MakerNotesTags {
|
|
|
2686
2666
|
ImageTemperatureMin?: number;
|
|
2687
2667
|
/** ☆☆☆☆ ✔ Example: "Vibrant" */
|
|
2688
2668
|
ImageTone?: string;
|
|
2669
|
+
/** ☆☆☆☆ ✔ Example: "Displays shooting functions" */
|
|
2670
|
+
InfoButtonWhenShooting?: string;
|
|
2689
2671
|
/** ☆☆☆☆ Example: "On" */
|
|
2690
2672
|
InfraredIlluminator?: string;
|
|
2691
2673
|
/** ☆☆☆☆ ✔ Example: "Manual AF point" */
|
|
@@ -2720,6 +2702,8 @@ export interface MakerNotesTags {
|
|
|
2720
2702
|
IntervalMode?: string;
|
|
2721
2703
|
/** ☆☆☆☆ Example: 65797 */
|
|
2722
2704
|
IntervalNumber?: number;
|
|
2705
|
+
/** ☆☆☆☆ Example: "Off" */
|
|
2706
|
+
IntervalShooting?: string;
|
|
2723
2707
|
/** ☆☆☆☆ ✔ Example: "n/a (Movie)" */
|
|
2724
2708
|
JPEGQuality?: string;
|
|
2725
2709
|
/** ☆☆☆☆ ✔ Example: "Optimal Quality" */
|
|
@@ -2808,8 +2792,6 @@ export interface MakerNotesTags {
|
|
|
2808
2792
|
LensTypeModel?: string;
|
|
2809
2793
|
/** ☆☆☆☆ ✔ Example: "98%" */
|
|
2810
2794
|
LensZoomPosition?: string;
|
|
2811
|
-
/** ☆☆☆☆ Example: 250 */
|
|
2812
|
-
LevelIndicator?: number;
|
|
2813
2795
|
/** ☆☆☆☆ Example: "n/a" */
|
|
2814
2796
|
LevelOrientation?: string;
|
|
2815
2797
|
/** ☆☆☆☆ ✔ Example: 1 */
|
|
@@ -2842,6 +2824,8 @@ export interface MakerNotesTags {
|
|
|
2842
2824
|
LiveViewAFMode?: string;
|
|
2843
2825
|
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
2844
2826
|
LiveViewButtonOptions?: string;
|
|
2827
|
+
/** ☆☆☆☆ ✔ Example: "Enable (simulates exposure)" */
|
|
2828
|
+
LiveViewExposureSimulation?: string;
|
|
2845
2829
|
/** ☆☆☆☆ ✔ Example: "Manual" */
|
|
2846
2830
|
LiveViewFocusMode?: string;
|
|
2847
2831
|
/** ☆☆☆☆ ✔ Example: "40 Segment" */
|
|
@@ -3112,7 +3096,7 @@ export interface MakerNotesTags {
|
|
|
3112
3096
|
NEFCompression?: string;
|
|
3113
3097
|
/** ☆☆☆☆ ✔ Example: "(Binary data 46 bytes, use -b option to extract)" */
|
|
3114
3098
|
NEFLinearizationTable?: BinaryField | string;
|
|
3115
|
-
/** ☆☆☆☆ Example: "Off" */
|
|
3099
|
+
/** ☆☆☆☆ Example: "Off (0 2)" */
|
|
3116
3100
|
NeutralDensityFilter?: string;
|
|
3117
3101
|
/** ☆☆☆☆ ✔ Example: "Large (10.0 M)" */
|
|
3118
3102
|
NikonImageSize?: string;
|
|
@@ -3164,14 +3148,16 @@ export interface MakerNotesTags {
|
|
|
3164
3148
|
OriginalDirectory?: string;
|
|
3165
3149
|
/** ☆☆☆☆ ✔ Example: "L9997698.JPG" */
|
|
3166
3150
|
OriginalFileName?: string;
|
|
3151
|
+
/** ☆☆☆☆ ✔ Example: 4000 */
|
|
3152
|
+
OriginalImageHeight?: number;
|
|
3153
|
+
/** ☆☆☆☆ ✔ Example: 6000 */
|
|
3154
|
+
OriginalImageWidth?: number;
|
|
3167
3155
|
/** ☆☆☆☆ Example: ["Sensor Upgraded","PREPRODUCTION CAMERA"] */
|
|
3168
3156
|
OtherInfo?: string[];
|
|
3169
3157
|
/** ☆☆☆☆ ✔ Example: "(Binary data 864 bytes, use -b option to extract)" */
|
|
3170
3158
|
OutputLUT?: BinaryField | string;
|
|
3171
3159
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
3172
3160
|
POILevel?: number;
|
|
3173
|
-
/** ☆☆☆☆ ✔ Example: "2019:11:26 11:22:36.72" */
|
|
3174
|
-
PanasonicDateTime?: ExifDateTime | string;
|
|
3175
3161
|
/** ☆☆☆☆ ✔ Example: "0417" */
|
|
3176
3162
|
PanasonicExifVersion?: string;
|
|
3177
3163
|
/** ☆☆☆☆ ✔ Example: 5584 */
|
|
@@ -3206,7 +3192,7 @@ export interface MakerNotesTags {
|
|
|
3206
3192
|
PanoramaSourceHeight?: number;
|
|
3207
3193
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3208
3194
|
PanoramaSourceWidth?: number;
|
|
3209
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3195
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (6)" */
|
|
3210
3196
|
PentaxImageSize?: string;
|
|
3211
3197
|
/** ☆☆☆☆ ✔ Example: "X90" */
|
|
3212
3198
|
PentaxModelID?: string;
|
|
@@ -3214,10 +3200,14 @@ export interface MakerNotesTags {
|
|
|
3214
3200
|
PentaxModelType?: number;
|
|
3215
3201
|
/** ☆☆☆☆ ✔ Example: "513 513 513 513" */
|
|
3216
3202
|
PerChannelBlackLevel?: string;
|
|
3217
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3203
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (3)" */
|
|
3218
3204
|
PeripheralIlluminationCorr?: string;
|
|
3219
3205
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3206
|
+
PeripheralLighting?: string;
|
|
3207
|
+
/** ☆☆☆☆ ✔ Example: "On" */
|
|
3220
3208
|
PeripheralLightingSetting?: string;
|
|
3209
|
+
/** ☆☆☆☆ ✔ Example: 70 */
|
|
3210
|
+
PeripheralLightingValue?: number;
|
|
3221
3211
|
/** ☆☆☆☆ ✔ Example: "On (81-point)" */
|
|
3222
3212
|
PhaseDetectAF?: string;
|
|
3223
3213
|
/** ☆☆☆☆ ✔ Example: "Vivid" */
|
|
@@ -3242,10 +3232,14 @@ export interface MakerNotesTags {
|
|
|
3242
3232
|
PictureEffect?: string;
|
|
3243
3233
|
/** ☆☆☆☆ Example: "Natural" */
|
|
3244
3234
|
PictureFinish?: string;
|
|
3235
|
+
/** ★★☆☆ ✔ Example: "i-Enhance; 2" */
|
|
3236
|
+
PictureMode?: string;
|
|
3245
3237
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3246
3238
|
PictureModeBWFilter?: string;
|
|
3247
3239
|
/** ☆☆☆☆ ✔ Example: "1 (min -2, max 2)" */
|
|
3248
3240
|
PictureModeContrast?: string;
|
|
3241
|
+
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3242
|
+
PictureModeEffect?: string;
|
|
3249
3243
|
/** ☆☆☆☆ ✔ Example: "0 (min -2, max 2)" */
|
|
3250
3244
|
PictureModeSaturation?: string;
|
|
3251
3245
|
/** ☆☆☆☆ ✔ Example: "2 (min -2, max 2)" */
|
|
@@ -3300,14 +3294,14 @@ export interface MakerNotesTags {
|
|
|
3300
3294
|
PreviewImageValid?: string;
|
|
3301
3295
|
/** ☆☆☆☆ ✔ Example: "AF" */
|
|
3302
3296
|
PrioritySetupShutterRelease?: string;
|
|
3303
|
-
/** ☆☆☆☆ ✔ Example: 9.987 */
|
|
3304
|
-
ProductionCode?: number;
|
|
3305
3297
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3306
3298
|
ProgramISO?: string;
|
|
3307
3299
|
/** ☆☆☆☆ ✔ Example: "Normal" */
|
|
3308
3300
|
ProgramLine?: string;
|
|
3309
3301
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3310
3302
|
ProgramShift?: number;
|
|
3303
|
+
/** ☆☆☆☆ ✔ Example: "Exposure comp/Aperture" */
|
|
3304
|
+
QuickControlDialInMeter?: string;
|
|
3311
3305
|
/** ☆☆☆☆ Example: "Off" */
|
|
3312
3306
|
QuickShot?: string;
|
|
3313
3307
|
/** ☆☆☆☆ ✔ Example: "Uncompressed RAW" */
|
|
@@ -3376,7 +3370,7 @@ export interface MakerNotesTags {
|
|
|
3376
3370
|
RawDevWhiteBalanceValue?: number;
|
|
3377
3371
|
/** ☆☆☆☆ Example: "9 (Q)" */
|
|
3378
3372
|
RawDevelopmentProcess?: string;
|
|
3379
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3373
|
+
/** ☆☆☆☆ ✔ Example: "3712 2462" */
|
|
3380
3374
|
RawImageCenter?: string;
|
|
3381
3375
|
/** ☆☆☆☆ ✔ Example: 3296 */
|
|
3382
3376
|
RawImageHeight?: number;
|
|
@@ -3424,6 +3418,8 @@ export interface MakerNotesTags {
|
|
|
3424
3418
|
Resaved?: string;
|
|
3425
3419
|
/** ☆☆☆☆ Example: "MED" */
|
|
3426
3420
|
ResolutionMode?: string;
|
|
3421
|
+
/** ☆☆☆☆ ✔ Example: "Flags 0x77" */
|
|
3422
|
+
RestrictDriveModes?: string;
|
|
3427
3423
|
/** ★☆☆☆ ✔ Example: "Unknown ()" */
|
|
3428
3424
|
RetouchHistory?: string;
|
|
3429
3425
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
@@ -3510,6 +3506,8 @@ export interface MakerNotesTags {
|
|
|
3510
3506
|
SelectAFAreaSelectMode?: string;
|
|
3511
3507
|
/** ☆☆☆☆ ✔ Example: "Single-point AF, Auto, Zone AF, Spot AF, [6], [8], [9], […], [14]" */
|
|
3512
3508
|
SelectAFAreaSelectionMode?: string;
|
|
3509
|
+
/** ☆☆☆☆ ✔ Example: "45 points" */
|
|
3510
|
+
SelectableAFPoint?: string;
|
|
3513
3511
|
/** ★★☆☆ ✔ Example: "Self-timer 5 or 10 s" */
|
|
3514
3512
|
SelfTimer?: string;
|
|
3515
3513
|
/** ☆☆☆☆ ✔ Example: "0.5 s" */
|
|
@@ -3564,7 +3562,7 @@ export interface MakerNotesTags {
|
|
|
3564
3562
|
SequenceImageNumber?: number;
|
|
3565
3563
|
/** ☆☆☆☆ ✔ Example: "Continuous" */
|
|
3566
3564
|
SequenceLength?: string;
|
|
3567
|
-
/** ★★★☆ ✔ Example:
|
|
3565
|
+
/** ★★★☆ ✔ Example: 6 */
|
|
3568
3566
|
SequenceNumber?: number;
|
|
3569
3567
|
/** ☆☆☆☆ Example: "5 frames/s" */
|
|
3570
3568
|
SequenceShotInterval?: string;
|
|
@@ -3616,7 +3614,7 @@ export interface MakerNotesTags {
|
|
|
3616
3614
|
ShotNumberSincePowerUp?: number;
|
|
3617
3615
|
/** ☆☆☆☆ ✔ Example: "AF/AE lock stop" */
|
|
3618
3616
|
ShutterAELButton?: string;
|
|
3619
|
-
/** ☆☆☆☆ ✔ Example:
|
|
3617
|
+
/** ☆☆☆☆ ✔ Example: 998 */
|
|
3620
3618
|
ShutterCount?: number;
|
|
3621
3619
|
/** ☆☆☆☆ Example: */
|
|
3622
3620
|
ShutterCount2?: number;
|
|
@@ -3696,8 +3694,6 @@ export interface MakerNotesTags {
|
|
|
3696
3694
|
SpecialEffectLevel?: number;
|
|
3697
3695
|
/** ☆☆☆☆ Example: "Off" */
|
|
3698
3696
|
SpecialEffectMode?: string;
|
|
3699
|
-
/** ☆☆☆☆ Example: "Unknown (15)" */
|
|
3700
|
-
SpecialEffectSetting?: string;
|
|
3701
3697
|
/** ☆☆☆☆ ✔ Example: 16383 */
|
|
3702
3698
|
SpecularWhiteLevel?: number;
|
|
3703
3699
|
/** ☆☆☆☆ Example: "+0.10" */
|
|
@@ -3808,7 +3804,7 @@ export interface MakerNotesTags {
|
|
|
3808
3804
|
ToneCurve?: string;
|
|
3809
3805
|
/** ☆☆☆☆ ✔ Example: "(Binary data 95 bytes, use -b option to extract)" */
|
|
3810
3806
|
ToneCurveMatching?: BinaryField | string;
|
|
3811
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
3807
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 1505 bytes, use -b option to extract)" */
|
|
3812
3808
|
ToneCurveTable?: BinaryField | string;
|
|
3813
3809
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
3814
3810
|
ToningEffect?: string;
|
|
@@ -3840,8 +3836,6 @@ export interface MakerNotesTags {
|
|
|
3840
3836
|
UsableShootingModes?: string;
|
|
3841
3837
|
/** ☆☆☆☆ Example: "PC900 COVERT PRO" */
|
|
3842
3838
|
UserLabel?: string;
|
|
3843
|
-
/** ☆☆☆☆ ✔ Example: "Enable" */
|
|
3844
|
-
VFDisplayIllumination?: string;
|
|
3845
3839
|
/** ★☆☆☆ ✔ Example: 0 */
|
|
3846
3840
|
VRDOffset?: number;
|
|
3847
3841
|
/** ☆☆☆☆ ✔ Example: "0200" */
|
|
@@ -3884,8 +3878,6 @@ export interface MakerNotesTags {
|
|
|
3884
3878
|
ViewfinderWarnings?: string;
|
|
3885
3879
|
/** ☆☆☆☆ ✔ Example: "ViewFinder" */
|
|
3886
3880
|
ViewingMode?: string;
|
|
3887
|
-
/** ☆☆☆☆ ✔ Example: "Off" */
|
|
3888
|
-
VignetteControl?: string;
|
|
3889
3881
|
/** ☆☆☆☆ Example: "Off" */
|
|
3890
3882
|
Vignetting?: string;
|
|
3891
3883
|
/** ☆☆☆☆ ✔ Example: 97 */
|
|
@@ -3932,7 +3924,7 @@ export interface MakerNotesTags {
|
|
|
3932
3924
|
WhiteBalanceSet?: string;
|
|
3933
3925
|
/** ☆☆☆☆ ✔ Example: "Custom 1" */
|
|
3934
3926
|
WhiteBalanceSetting?: string;
|
|
3935
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
3927
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 2201 bytes, use -b option to extract)" */
|
|
3936
3928
|
WhiteBalanceTable?: BinaryField | string;
|
|
3937
3929
|
/** ☆☆☆☆ ✔ Example: "Auto" */
|
|
3938
3930
|
WhiteBalanceTemperature?: string;
|
|
@@ -3952,7 +3944,7 @@ export interface MakerNotesTags {
|
|
|
3952
3944
|
Xidiri?: BinaryField | string;
|
|
3953
3945
|
/** ☆☆☆☆ ✔ Example: "Unknown (512)" */
|
|
3954
3946
|
YCbCrPositioning?: string;
|
|
3955
|
-
/** ☆☆☆☆ Example:
|
|
3947
|
+
/** ☆☆☆☆ Example: 0.83734368 */
|
|
3956
3948
|
Yaw?: number;
|
|
3957
3949
|
/** ☆☆☆☆ ✔ Example: 93.8 */
|
|
3958
3950
|
YawAngle?: number;
|
|
@@ -4026,7 +4018,7 @@ export interface XMPTags {
|
|
|
4026
4018
|
CameraProfileDigest?: string;
|
|
4027
4019
|
/** ☆☆☆☆ Example: "Rear" */
|
|
4028
4020
|
CameraUnit?: string;
|
|
4029
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4021
|
+
/** ☆☆☆☆ ✔ Example: [{"DepthMap":{"ConfidenceURI":"android/confidencemap","De…ical"}] */
|
|
4030
4022
|
Cameras?: Struct[];
|
|
4031
4023
|
/** ☆☆☆☆ ✔ Example: "Photo" */
|
|
4032
4024
|
CaptureMode?: string;
|
|
@@ -4062,7 +4054,7 @@ export interface XMPTags {
|
|
|
4062
4054
|
ColorSpace?: string;
|
|
4063
4055
|
/** ☆☆☆☆ ✔ Example: "" */
|
|
4064
4056
|
Colorlabels?: string;
|
|
4065
|
-
/** ☆☆☆☆ ✔ Example: {"Directory":[{"
|
|
4057
|
+
/** ☆☆☆☆ ✔ Example: {"Directory":[{"DataURI":"primary_image","Length":0,"Mime…peg"}]} */
|
|
4066
4058
|
Container?: Struct;
|
|
4067
4059
|
/** ☆☆☆☆ ✔ Example: false */
|
|
4068
4060
|
ConvertToGrayscale?: boolean;
|
|
@@ -4088,6 +4080,14 @@ export interface XMPTags {
|
|
|
4088
4080
|
CropConstrainToWarp?: number;
|
|
4089
4081
|
/** ☆☆☆☆ Example: 1 */
|
|
4090
4082
|
CropRight?: number;
|
|
4083
|
+
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4084
|
+
CroppedAreaImageHeightPixels?: number;
|
|
4085
|
+
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
4086
|
+
CroppedAreaImageWidthPixels?: number;
|
|
4087
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4088
|
+
CroppedAreaLeftPixels?: number;
|
|
4089
|
+
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4090
|
+
CroppedAreaTopPixels?: number;
|
|
4091
4091
|
/** ☆☆☆☆ ✔ Example: "2014:05:11 13:08:25.659" */
|
|
4092
4092
|
DateAcquired?: ExifDateTime | string;
|
|
4093
4093
|
/** ☆☆☆☆ ✔ Example: "2017:08:13 12:38:30" */
|
|
@@ -4160,6 +4160,10 @@ export interface XMPTags {
|
|
|
4160
4160
|
FocusState?: string;
|
|
4161
4161
|
/** ☆☆☆☆ ✔ Example: "image/jpg" */
|
|
4162
4162
|
Format?: string;
|
|
4163
|
+
/** ☆☆☆☆ ✔ Example: 3872 */
|
|
4164
|
+
FullPanoHeightPixels?: number;
|
|
4165
|
+
/** ☆☆☆☆ ✔ Example: 7744 */
|
|
4166
|
+
FullPanoWidthPixels?: number;
|
|
4163
4167
|
/** ☆☆☆☆ Example: -90 */
|
|
4164
4168
|
GimbalPitchDegree?: number;
|
|
4165
4169
|
/** ☆☆☆☆ Example: "+0.00" */
|
|
@@ -4342,7 +4346,7 @@ export interface XMPTags {
|
|
|
4342
4346
|
PoseHeadingDegrees?: number;
|
|
4343
4347
|
/** ☆☆☆☆ ✔ Example: 11.2 */
|
|
4344
4348
|
PosePitchDegrees?: number;
|
|
4345
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4349
|
+
/** ☆☆☆☆ ✔ Example: 1.6 */
|
|
4346
4350
|
PoseRollDegrees?: number;
|
|
4347
4351
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4348
4352
|
PostCropVignetteAmount?: number;
|
|
@@ -4350,8 +4354,10 @@ export interface XMPTags {
|
|
|
4350
4354
|
PreservedFileName?: string;
|
|
4351
4355
|
/** ☆☆☆☆ ✔ Example: 11 */
|
|
4352
4356
|
ProcessVersion?: number;
|
|
4353
|
-
/** ☆☆☆☆ ✔ Example: [{"
|
|
4357
|
+
/** ☆☆☆☆ ✔ Example: [{"CameraIndices":[0],"Type":"DepthPhoto"}] */
|
|
4354
4358
|
Profiles?: Struct[];
|
|
4359
|
+
/** ☆☆☆☆ ✔ Example: "equirectangular" */
|
|
4360
|
+
ProjectionType?: string;
|
|
4355
4361
|
/** ☆☆☆☆ ✔ Example: "P2030414.jpg" */
|
|
4356
4362
|
RawFileName?: string;
|
|
4357
4363
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
@@ -4464,8 +4470,6 @@ export interface XMPTags {
|
|
|
4464
4470
|
UprightTransformCount?: number;
|
|
4465
4471
|
/** ☆☆☆☆ ✔ Example: 151388160 */
|
|
4466
4472
|
UprightVersion?: number;
|
|
4467
|
-
/** ☆☆☆☆ ✔ Example: true */
|
|
4468
|
-
UsePanoramaViewer?: boolean;
|
|
4469
4473
|
/** ☆☆☆☆ Example: */
|
|
4470
4474
|
Versions?: Version[] | Version | string;
|
|
4471
4475
|
/** ☆☆☆☆ ✔ Example: "+21" */
|
|
@@ -4491,8 +4495,8 @@ export interface XMPTags {
|
|
|
4491
4495
|
* devices (like iPhones) An example value, JSON stringified, follows the
|
|
4492
4496
|
* popularity ratings.
|
|
4493
4497
|
*
|
|
4494
|
-
* Autogenerated by "yarn mktags" by ExifTool 12.
|
|
4495
|
-
*
|
|
4498
|
+
* Autogenerated by "yarn mktags" by ExifTool 12.55 on Sun Feb 05 2023.
|
|
4499
|
+
* 3029 unique tags were found in 10079 photo and video files.
|
|
4496
4500
|
*/
|
|
4497
4501
|
export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, JFIFTags, MPFTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
|
|
4498
4502
|
errors?: string[];
|