exiftool-vendored.pl 12.80.0 → 12.84.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/bin/Changes +81 -0
- package/bin/MANIFEST +6 -18
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +4 -2
- package/bin/build_geolocation +872 -0
- package/bin/config_files/example.config +2 -2
- package/bin/exiftool +61 -17
- package/bin/fmt_files/gpx.fmt +2 -1
- package/bin/fmt_files/gpx_wpt.fmt +2 -1
- package/bin/lib/Image/ExifTool/Apple.pm +51 -7
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +47 -31
- package/bin/lib/Image/ExifTool/CanonVRD.pm +19 -6
- package/bin/lib/Image/ExifTool/DJI.pm +29 -0
- package/bin/lib/Image/ExifTool/Exif.pm +19 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +20 -7
- package/bin/lib/Image/ExifTool/GM.pm +552 -0
- package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- package/bin/lib/Image/ExifTool/Geolocation.pm +423 -178
- package/bin/lib/Image/ExifTool/Geotag.pm +26 -13
- package/bin/lib/Image/ExifTool/M2TS.pm +32 -4
- package/bin/lib/Image/ExifTool/MakerNotes.pm +2 -2
- package/bin/lib/Image/ExifTool/Microsoft.pm +1 -1
- package/bin/lib/Image/ExifTool/Nikon.pm +337 -27
- package/bin/lib/Image/ExifTool/NikonCustom.pm +55 -1
- package/bin/lib/Image/ExifTool/Olympus.pm +1 -0
- package/bin/lib/Image/ExifTool/OpenEXR.pm +21 -3
- package/bin/lib/Image/ExifTool/PNG.pm +3 -3
- package/bin/lib/Image/ExifTool/QuickTime.pm +45 -24
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +66 -30
- package/bin/lib/Image/ExifTool/README +2 -0
- package/bin/lib/Image/ExifTool/Sony.pm +16 -7
- package/bin/lib/Image/ExifTool/TagLookup.pm +4827 -4778
- package/bin/lib/Image/ExifTool/TagNames.pod +953 -620
- package/bin/lib/Image/ExifTool/WriteQuickTime.pl +32 -9
- package/bin/lib/Image/ExifTool/Writer.pl +169 -130
- package/bin/lib/Image/ExifTool/XMP.pm +4 -2
- package/bin/lib/Image/ExifTool/XMP2.pl +3 -0
- package/bin/lib/Image/ExifTool.pm +106 -48
- package/bin/lib/Image/ExifTool.pod +47 -25
- package/bin/perl-Image-ExifTool.spec +1 -1
- package/bin/pp_build_exe.args +4 -4
- package/package.json +3 -3
|
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
|
|
|
12
12
|
=head1 TAG TABLES
|
|
13
13
|
|
|
14
14
|
The tables listed below give the names of all tags recognized by ExifTool.
|
|
15
|
-
They contain a total of
|
|
15
|
+
They contain a total of 27855 tags, with 17441 unique tag names.
|
|
16
16
|
|
|
17
17
|
B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
|
|
18
18
|
table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
|
|
@@ -1042,7 +1042,7 @@ for the official EXIF 2.32 specification.
|
|
|
1042
1042
|
0xcd38 MaskSubArea SubIFD no
|
|
1043
1043
|
0xcd39 ProfileHueSatMapData3 IFD0 float[n]!
|
|
1044
1044
|
0xcd3a ReductionMatrix3 IFD0 rational64s[n]!
|
|
1045
|
-
|
|
1045
|
+
0xcd3f RGBTables IFD0 undef!
|
|
1046
1046
|
0xcd40 ProfileGainTableMap2 IFD0 undef!
|
|
1047
1047
|
0xcd41 JUMBF - Jpeg2000
|
|
1048
1048
|
0xcd43 ColumnInterleaveFactor SubIFD int32u!
|
|
@@ -1050,6 +1050,9 @@ for the official EXIF 2.32 specification.
|
|
|
1050
1050
|
0xcd46 ImageStats IFD0 undef!
|
|
1051
1051
|
0xcd47 ProfileDynamicRange IFD0 DNG ProfileDynamicRange
|
|
1052
1052
|
0xcd48 ProfileGroupName IFD0 string!
|
|
1053
|
+
0xcd49 JXLDistance IFD0 float
|
|
1054
|
+
0xcd4a JXLEffort IFD0 int32u
|
|
1055
|
+
0xcd4b JXLDecodeSpeed IFD0 int32u
|
|
1053
1056
|
0xea1c Padding ExifIFD undef!
|
|
1054
1057
|
0xea1d OffsetSchema ExifIFD int32s!
|
|
1055
1058
|
0xfde8 OwnerName ExifIFD string/
|
|
@@ -4797,6 +4800,9 @@ These tags belong to the ExifTool XMP-GCamera family 1 group.
|
|
|
4797
4800
|
MicroVideoOffset integer
|
|
4798
4801
|
MicroVideoPresentationTimestampUs integer
|
|
4799
4802
|
MicroVideoVersion integer
|
|
4803
|
+
MotionPhoto integer
|
|
4804
|
+
MotionPhotoPresentationTimestampUs integer
|
|
4805
|
+
MotionPhotoVersion integer
|
|
4800
4806
|
PortraitNote string
|
|
4801
4807
|
PortraitRequest string
|
|
4802
4808
|
PortraitVersion string
|
|
@@ -7940,15 +7946,6 @@ Pentax lens information structure for models such as the *istD.
|
|
|
7940
7946
|
0 LensType int8u[2]
|
|
7941
7947
|
3 LensData Pentax LensData
|
|
7942
7948
|
|
|
7943
|
-
=head3 Pentax LensInfo2 Tags
|
|
7944
|
-
|
|
7945
|
-
Pentax lens information structure for models such as the K10D and K20D.
|
|
7946
|
-
|
|
7947
|
-
Index1 Tag Name Writable
|
|
7948
|
-
------ -------- --------
|
|
7949
|
-
0 LensType int8u[4]
|
|
7950
|
-
4 LensData Pentax LensData
|
|
7951
|
-
|
|
7952
7949
|
=head3 Pentax LensData Tags
|
|
7953
7950
|
|
|
7954
7951
|
Pentax lens data information. Some of these tags require interesting binary
|
|
@@ -7979,6 +7976,15 @@ gymnastics to decode them into useful values.
|
|
|
7979
7976
|
15 LC14? int8u
|
|
7980
7977
|
16 LC15? int8u
|
|
7981
7978
|
|
|
7979
|
+
=head3 Pentax LensInfo2 Tags
|
|
7980
|
+
|
|
7981
|
+
Pentax lens information structure for models such as the K10D and K20D.
|
|
7982
|
+
|
|
7983
|
+
Index1 Tag Name Writable
|
|
7984
|
+
------ -------- --------
|
|
7985
|
+
0 LensType int8u[4]
|
|
7986
|
+
4 LensData Pentax LensData
|
|
7987
|
+
|
|
7982
7988
|
=head3 Pentax LensInfo3 Tags
|
|
7983
7989
|
|
|
7984
7990
|
Pentax lens information structure for 645D.
|
|
@@ -8897,12 +8903,16 @@ Tags extracted from the maker notes of iPhone images.
|
|
|
8897
8903
|
0x0019 ImageProcessingFlags? int32s
|
|
8898
8904
|
0x001a QualityHint? string
|
|
8899
8905
|
0x001d LuminanceNoiseAmplitude rational64s
|
|
8906
|
+
0x001f PhotosAppFeatureFlags int32s
|
|
8900
8907
|
0x0020 ImageCaptureRequestID? string
|
|
8901
8908
|
0x0021 HDRHeadroom rational64s
|
|
8909
|
+
0x0023 AFPerformance int32s[2]
|
|
8902
8910
|
0x0025 SceneFlags? int32s
|
|
8903
8911
|
0x0026 SignalToNoiseRatioType? int32s
|
|
8904
8912
|
0x0027 SignalToNoiseRatio rational64s
|
|
8905
8913
|
0x002b PhotoIdentifier string
|
|
8914
|
+
0x002d ColorTemperature int32s
|
|
8915
|
+
0x002e CameraType int32s
|
|
8906
8916
|
0x002f FocusPosition int32s
|
|
8907
8917
|
0x0030 HDRGain rational64s
|
|
8908
8918
|
0x0038 AFMeasuredDepth int32s
|
|
@@ -8912,7 +8922,8 @@ Tags extracted from the maker notes of iPhone images.
|
|
|
8912
8922
|
0x0040 SemanticStyle no
|
|
8913
8923
|
0x0041 SemanticStyleRenderingVer no
|
|
8914
8924
|
0x0042 SemanticStylePreset no
|
|
8915
|
-
|
|
8925
|
+
0x004e Apple_0x004e? no
|
|
8926
|
+
0x004f Apple_0x004f? no
|
|
8916
8927
|
|
|
8917
8928
|
=head3 Apple RunTime Tags
|
|
8918
8929
|
|
|
@@ -12281,6 +12292,7 @@ below by a decimal appended to the tag ID (.0, .1 or .2).
|
|
|
12281
12292
|
0x10002 Rotation yes
|
|
12282
12293
|
0x10003 AngleAdj yes
|
|
12283
12294
|
0x10021 CustomPictureStyle yes
|
|
12295
|
+
0x10100 Rating yes
|
|
12284
12296
|
0x10101 CheckMark yes
|
|
12285
12297
|
0x10200 WorkColorSpace yes
|
|
12286
12298
|
0x20001 RawBrightnessAdj yes
|
|
@@ -12402,7 +12414,8 @@ below by a decimal appended to the tag ID (.0, .1 or .2).
|
|
|
12402
12414
|
4 CropY int32s
|
|
12403
12415
|
5 CropWidth int32s
|
|
12404
12416
|
6 CropHeight int32s
|
|
12405
|
-
|
|
12417
|
+
7 CropRotation int32s
|
|
12418
|
+
8 CropAngle double
|
|
12406
12419
|
10 CropOriginalWidth int32s
|
|
12407
12420
|
11 CropOriginalHeight int32s
|
|
12408
12421
|
|
|
@@ -13165,8 +13178,9 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
|
13165
13178
|
0x104d CropMode int16u
|
|
13166
13179
|
0x104e ColorChromeFXBlue int32s
|
|
13167
13180
|
0x1050 ShutterType int16u
|
|
13168
|
-
0x1051
|
|
13169
|
-
0x1052
|
|
13181
|
+
0x1051 CropFlag int8u
|
|
13182
|
+
0x1052 CropTopLeft int32u
|
|
13183
|
+
0x1053 CropSize int32u
|
|
13170
13184
|
0x1100 AutoBracketing int16u
|
|
13171
13185
|
0x1101 SequenceNumber int16u
|
|
13172
13186
|
0x1103 DriveSettings FujiFilm DriveSettings
|
|
@@ -13235,7 +13249,7 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
|
13235
13249
|
0.2 PreAF int32u & 0xf0
|
|
13236
13250
|
0.3 AFAreaMode int32u & 0xf00
|
|
13237
13251
|
0.4 AFAreaPointSize int32u & 0xf000
|
|
13238
|
-
0.5 AFAreaZoneSize int32u &
|
|
13252
|
+
0.5 AFAreaZoneSize int32u & 0xff0000
|
|
13239
13253
|
|
|
13240
13254
|
=head3 FujiFilm AFCSettings Tags
|
|
13241
13255
|
|
|
@@ -16468,6 +16482,7 @@ These tags are extracted from encrypted data in images from the Z8.
|
|
|
16468
16482
|
0 ShotInfoVersion no
|
|
16469
16483
|
4 FirmwareVersion no
|
|
16470
16484
|
48 SequenceOffset Nikon SeqInfoZ9
|
|
16485
|
+
128 AutoCaptureOffset Nikon AutoCaptureInfo
|
|
16471
16486
|
132 OrientOffset Nikon OrientationInfo
|
|
16472
16487
|
140 MenuOffset Nikon MenuInfoZ8
|
|
16473
16488
|
|
|
@@ -16478,133 +16493,282 @@ These tags are extracted from encrypted data in images from the Z8.
|
|
|
16478
16493
|
32 FocusShiftShooting int8u~
|
|
16479
16494
|
40 IntervalShooting int16u~
|
|
16480
16495
|
|
|
16496
|
+
=head3 Nikon AutoCaptureInfo Tags
|
|
16497
|
+
|
|
16498
|
+
Index1 Tag Name Writable
|
|
16499
|
+
------ -------- --------
|
|
16500
|
+
0 AutoCapturedFrame int8u
|
|
16501
|
+
1 AutoCaptureCriteria int8u~
|
|
16502
|
+
55 AutoCaptureRecordingTime int8u
|
|
16503
|
+
56 AutoCaptureWaitTime int8u
|
|
16504
|
+
74 AutoCaptureDistanceFar int8u~
|
|
16505
|
+
78 AutoCaptureDistanceNear int8u~
|
|
16506
|
+
95 AutoCaptureCriteriaMotionDirection int8u~
|
|
16507
|
+
99 AutoCaptureCriteriaMotionSpeed int8u
|
|
16508
|
+
100 AutoCaptureCriteriaMotionSize int8u
|
|
16509
|
+
105 AutoCaptureCriteriaSubjectSize int8u
|
|
16510
|
+
106 AutoCaptureCriteriaSubjectType int8u
|
|
16511
|
+
|
|
16481
16512
|
=head3 Nikon MenuInfoZ8 Tags
|
|
16482
16513
|
|
|
16483
16514
|
Index1 Tag Name Writable
|
|
16484
16515
|
------ -------- --------
|
|
16485
16516
|
16 MenuSettingsOffsetZ8 Nikon MenuSettingsZ8
|
|
16517
|
+
MenuSettingsOffsetZ8v2 -
|
|
16518
|
+
Nikon MenuSettingsZ8v2
|
|
16486
16519
|
|
|
16487
16520
|
=head3 Nikon MenuSettingsZ8 Tags
|
|
16488
16521
|
|
|
16489
16522
|
These tags are used by the Z8 firmware 1.00.
|
|
16490
16523
|
|
|
16491
|
-
Index1
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16495
|
-
|
|
16496
|
-
|
|
16497
|
-
|
|
16498
|
-
|
|
16499
|
-
|
|
16500
|
-
|
|
16501
|
-
|
|
16502
|
-
|
|
16503
|
-
|
|
16504
|
-
|
|
16505
|
-
|
|
16506
|
-
|
|
16507
|
-
|
|
16508
|
-
|
|
16509
|
-
|
|
16510
|
-
|
|
16511
|
-
|
|
16512
|
-
|
|
16513
|
-
|
|
16514
|
-
|
|
16515
|
-
|
|
16516
|
-
|
|
16517
|
-
|
|
16518
|
-
|
|
16519
|
-
|
|
16520
|
-
|
|
16521
|
-
|
|
16522
|
-
|
|
16523
|
-
|
|
16524
|
-
|
|
16525
|
-
|
|
16526
|
-
|
|
16527
|
-
|
|
16528
|
-
|
|
16529
|
-
|
|
16530
|
-
|
|
16531
|
-
|
|
16532
|
-
|
|
16533
|
-
|
|
16534
|
-
|
|
16535
|
-
|
|
16536
|
-
|
|
16537
|
-
|
|
16538
|
-
|
|
16539
|
-
|
|
16540
|
-
|
|
16541
|
-
|
|
16542
|
-
|
|
16543
|
-
|
|
16544
|
-
|
|
16545
|
-
|
|
16546
|
-
|
|
16547
|
-
|
|
16548
|
-
|
|
16549
|
-
|
|
16550
|
-
|
|
16551
|
-
|
|
16552
|
-
|
|
16553
|
-
|
|
16554
|
-
|
|
16555
|
-
|
|
16556
|
-
|
|
16557
|
-
|
|
16558
|
-
|
|
16559
|
-
|
|
16560
|
-
|
|
16561
|
-
|
|
16562
|
-
|
|
16563
|
-
|
|
16564
|
-
|
|
16565
|
-
|
|
16566
|
-
|
|
16567
|
-
|
|
16568
|
-
|
|
16569
|
-
|
|
16570
|
-
|
|
16571
|
-
|
|
16572
|
-
|
|
16573
|
-
|
|
16574
|
-
|
|
16575
|
-
|
|
16576
|
-
|
|
16577
|
-
|
|
16578
|
-
|
|
16579
|
-
|
|
16580
|
-
|
|
16581
|
-
|
|
16582
|
-
|
|
16583
|
-
|
|
16584
|
-
|
|
16585
|
-
|
|
16586
|
-
|
|
16587
|
-
|
|
16588
|
-
|
|
16589
|
-
|
|
16590
|
-
|
|
16591
|
-
|
|
16592
|
-
|
|
16593
|
-
|
|
16594
|
-
|
|
16595
|
-
|
|
16596
|
-
|
|
16597
|
-
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
|
|
16602
|
-
|
|
16603
|
-
|
|
16604
|
-
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16524
|
+
Index1 Tag Name Writable
|
|
16525
|
+
------ -------- --------
|
|
16526
|
+
72 HighFrameRate int8u
|
|
16527
|
+
152 MultipleExposureMode int8u
|
|
16528
|
+
154 MultiExposureShots int8u
|
|
16529
|
+
184 IntervalDurationHours int32u
|
|
16530
|
+
188 IntervalDurationMinutes int32u
|
|
16531
|
+
192 IntervalDurationSeconds int32u
|
|
16532
|
+
200 Intervals int32u
|
|
16533
|
+
204 ShotsPerInterval int32u
|
|
16534
|
+
208 IntervalExposureSmoothing int8u
|
|
16535
|
+
210 IntervalPriority int8u
|
|
16536
|
+
244 FocusShiftNumberShots int8u
|
|
16537
|
+
248 FocusShiftStepWidth int8u
|
|
16538
|
+
252 FocusShiftInterval int8u~
|
|
16539
|
+
256 FocusShiftExposureLock? int8u
|
|
16540
|
+
286 PhotoShootingMenuBank int8u
|
|
16541
|
+
288 ExtendedMenuBanks int8u
|
|
16542
|
+
324 PhotoShootingMenuBankImageArea int8u
|
|
16543
|
+
338 AutoISO int8u
|
|
16544
|
+
340 ISOAutoHiLimit? int16u
|
|
16545
|
+
342 ISOAutoFlashLimit? int16u
|
|
16546
|
+
350 ISOAutoShutterTime no
|
|
16547
|
+
432 MovieVignetteControl? int8u
|
|
16548
|
+
434 DiffractionCompensation int8u
|
|
16549
|
+
436 FlickerReductionShooting int8u
|
|
16550
|
+
440 FlashControlMode int8u
|
|
16551
|
+
548 AFAreaMode int8u
|
|
16552
|
+
550 VRMode int8u
|
|
16553
|
+
554 BracketSet int8u
|
|
16554
|
+
556 BracketProgram int8u
|
|
16555
|
+
558 BracketIncrement int8u
|
|
16556
|
+
570 HDR int8u
|
|
16557
|
+
576 SecondarySlotFunction int8u
|
|
16558
|
+
582 HDRLevel int8u
|
|
16559
|
+
586 Slot2JpgSize? int8u
|
|
16560
|
+
592 DXCropAlert int8u
|
|
16561
|
+
594 SubjectDetection int8u
|
|
16562
|
+
596 DynamicAFAreaSize int8u
|
|
16563
|
+
618 ToneMap? int8u
|
|
16564
|
+
622 PortraitImpressionBalance int8u
|
|
16565
|
+
636 HighFrequencyFlickerReduction? int8u
|
|
16566
|
+
730 MovieImageArea? int8u & 0x01
|
|
16567
|
+
740 MovieType? int8u
|
|
16568
|
+
742 MovieISOAutoHiLimit? int16u
|
|
16569
|
+
744 MovieISOAutoControlManualMode? int8u
|
|
16570
|
+
746 MovieISOAutoManualMode? int16u
|
|
16571
|
+
820 MovieActiveD-Lighting? int8u
|
|
16572
|
+
822 MovieHighISONoiseReduction? int8u
|
|
16573
|
+
828 MovieFlickerReduction int8u
|
|
16574
|
+
830 MovieMeteringMode? int8u
|
|
16575
|
+
832 MovieFocusMode? int8u
|
|
16576
|
+
834 MovieAFAreaMode int8u
|
|
16577
|
+
836 MovieVRMode? int8u
|
|
16578
|
+
840 MovieElectronicVR? int8u
|
|
16579
|
+
842 MovieSoundRecording? int8u
|
|
16580
|
+
844 MicrophoneSensitivity? int8u
|
|
16581
|
+
846 MicrophoneAttenuator? int8u
|
|
16582
|
+
848 MicrophoneFrequencyResponse? int8u
|
|
16583
|
+
850 WindNoiseReduction? int8u
|
|
16584
|
+
882 MovieFrameSize? int8u
|
|
16585
|
+
884 MovieFrameRate? int8u
|
|
16586
|
+
886 MicrophoneJackPower? int8u
|
|
16587
|
+
887 MovieDXCropAlert? int8u
|
|
16588
|
+
888 MovieSubjectDetection? int8u
|
|
16589
|
+
896 MovieHighResZoom? int8u
|
|
16590
|
+
943 CustomSettingsZ8 NikonCustom SettingsZ8
|
|
16591
|
+
1684 TimeZone int8u
|
|
16592
|
+
1690 MonitorBrightness? int8u
|
|
16593
|
+
1698 Language? int8u
|
|
16594
|
+
1712 AFFineTune? int8u
|
|
16595
|
+
1716 NonCPULens1FocalLength? int16u~
|
|
16596
|
+
1718 NonCPULens2FocalLength? int16u~
|
|
16597
|
+
1720 NonCPULens3FocalLength? int16u~
|
|
16598
|
+
1722 NonCPULens4FocalLength? int16u~
|
|
16599
|
+
1724 NonCPULens5FocalLength? int16u~
|
|
16600
|
+
1726 NonCPULens6FocalLength? int16u~
|
|
16601
|
+
1728 NonCPULens7FocalLength? int16u~
|
|
16602
|
+
1730 NonCPULens8FocalLength? int16u~
|
|
16603
|
+
1732 NonCPULens9FocalLength? int16u~
|
|
16604
|
+
1734 NonCPULens10FocalLength? int16u~
|
|
16605
|
+
1736 NonCPULens11FocalLength? int16u~
|
|
16606
|
+
1738 NonCPULens12FocalLength? int16u~
|
|
16607
|
+
1740 NonCPULens13FocalLength? int16u~
|
|
16608
|
+
1742 NonCPULens14FocalLength? int16u~
|
|
16609
|
+
1744 NonCPULens15FocalLength? int16u~
|
|
16610
|
+
1746 NonCPULens16FocalLength? int16u~
|
|
16611
|
+
1748 NonCPULens17FocalLength? int16u~
|
|
16612
|
+
1750 NonCPULens18FocalLength? int16u~
|
|
16613
|
+
1752 NonCPULens19FocalLength? int16u~
|
|
16614
|
+
1754 NonCPULens20FocalLength? int16u~
|
|
16615
|
+
1756 NonCPULens1MaxAperture? int16u
|
|
16616
|
+
1758 NonCPULens2MaxAperture? int16u
|
|
16617
|
+
1760 NonCPULens3MaxAperture? int16u
|
|
16618
|
+
1762 NonCPULens4MaxAperture? int16u
|
|
16619
|
+
1764 NonCPULens5MaxAperture? int16u
|
|
16620
|
+
1766 NonCPULens6MaxAperture? int16u
|
|
16621
|
+
1768 NonCPULens7MaxAperture? int16u
|
|
16622
|
+
1770 NonCPULens8MaxAperture? int16u
|
|
16623
|
+
1772 NonCPULens9MaxAperture? int16u
|
|
16624
|
+
1774 NonCPULens10MaxAperture? int16u
|
|
16625
|
+
1776 NonCPULens11MaxAperture? int16u
|
|
16626
|
+
1778 NonCPULens12MaxAperture? int16u
|
|
16627
|
+
1780 NonCPULens13MaxAperture? int16u
|
|
16628
|
+
1782 NonCPULens14MaxAperture? int16u
|
|
16629
|
+
1784 NonCPULens15MaxAperture? int16u
|
|
16630
|
+
1786 NonCPULens16MaxAperture? int16u
|
|
16631
|
+
1788 NonCPULens17MaxAperture? int16u
|
|
16632
|
+
1790 NonCPULens18MaxAperture? int16u
|
|
16633
|
+
1792 NonCPULens19MaxAperture? int16u
|
|
16634
|
+
1794 NonCPULens20MaxAperture? int16u
|
|
16635
|
+
1808 HDMIOutputResolution int8u
|
|
16636
|
+
1826 AirplaneMode? int8u
|
|
16637
|
+
1827 EmptySlotRelease? int8u
|
|
16638
|
+
1862 EnergySavingMode? int8u
|
|
16639
|
+
1890 USBPowerDelivery? int8u
|
|
16640
|
+
1899 SensorShield? int8u
|
|
16641
|
+
|
|
16642
|
+
=head3 Nikon MenuSettingsZ8v2 Tags
|
|
16643
|
+
|
|
16644
|
+
These tags are used by the Z8 firmware 1.00.
|
|
16645
|
+
|
|
16646
|
+
Index1 Tag Name Writable
|
|
16647
|
+
------ -------- --------
|
|
16648
|
+
72 HighFrameRate int8u
|
|
16649
|
+
152 MultipleExposureMode int8u
|
|
16650
|
+
154 MultiExposureShots int8u
|
|
16651
|
+
184 IntervalDurationHours int32u
|
|
16652
|
+
188 IntervalDurationMinutes int32u
|
|
16653
|
+
192 IntervalDurationSeconds int32u
|
|
16654
|
+
200 Intervals int32u
|
|
16655
|
+
204 ShotsPerInterval int32u
|
|
16656
|
+
208 IntervalExposureSmoothing int8u
|
|
16657
|
+
210 IntervalPriority int8u
|
|
16658
|
+
244 FocusShiftNumberShots int8u
|
|
16659
|
+
248 FocusShiftStepWidth int8u
|
|
16660
|
+
252 FocusShiftInterval int8u~
|
|
16661
|
+
256 FocusShiftExposureLock? int8u
|
|
16662
|
+
286 PhotoShootingMenuBank int8u
|
|
16663
|
+
288 ExtendedMenuBanks int8u
|
|
16664
|
+
324 PhotoShootingMenuBankImageArea int8u
|
|
16665
|
+
338 AutoISO int8u
|
|
16666
|
+
340 ISOAutoHiLimit? int16u
|
|
16667
|
+
342 ISOAutoFlashLimit? int16u
|
|
16668
|
+
350 ISOAutoShutterTime no
|
|
16669
|
+
432 MovieVignetteControl? int8u
|
|
16670
|
+
434 DiffractionCompensation int8u
|
|
16671
|
+
436 FlickerReductionShooting int8u
|
|
16672
|
+
440 FlashControlMode int8u
|
|
16673
|
+
548 AFAreaMode int8u
|
|
16674
|
+
550 VRMode int8u
|
|
16675
|
+
554 BracketSet int8u
|
|
16676
|
+
556 BracketProgram int8u
|
|
16677
|
+
558 BracketIncrement int8u
|
|
16678
|
+
570 HDR int8u
|
|
16679
|
+
576 SecondarySlotFunction int8u
|
|
16680
|
+
582 HDRLevel int8u
|
|
16681
|
+
586 Slot2JpgSize? int8u
|
|
16682
|
+
592 DXCropAlert int8u
|
|
16683
|
+
594 SubjectDetection int8u
|
|
16684
|
+
596 DynamicAFAreaSize int8u
|
|
16685
|
+
618 ToneMap? int8u
|
|
16686
|
+
622 PortraitImpressionBalance int8u
|
|
16687
|
+
636 HighFrequencyFlickerReduction? int8u
|
|
16688
|
+
730 MovieImageArea? int8u & 0x01
|
|
16689
|
+
740 MovieType? int8u
|
|
16690
|
+
742 MovieISOAutoHiLimit? int16u
|
|
16691
|
+
744 MovieISOAutoControlManualMode? int8u
|
|
16692
|
+
746 MovieISOAutoManualMode? int16u
|
|
16693
|
+
820 MovieActiveD-Lighting? int8u
|
|
16694
|
+
822 MovieHighISONoiseReduction? int8u
|
|
16695
|
+
828 MovieFlickerReduction int8u
|
|
16696
|
+
830 MovieMeteringMode? int8u
|
|
16697
|
+
832 MovieFocusMode? int8u
|
|
16698
|
+
834 MovieAFAreaMode int8u
|
|
16699
|
+
836 MovieVRMode? int8u
|
|
16700
|
+
840 MovieElectronicVR? int8u
|
|
16701
|
+
842 MovieSoundRecording? int8u
|
|
16702
|
+
844 MicrophoneSensitivity? int8u
|
|
16703
|
+
846 MicrophoneAttenuator? int8u
|
|
16704
|
+
848 MicrophoneFrequencyResponse? int8u
|
|
16705
|
+
850 WindNoiseReduction? int8u
|
|
16706
|
+
878 MovieFrameSize? int8u
|
|
16707
|
+
880 MovieFrameRate? int8u
|
|
16708
|
+
886 MicrophoneJackPower? int8u
|
|
16709
|
+
887 MovieDXCropAlert? int8u
|
|
16710
|
+
888 MovieSubjectDetection? int8u
|
|
16711
|
+
896 MovieHighResZoom? int8u
|
|
16712
|
+
943 CustomSettingsZ8 NikonCustom SettingsZ8
|
|
16713
|
+
1698 Language? int8u
|
|
16714
|
+
1700 TimeZone int8u
|
|
16715
|
+
1706 MonitorBrightness? int8u
|
|
16716
|
+
1728 AFFineTune? int8u
|
|
16717
|
+
1732 NonCPULens1FocalLength? int16u~
|
|
16718
|
+
1734 NonCPULens2FocalLength? int16u~
|
|
16719
|
+
1736 NonCPULens3FocalLength? int16u~
|
|
16720
|
+
1738 NonCPULens4FocalLength? int16u~
|
|
16721
|
+
1740 NonCPULens5FocalLength? int16u~
|
|
16722
|
+
1742 NonCPULens6FocalLength? int16u~
|
|
16723
|
+
1744 NonCPULens7FocalLength? int16u~
|
|
16724
|
+
1746 NonCPULens8FocalLength? int16u~
|
|
16725
|
+
1748 NonCPULens9FocalLength? int16u~
|
|
16726
|
+
1750 NonCPULens10FocalLength? int16u~
|
|
16727
|
+
1752 NonCPULens11FocalLength? int16u~
|
|
16728
|
+
1754 NonCPULens12FocalLength? int16u~
|
|
16729
|
+
1756 NonCPULens13FocalLength? int16u~
|
|
16730
|
+
1758 NonCPULens14FocalLength? int16u~
|
|
16731
|
+
1760 NonCPULens15FocalLength? int16u~
|
|
16732
|
+
1762 NonCPULens16FocalLength? int16u~
|
|
16733
|
+
1764 NonCPULens17FocalLength? int16u~
|
|
16734
|
+
1766 NonCPULens18FocalLength? int16u~
|
|
16735
|
+
1768 NonCPULens19FocalLength? int16u~
|
|
16736
|
+
1770 NonCPULens20FocalLength? int16u~
|
|
16737
|
+
1812 NonCPULens1MaxAperture? int32u~
|
|
16738
|
+
1816 NonCPULens2MaxAperture? int32u~
|
|
16739
|
+
1820 NonCPULens3MaxAperture? int32u~
|
|
16740
|
+
1824 HDMIOutputResolution int8u
|
|
16741
|
+
1828 NonCPULens5MaxAperture? int32u~
|
|
16742
|
+
1832 NonCPULens6MaxAperture? int32u~
|
|
16743
|
+
1836 NonCPULens7MaxAperture? int32u~
|
|
16744
|
+
1840 NonCPULens8MaxAperture? int32u~
|
|
16745
|
+
1842 AirplaneMode? int8u
|
|
16746
|
+
1843 EmptySlotRelease? int8u
|
|
16747
|
+
1844 NonCPULens9MaxAperture? int32u~
|
|
16748
|
+
1848 NonCPULens10MaxAperture? int32u~
|
|
16749
|
+
1852 NonCPULens11MaxAperture? int32u~
|
|
16750
|
+
1856 NonCPULens12MaxAperture? int32u~
|
|
16751
|
+
1860 NonCPULens13MaxAperture? int32u~
|
|
16752
|
+
1864 NonCPULens14MaxAperture? int32u~
|
|
16753
|
+
1868 NonCPULens15MaxAperture? int32u~
|
|
16754
|
+
1872 NonCPULens16MaxAperture? int32u~
|
|
16755
|
+
1876 NonCPULens17MaxAperture? int32u~
|
|
16756
|
+
1878 EnergySavingMode? int8u
|
|
16757
|
+
1880 NonCPULens18MaxAperture? int32u~
|
|
16758
|
+
1884 NonCPULens19MaxAperture? int32u~
|
|
16759
|
+
1888 NonCPULens20MaxAperture? int32u~
|
|
16760
|
+
1906 USBPowerDelivery? int8u
|
|
16761
|
+
1915 SensorShield? int8u
|
|
16762
|
+
2046 PixelShiftShooting int8u
|
|
16763
|
+
2048 PixelShiftNumberShots int8u
|
|
16764
|
+
2050 PixelShiftDelay int8u
|
|
16765
|
+
2052 PlaybackButton int8u
|
|
16766
|
+
2054 WBButton int8u
|
|
16767
|
+
2056 BracketButton int8u
|
|
16768
|
+
2058 LensFunc1ButtonPlaybackMode int8u
|
|
16769
|
+
2060 LensFunc2ButtonPlaybackMode int8u
|
|
16770
|
+
2062 PlaybackButtonPlaybackMode int8u
|
|
16771
|
+
2064 BracketButtonPlaybackMode int8u
|
|
16608
16772
|
|
|
16609
16773
|
=head3 Nikon ShotInfoZ9 Tags
|
|
16610
16774
|
|
|
@@ -16629,22 +16793,6 @@ These tags are extracted from encrypted data in images from the Z9.
|
|
|
16629
16793
|
3050 AFAreaInitialWidth int8u
|
|
16630
16794
|
3051 AFAreaInitialHeight int8u
|
|
16631
16795
|
|
|
16632
|
-
=head3 Nikon AutoCaptureInfo Tags
|
|
16633
|
-
|
|
16634
|
-
Index1 Tag Name Writable
|
|
16635
|
-
------ -------- --------
|
|
16636
|
-
0 AutoCapturedFrame int8u
|
|
16637
|
-
1 AutoCaptureCriteria int8u~
|
|
16638
|
-
55 AutoCaptureRecordingTime int8u
|
|
16639
|
-
56 AutoCaptureWaitTime int8u
|
|
16640
|
-
74 AutoCaptureDistanceFar int8u~
|
|
16641
|
-
78 AutoCaptureDistanceNear int8u~
|
|
16642
|
-
95 AutoCaptureCriteriaMotionDirection int8u~
|
|
16643
|
-
99 AutoCaptureCriteriaMotionSpeed int8u
|
|
16644
|
-
100 AutoCaptureCriteriaMotionSize int8u
|
|
16645
|
-
105 AutoCaptureCriteriaSubjectSize int8u
|
|
16646
|
-
106 AutoCaptureCriteriaSubjectType int8u
|
|
16647
|
-
|
|
16648
16796
|
=head3 Nikon MenuInfoZ9 Tags
|
|
16649
16797
|
|
|
16650
16798
|
Index1 Tag Name Writable
|
|
@@ -16736,222 +16884,224 @@ These tags are used by the Z9.
|
|
|
16736
16884
|
|
|
16737
16885
|
These tags are used by the Z9 firmware 3.00.
|
|
16738
16886
|
|
|
16739
|
-
Index1
|
|
16740
|
-
|
|
16741
|
-
|
|
16742
|
-
|
|
16743
|
-
|
|
16744
|
-
|
|
16745
|
-
|
|
16746
|
-
|
|
16747
|
-
|
|
16748
|
-
|
|
16749
|
-
|
|
16750
|
-
|
|
16751
|
-
|
|
16752
|
-
|
|
16753
|
-
|
|
16754
|
-
|
|
16755
|
-
|
|
16756
|
-
|
|
16757
|
-
|
|
16758
|
-
|
|
16759
|
-
|
|
16760
|
-
|
|
16761
|
-
|
|
16762
|
-
|
|
16763
|
-
|
|
16764
|
-
|
|
16765
|
-
|
|
16766
|
-
|
|
16767
|
-
|
|
16768
|
-
|
|
16769
|
-
|
|
16770
|
-
|
|
16771
|
-
|
|
16772
|
-
|
|
16773
|
-
|
|
16774
|
-
|
|
16775
|
-
|
|
16776
|
-
|
|
16777
|
-
|
|
16778
|
-
|
|
16779
|
-
|
|
16780
|
-
|
|
16781
|
-
|
|
16782
|
-
|
|
16783
|
-
|
|
16784
|
-
|
|
16785
|
-
|
|
16786
|
-
|
|
16787
|
-
|
|
16788
|
-
|
|
16789
|
-
|
|
16790
|
-
|
|
16791
|
-
|
|
16792
|
-
|
|
16793
|
-
|
|
16794
|
-
|
|
16795
|
-
|
|
16796
|
-
|
|
16797
|
-
|
|
16798
|
-
|
|
16799
|
-
|
|
16800
|
-
|
|
16801
|
-
|
|
16802
|
-
|
|
16803
|
-
|
|
16804
|
-
|
|
16805
|
-
|
|
16806
|
-
|
|
16807
|
-
|
|
16808
|
-
|
|
16809
|
-
|
|
16810
|
-
|
|
16811
|
-
|
|
16812
|
-
|
|
16813
|
-
|
|
16814
|
-
|
|
16887
|
+
Index1 Tag Name Writable
|
|
16888
|
+
------ -------- --------
|
|
16889
|
+
72 HighFrameRate int8u
|
|
16890
|
+
154 MultipleExposureMode int8u
|
|
16891
|
+
156 MultiExposureShots int8u
|
|
16892
|
+
204 Intervals int32u
|
|
16893
|
+
208 ShotsPerInterval int32u
|
|
16894
|
+
248 FocusShiftNumberShots int8u
|
|
16895
|
+
252 FocusShiftStepWidth int8u
|
|
16896
|
+
256 FocusShiftInterval int8u~
|
|
16897
|
+
260 FocusShiftExposureLock? int8u
|
|
16898
|
+
290 PhotoShootingMenuBank int8u
|
|
16899
|
+
292 ExtendedMenuBanks int8u
|
|
16900
|
+
328 PhotoShootingMenuBankImageArea int8u
|
|
16901
|
+
342 AutoISO int8u
|
|
16902
|
+
344 ISOAutoHiLimit? int16u
|
|
16903
|
+
346 ISOAutoFlashLimit? int16u
|
|
16904
|
+
354 ISOAutoShutterTime no
|
|
16905
|
+
436 MovieVignetteControl? int8u
|
|
16906
|
+
438 DiffractionCompensation int8u
|
|
16907
|
+
440 FlickerReductionShooting int8u
|
|
16908
|
+
444 FlashControlMode int8u
|
|
16909
|
+
446 FlashMasterCompensation? int8s
|
|
16910
|
+
450 FlashGNDistance? no
|
|
16911
|
+
454 FlashOutput? int8u
|
|
16912
|
+
548 AFAreaMode int8u
|
|
16913
|
+
550 VRMode int8u
|
|
16914
|
+
554 BracketSet int8u
|
|
16915
|
+
556 BracketProgram int8u
|
|
16916
|
+
558 BracketIncrement int8u
|
|
16917
|
+
576 SecondarySlotFunction int8u
|
|
16918
|
+
592 DXCropAlert int8u
|
|
16919
|
+
594 SubjectDetection int8u
|
|
16920
|
+
596 DynamicAFAreaSize int8u
|
|
16921
|
+
636 HighFrequencyFlickerReduction? int8u
|
|
16922
|
+
646 MovieImageArea? int8u & 0x01
|
|
16923
|
+
656 MovieType? int8u
|
|
16924
|
+
658 MovieISOAutoHiLimit? int16u
|
|
16925
|
+
660 MovieISOAutoControlManualMode? int8u
|
|
16926
|
+
662 MovieISOAutoManualMode? int16u
|
|
16927
|
+
736 MovieActiveD-Lighting? int8u
|
|
16928
|
+
738 MovieHighISONoiseReduction? int8u
|
|
16929
|
+
744 MovieFlickerReduction int8u
|
|
16930
|
+
746 MovieMeteringMode? int8u
|
|
16931
|
+
748 MovieFocusMode? int8u
|
|
16932
|
+
750 MovieAFAreaMode int8u
|
|
16933
|
+
752 MovieVRMode? int8u
|
|
16934
|
+
756 MovieElectronicVR? int8u
|
|
16935
|
+
758 MovieSoundRecording? int8u
|
|
16936
|
+
760 MicrophoneSensitivity? int8u
|
|
16937
|
+
762 MicrophoneAttenuator? int8u
|
|
16938
|
+
764 MicrophoneFrequencyResponse? int8u
|
|
16939
|
+
766 WindNoiseReduction? int8u
|
|
16940
|
+
788 MovieToneMap? int8u
|
|
16941
|
+
794 MovieFrameSize? int8u
|
|
16942
|
+
796 MovieFrameRate? int8u
|
|
16943
|
+
802 MicrophoneJackPower? int8u
|
|
16944
|
+
803 MovieDXCropAlert? int8u
|
|
16945
|
+
804 MovieSubjectDetection? int8u
|
|
16946
|
+
812 MovieHighResZoom? int8u
|
|
16947
|
+
847 CustomSettingsZ9 NikonCustom SettingsZ9
|
|
16948
|
+
1474 Language? int8u
|
|
16949
|
+
1476 TimeZone int8u
|
|
16950
|
+
1482 MonitorBrightness? int8u
|
|
16951
|
+
1504 AFFineTune? int8u
|
|
16952
|
+
1600 HDMIOutputResolution int8u
|
|
16953
|
+
1613 SetClockFromLocationData? int8u
|
|
16954
|
+
1620 AirplaneMode? int8u
|
|
16955
|
+
1621 EmptySlotRelease? int8u
|
|
16956
|
+
1656 EnergySavingMode? int8u
|
|
16957
|
+
1680 RecordLocationData? int8u
|
|
16958
|
+
1684 USBPowerDelivery? int8u
|
|
16959
|
+
1693 SensorShield? int8u
|
|
16960
|
+
1754 FocusShiftAutoReset? int8u
|
|
16961
|
+
1810 PreReleaseBurstLength int8u
|
|
16962
|
+
1812 PostReleaseBurstLength int8u
|
|
16815
16963
|
|
|
16816
16964
|
=head3 Nikon MenuSettingsZ9v4 Tags
|
|
16817
16965
|
|
|
16818
|
-
These tags are used by the Z9 firmware
|
|
16819
|
-
|
|
16820
|
-
Index1
|
|
16821
|
-
|
|
16822
|
-
|
|
16823
|
-
|
|
16824
|
-
|
|
16825
|
-
|
|
16826
|
-
|
|
16827
|
-
|
|
16828
|
-
|
|
16829
|
-
|
|
16830
|
-
|
|
16831
|
-
|
|
16832
|
-
|
|
16833
|
-
|
|
16834
|
-
|
|
16835
|
-
|
|
16836
|
-
|
|
16837
|
-
|
|
16838
|
-
|
|
16839
|
-
|
|
16840
|
-
|
|
16841
|
-
|
|
16842
|
-
|
|
16843
|
-
|
|
16844
|
-
|
|
16845
|
-
|
|
16846
|
-
|
|
16847
|
-
|
|
16848
|
-
|
|
16849
|
-
|
|
16850
|
-
|
|
16851
|
-
|
|
16852
|
-
|
|
16853
|
-
|
|
16854
|
-
|
|
16855
|
-
|
|
16856
|
-
|
|
16857
|
-
|
|
16858
|
-
|
|
16859
|
-
|
|
16860
|
-
|
|
16861
|
-
|
|
16862
|
-
|
|
16863
|
-
|
|
16864
|
-
|
|
16865
|
-
|
|
16866
|
-
|
|
16867
|
-
|
|
16868
|
-
|
|
16869
|
-
|
|
16870
|
-
|
|
16871
|
-
|
|
16872
|
-
|
|
16873
|
-
|
|
16874
|
-
|
|
16875
|
-
|
|
16876
|
-
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
|
|
16880
|
-
|
|
16881
|
-
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
|
|
16888
|
-
|
|
16889
|
-
|
|
16890
|
-
|
|
16891
|
-
|
|
16892
|
-
|
|
16893
|
-
|
|
16894
|
-
|
|
16895
|
-
|
|
16896
|
-
|
|
16897
|
-
|
|
16898
|
-
|
|
16899
|
-
|
|
16900
|
-
|
|
16901
|
-
|
|
16902
|
-
|
|
16903
|
-
|
|
16904
|
-
|
|
16905
|
-
|
|
16906
|
-
|
|
16907
|
-
|
|
16908
|
-
|
|
16909
|
-
|
|
16910
|
-
|
|
16911
|
-
|
|
16912
|
-
|
|
16913
|
-
|
|
16914
|
-
|
|
16915
|
-
|
|
16916
|
-
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16921
|
-
|
|
16922
|
-
|
|
16923
|
-
|
|
16924
|
-
|
|
16925
|
-
|
|
16926
|
-
|
|
16927
|
-
|
|
16928
|
-
|
|
16929
|
-
|
|
16930
|
-
|
|
16931
|
-
|
|
16932
|
-
|
|
16933
|
-
|
|
16934
|
-
|
|
16935
|
-
|
|
16936
|
-
|
|
16937
|
-
|
|
16938
|
-
|
|
16939
|
-
|
|
16940
|
-
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
|
|
16949
|
-
|
|
16950
|
-
|
|
16951
|
-
|
|
16952
|
-
|
|
16953
|
-
|
|
16954
|
-
|
|
16966
|
+
These tags are used by the Z9 firmware 4.0.0 and 4.1.0
|
|
16967
|
+
|
|
16968
|
+
Index1 Tag Name Writable
|
|
16969
|
+
------ -------- --------
|
|
16970
|
+
72 HighFrameRate int8u
|
|
16971
|
+
154 MultipleExposureMode int8u
|
|
16972
|
+
156 MultiExposureShots int8u
|
|
16973
|
+
204 Intervals int32u
|
|
16974
|
+
208 ShotsPerInterval int32u
|
|
16975
|
+
248 FocusShiftNumberShots int8u
|
|
16976
|
+
252 FocusShiftStepWidth int8u
|
|
16977
|
+
256 FocusShiftInterval int8u~
|
|
16978
|
+
260 FocusShiftExposureLock? int8u
|
|
16979
|
+
290 PhotoShootingMenuBank int8u
|
|
16980
|
+
292 ExtendedMenuBanks int8u
|
|
16981
|
+
328 PhotoShootingMenuBankImageArea int8u
|
|
16982
|
+
342 AutoISO int8u
|
|
16983
|
+
344 ISOAutoHiLimit? int16u
|
|
16984
|
+
346 ISOAutoFlashLimit? int16u
|
|
16985
|
+
354 ISOAutoShutterTime no
|
|
16986
|
+
436 MovieVignetteControl? int8u
|
|
16987
|
+
438 DiffractionCompensation int8u
|
|
16988
|
+
440 FlickerReductionShooting int8u
|
|
16989
|
+
444 FlashControlMode int8u
|
|
16990
|
+
446 FlashMasterCompensation? int8s
|
|
16991
|
+
450 FlashGNDistance? no
|
|
16992
|
+
454 FlashOutput? int8u
|
|
16993
|
+
548 AFAreaMode int8u
|
|
16994
|
+
550 VRMode int8u
|
|
16995
|
+
554 BracketSet int8u
|
|
16996
|
+
556 BracketProgram int8u
|
|
16997
|
+
558 BracketIncrement int8u
|
|
16998
|
+
570 HDR int8u
|
|
16999
|
+
576 SecondarySlotFunction int8u
|
|
17000
|
+
582 HDRLevel int8u
|
|
17001
|
+
586 Slot2JpgSize? int8u
|
|
17002
|
+
592 DXCropAlert int8u
|
|
17003
|
+
594 SubjectDetection int8u
|
|
17004
|
+
596 DynamicAFAreaSize int8u
|
|
17005
|
+
636 HighFrequencyFlickerReduction? int8u
|
|
17006
|
+
646 MovieImageArea? int8u & 0x01
|
|
17007
|
+
656 MovieType? int8u
|
|
17008
|
+
658 MovieISOAutoHiLimit? int16u
|
|
17009
|
+
660 MovieISOAutoControlManualMode? int8u
|
|
17010
|
+
662 MovieISOAutoManualMode? int16u
|
|
17011
|
+
736 MovieActiveD-Lighting? int8u
|
|
17012
|
+
738 MovieHighISONoiseReduction? int8u
|
|
17013
|
+
744 MovieFlickerReduction int8u
|
|
17014
|
+
746 MovieMeteringMode? int8u
|
|
17015
|
+
748 MovieFocusMode? int8u
|
|
17016
|
+
750 MovieAFAreaMode int8u
|
|
17017
|
+
752 MovieVRMode? int8u
|
|
17018
|
+
756 MovieElectronicVR? int8u
|
|
17019
|
+
758 MovieSoundRecording? int8u
|
|
17020
|
+
760 MicrophoneSensitivity? int8u
|
|
17021
|
+
762 MicrophoneAttenuator? int8u
|
|
17022
|
+
764 MicrophoneFrequencyResponse? int8u
|
|
17023
|
+
766 WindNoiseReduction? int8u
|
|
17024
|
+
788 MovieToneMap? int8u
|
|
17025
|
+
794 MovieFrameSize? int8u
|
|
17026
|
+
796 MovieFrameRate? int8u
|
|
17027
|
+
802 MicrophoneJackPower? int8u
|
|
17028
|
+
803 MovieDXCropAlert? int8u
|
|
17029
|
+
804 MovieSubjectDetection? int8u
|
|
17030
|
+
812 MovieHighResZoom? int8u
|
|
17031
|
+
847 CustomSettingsZ9v4 NikonCustom SettingsZ9v4
|
|
17032
|
+
1498 Language? int8u
|
|
17033
|
+
1500 TimeZone int8u
|
|
17034
|
+
1506 MonitorBrightness? int8u
|
|
17035
|
+
1528 AFFineTune? int8u
|
|
17036
|
+
1532 NonCPULens1FocalLength? int16s~
|
|
17037
|
+
1536 NonCPULens2FocalLength? int16s~
|
|
17038
|
+
1540 NonCPULens3FocalLength? int16s~
|
|
17039
|
+
1544 NonCPULens4FocalLength? int16s~
|
|
17040
|
+
1548 NonCPULens5FocalLength? int16s~
|
|
17041
|
+
1552 NonCPULens6FocalLength? int16s~
|
|
17042
|
+
1556 NonCPULens7FocalLength? int16s~
|
|
17043
|
+
1560 NonCPULens8FocalLength? int16s~
|
|
17044
|
+
1564 NonCPULens9FocalLength? int16s~
|
|
17045
|
+
1568 NonCPULens10FocalLength? int16s~
|
|
17046
|
+
1572 NonCPULens11FocalLength? int16s~
|
|
17047
|
+
1576 NonCPULens12FocalLength? int16s~
|
|
17048
|
+
1580 NonCPULens13FocalLength? int16s~
|
|
17049
|
+
1584 NonCPULens14FocalLength? int16s~
|
|
17050
|
+
1588 NonCPULens15FocalLength? int16s~
|
|
17051
|
+
1592 NonCPULens16FocalLength? int16s~
|
|
17052
|
+
1596 NonCPULens17FocalLength? int16s~
|
|
17053
|
+
1600 NonCPULens18FocalLength? int16s~
|
|
17054
|
+
1604 NonCPULens19FocalLength? int16s~
|
|
17055
|
+
1608 NonCPULens20FocalLength? int16s~
|
|
17056
|
+
1612 NonCPULens1MaxAperture? int16s~
|
|
17057
|
+
1616 NonCPULens2MaxAperture? int16s~
|
|
17058
|
+
1620 NonCPULens3MaxAperture? int16s~
|
|
17059
|
+
1624 NonCPULens4MaxAperture? int16s~
|
|
17060
|
+
1628 NonCPULens5MaxAperture? int16s~
|
|
17061
|
+
1632 NonCPULens6MaxAperture? int16s~
|
|
17062
|
+
1636 NonCPULens7MaxAperture? int16s~
|
|
17063
|
+
1640 NonCPULens8MaxAperture? int16s~
|
|
17064
|
+
1644 NonCPULens9MaxAperture? int16s~
|
|
17065
|
+
1648 NonCPULens10MaxAperture? int16s~
|
|
17066
|
+
1652 NonCPULens11MaxAperture? int16s~
|
|
17067
|
+
1656 NonCPULens12MaxAperture? int16s~
|
|
17068
|
+
1660 NonCPULens13MaxAperture? int16s~
|
|
17069
|
+
1664 NonCPULens14MaxAperture? int16s~
|
|
17070
|
+
1668 NonCPULens15MaxAperture? int16s~
|
|
17071
|
+
1672 NonCPULens16MaxAperture? int16s~
|
|
17072
|
+
1676 NonCPULens17MaxAperture? int16s~
|
|
17073
|
+
1680 NonCPULens18MaxAperture? int16s~
|
|
17074
|
+
1684 NonCPULens19MaxAperture? int16s~
|
|
17075
|
+
1688 NonCPULens20MaxAperture? int16s~
|
|
17076
|
+
1704 HDMIOutputResolution int8u
|
|
17077
|
+
1717 SetClockFromLocationData? int8u
|
|
17078
|
+
1724 AirplaneMode? int8u
|
|
17079
|
+
1725 EmptySlotRelease? int8u
|
|
17080
|
+
1760 EnergySavingMode? int8u
|
|
17081
|
+
1784 RecordLocationData? int8u
|
|
17082
|
+
1788 USBPowerDelivery? int8u
|
|
17083
|
+
1797 SensorShield? int8u
|
|
17084
|
+
1862 AutoCapturePreset int8u
|
|
17085
|
+
1864 FocusShiftAutoReset? int8u
|
|
17086
|
+
1922 PreReleaseBurstLength int8u
|
|
17087
|
+
1924 PostReleaseBurstLength int8u
|
|
17088
|
+
1938 VerticalISOButton int8u
|
|
17089
|
+
1940 ExposureCompensationButton int8u
|
|
17090
|
+
1942 ISOButton int8u
|
|
17091
|
+
2002 ViewModeShowEffectsOfSettings? int8u
|
|
17092
|
+
2004 DispButton int8u
|
|
17093
|
+
2048 ExposureDelay fixed32u~
|
|
17094
|
+
2052 CommandDialFrameAdvanceZoom? int8u
|
|
17095
|
+
2054 SubCommandDialFrameAdvanceZoom? int8u
|
|
17096
|
+
2056 PlaybackButton int8u
|
|
17097
|
+
2058 WBButton int8u
|
|
17098
|
+
2060 BracketButton int8u
|
|
17099
|
+
2062 FlashModeButton int8u
|
|
17100
|
+
2064 LensFunc1ButtonPlaybackMode int8u
|
|
17101
|
+
2066 LensFunc2ButtonPlaybackMode int8u
|
|
17102
|
+
2068 PlaybackButtonPlaybackMode int8u
|
|
17103
|
+
2070 BracketButtonPlaybackMode int8u
|
|
17104
|
+
2072 FlashModeButtonPlaybackMode int8u
|
|
16955
17105
|
|
|
16956
17106
|
=head3 Nikon ShotInfo Tags
|
|
16957
17107
|
|
|
@@ -18825,8 +18975,11 @@ Custom settings for the Z8.
|
|
|
18825
18975
|
421 Func1ButtonPlaybackMode? int8u
|
|
18826
18976
|
423 Func2ButtonPlaybackMode? int8u
|
|
18827
18977
|
437 MovieRecordButtonPlaybackMode? int8u
|
|
18978
|
+
453 WBButtonPlaybackMode int8u
|
|
18828
18979
|
459 CommandDialPlaybackMode? int8u
|
|
18980
|
+
461 CommandDialVideoPlaybackMode? int8u
|
|
18829
18981
|
463 SubCommandDialPlaybackMode? int8u
|
|
18982
|
+
465 SubCommandDialVideoPlaybackMode? int8u
|
|
18830
18983
|
467 FocusPointLock? int8u
|
|
18831
18984
|
469 ControlRingResponse int8u
|
|
18832
18985
|
515 MovieAFAreaMode? int8u
|
|
@@ -18852,6 +19005,7 @@ Custom settings for the Z8.
|
|
|
18852
19005
|
649 PostReleaseBurstLength int8u
|
|
18853
19006
|
681 ViewModeShowEffectsOfSettings? int8u
|
|
18854
19007
|
683 DispButton int8u
|
|
19008
|
+
753 ExposureDelay int16u~
|
|
18855
19009
|
|
|
18856
19010
|
=head3 NikonCustom SettingsZ9 Tags
|
|
18857
19011
|
|
|
@@ -19121,7 +19275,9 @@ Custom settings for the Z9.
|
|
|
19121
19275
|
471 QualityButtonPlaybackMode? int8u
|
|
19122
19276
|
477 WhiteBalanceButtonPlaybackMode? int8u
|
|
19123
19277
|
483 CommandDialPlaybackMode? int8u
|
|
19278
|
+
485 CommandDialVideoPlaybackMode? int8u
|
|
19124
19279
|
487 SubCommandDialPlaybackMode? int8u
|
|
19280
|
+
489 SubCommandDialVideoPlaybackMode? int8u
|
|
19125
19281
|
491 FocusPointLock? int8u
|
|
19126
19282
|
493 ControlRingResponse int8u
|
|
19127
19283
|
505 VerticalMovieFuncButton? int8u
|
|
@@ -22377,6 +22533,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
|
|
|
22377
22533
|
1102 ISOInfo Sony ISOInfo
|
|
22378
22534
|
1176 ISOInfo Sony ISOInfo
|
|
22379
22535
|
1181 ISOInfo Sony ISOInfo
|
|
22536
|
+
1182 ISOInfo Sony ISOInfo
|
|
22380
22537
|
1185 ISOInfo Sony ISOInfo
|
|
22381
22538
|
1186 ISOInfo Sony ISOInfo
|
|
22382
22539
|
1210 ISOInfo Sony ISOInfo
|
|
@@ -22793,6 +22950,21 @@ written by the Sony DSC-F828 and DSC-V3.
|
|
|
22793
22950
|
0x0000 SRF2Key no
|
|
22794
22951
|
0x0001 DataKey no
|
|
22795
22952
|
|
|
22953
|
+
=head3 Sony SR2Private Tags
|
|
22954
|
+
|
|
22955
|
+
The SR2 format uses the DNGPrivateData tag to reference a private IFD
|
|
22956
|
+
containing these tags. SR2 images are written by the Sony DSC-R1, but
|
|
22957
|
+
this information is also written to ARW images by other models.
|
|
22958
|
+
|
|
22959
|
+
Tag ID Tag Name Writable
|
|
22960
|
+
------ -------- --------
|
|
22961
|
+
0x7200 SR2SubIFDOffset no
|
|
22962
|
+
0x7201 SR2SubIFDLength no
|
|
22963
|
+
0x7221 SR2SubIFDKey no
|
|
22964
|
+
0x7240 IDC_IFD SonyIDC
|
|
22965
|
+
0x7241 IDC2_IFD SonyIDC
|
|
22966
|
+
0x7250 MRWInfo MinoltaRaw
|
|
22967
|
+
|
|
22796
22968
|
=head3 Sony SRF2 Tags
|
|
22797
22969
|
|
|
22798
22970
|
These tags are found in the SRF2 through SRF5 IFD's.
|
|
@@ -22826,21 +22998,6 @@ These tags are found in the SRF2 through SRF5 IFD's.
|
|
|
22826
22998
|
0x00d1 WBGreenAsShot no
|
|
22827
22999
|
0x00d2 WBBlueAsShot no
|
|
22828
23000
|
|
|
22829
|
-
=head3 Sony SR2Private Tags
|
|
22830
|
-
|
|
22831
|
-
The SR2 format uses the DNGPrivateData tag to reference a private IFD
|
|
22832
|
-
containing these tags. SR2 images are written by the Sony DSC-R1, but
|
|
22833
|
-
this information is also written to ARW images by other models.
|
|
22834
|
-
|
|
22835
|
-
Tag ID Tag Name Writable
|
|
22836
|
-
------ -------- --------
|
|
22837
|
-
0x7200 SR2SubIFDOffset no
|
|
22838
|
-
0x7201 SR2SubIFDLength no
|
|
22839
|
-
0x7221 SR2SubIFDKey no
|
|
22840
|
-
0x7240 IDC_IFD SonyIDC
|
|
22841
|
-
0x7241 IDC2_IFD SonyIDC
|
|
22842
|
-
0x7250 MRWInfo MinoltaRaw
|
|
22843
|
-
|
|
22844
23001
|
=head3 Sony SR2SubIFD Tags
|
|
22845
23002
|
|
|
22846
23003
|
Tags in the encrypted SR2SubIFD
|
|
@@ -23939,6 +24096,112 @@ in JPEGs taken with the P2 Pro camera app.
|
|
|
23939
24096
|
76 VisibleImageHeight no
|
|
23940
24097
|
78 VisibleImageBpp no
|
|
23941
24098
|
|
|
24099
|
+
=head3 InfiRay Factory Tags
|
|
24100
|
+
|
|
24101
|
+
This table lists tags found in the InfiRay APP4 IJPEG camera factory
|
|
24102
|
+
defaults and calibration data.
|
|
24103
|
+
|
|
24104
|
+
Index1 Tag Name Writable
|
|
24105
|
+
------ -------- --------
|
|
24106
|
+
0 IJPEGTempVersion no
|
|
24107
|
+
4 FactDefEmissivity no
|
|
24108
|
+
5 FactDefTau no
|
|
24109
|
+
6 FactDefTa no
|
|
24110
|
+
8 FactDefTu no
|
|
24111
|
+
10 FactDefDist no
|
|
24112
|
+
12 FactDefA0 no
|
|
24113
|
+
16 FactDefB0 no
|
|
24114
|
+
20 FactDefA1 no
|
|
24115
|
+
24 FactDefB1 no
|
|
24116
|
+
28 FactDefP0 no
|
|
24117
|
+
32 FactDefP1 no
|
|
24118
|
+
36 FactDefP2 no
|
|
24119
|
+
68 FactRelSensorTemp no
|
|
24120
|
+
70 FactRelShutterTemp no
|
|
24121
|
+
72 FactRelLensTemp no
|
|
24122
|
+
100 FactStatusGain no
|
|
24123
|
+
101 FactStatusEnvOK no
|
|
24124
|
+
102 FactStatusDistOK no
|
|
24125
|
+
103 FactStatusTempMap no
|
|
24126
|
+
|
|
24127
|
+
=head3 InfiRay Picture Tags
|
|
24128
|
+
|
|
24129
|
+
This table lists tags found in the InfiRay APP5 IJPEG picture temperature
|
|
24130
|
+
information.
|
|
24131
|
+
|
|
24132
|
+
Index1 Tag Name Writable
|
|
24133
|
+
------ -------- --------
|
|
24134
|
+
0 EnvironmentTemp no
|
|
24135
|
+
4 Distance no
|
|
24136
|
+
8 Emissivity no
|
|
24137
|
+
12 Humidity no
|
|
24138
|
+
16 ReferenceTemp no
|
|
24139
|
+
32 TempUnit no
|
|
24140
|
+
33 ShowCenterTemp no
|
|
24141
|
+
34 ShowMaxTemp no
|
|
24142
|
+
35 ShowMinTemp no
|
|
24143
|
+
36 TempMeasureCount no
|
|
24144
|
+
|
|
24145
|
+
=head3 InfiRay MixMode Tags
|
|
24146
|
+
|
|
24147
|
+
This table lists tags found in the InfiRay APP6 IJPEG visual-infrared mixing
|
|
24148
|
+
mode section.
|
|
24149
|
+
|
|
24150
|
+
Index1 Tag Name Writable
|
|
24151
|
+
------ -------- --------
|
|
24152
|
+
0 MixMode no
|
|
24153
|
+
1 FusionIntensity no
|
|
24154
|
+
5 OffsetAdjustment no
|
|
24155
|
+
9 CorrectionAsix no
|
|
24156
|
+
|
|
24157
|
+
=head3 InfiRay OpMode Tags
|
|
24158
|
+
|
|
24159
|
+
This table lists tags found in the InfiRay APP7 IJPEG camera operation mode
|
|
24160
|
+
section.
|
|
24161
|
+
|
|
24162
|
+
Index1 Tag Name Writable
|
|
24163
|
+
------ -------- --------
|
|
24164
|
+
0 WorkingMode no
|
|
24165
|
+
1 IntegralTime no
|
|
24166
|
+
5 IntegratTimeHdr no
|
|
24167
|
+
9 GainStable no
|
|
24168
|
+
10 TempControlEnable no
|
|
24169
|
+
11 DeviceTemp no
|
|
24170
|
+
|
|
24171
|
+
=head3 InfiRay Isothermal Tags
|
|
24172
|
+
|
|
24173
|
+
This table lists tags found in the InfiRay APP8 IJPEG picture isothermal
|
|
24174
|
+
information.
|
|
24175
|
+
|
|
24176
|
+
Index1 Tag Name Writable
|
|
24177
|
+
------ -------- --------
|
|
24178
|
+
0 IsothermalMax no
|
|
24179
|
+
4 IsothermalMin no
|
|
24180
|
+
8 ChromaBarMax no
|
|
24181
|
+
12 ChromaBarMin no
|
|
24182
|
+
|
|
24183
|
+
=head3 InfiRay Sensor Tags
|
|
24184
|
+
|
|
24185
|
+
This table lists tags found in the InfiRay APP9 IJPEG sensor information
|
|
24186
|
+
chunk.
|
|
24187
|
+
|
|
24188
|
+
Index1 Tag Name Writable
|
|
24189
|
+
------ -------- --------
|
|
24190
|
+
0 IRSensorManufacturer no
|
|
24191
|
+
64 IRSensorName no
|
|
24192
|
+
128 IRSensorPartNumber no
|
|
24193
|
+
192 IRSensorSerialNumber no
|
|
24194
|
+
256 IRSensorFirmware no
|
|
24195
|
+
320 IRSensorAperture no
|
|
24196
|
+
324 IRFocalLength no
|
|
24197
|
+
384 VisibleSensorManufacturer no
|
|
24198
|
+
448 VisibleSensorName no
|
|
24199
|
+
512 VisibleSensorPartNumber no
|
|
24200
|
+
576 VisibleSensorSerialNumber no
|
|
24201
|
+
640 VisibleSensorFirmware no
|
|
24202
|
+
704 VisibleSensorAperture no
|
|
24203
|
+
708 VisibleFocalLength no
|
|
24204
|
+
|
|
23942
24205
|
=head2 Stim Tags
|
|
23943
24206
|
|
|
23944
24207
|
These tags are part of the CIPA Stereo Still Image specification, and are
|
|
@@ -24002,54 +24265,6 @@ L<http://www.scalado.com/>.)
|
|
|
24002
24265
|
'SPMO' DataLength? no
|
|
24003
24266
|
'WDTH' PreviewImageWidth no
|
|
24004
24267
|
|
|
24005
|
-
=head2 InfiRay Tags
|
|
24006
|
-
|
|
24007
|
-
=head3 InfiRay Factory Tags
|
|
24008
|
-
|
|
24009
|
-
This table lists tags found in the InfiRay APP4 IJPEG camera factory
|
|
24010
|
-
defaults and calibration data.
|
|
24011
|
-
|
|
24012
|
-
Index1 Tag Name Writable
|
|
24013
|
-
------ -------- --------
|
|
24014
|
-
0 IJPEGTempVersion no
|
|
24015
|
-
4 FactDefEmissivity no
|
|
24016
|
-
5 FactDefTau no
|
|
24017
|
-
6 FactDefTa no
|
|
24018
|
-
8 FactDefTu no
|
|
24019
|
-
10 FactDefDist no
|
|
24020
|
-
12 FactDefA0 no
|
|
24021
|
-
16 FactDefB0 no
|
|
24022
|
-
20 FactDefA1 no
|
|
24023
|
-
24 FactDefB1 no
|
|
24024
|
-
28 FactDefP0 no
|
|
24025
|
-
32 FactDefP1 no
|
|
24026
|
-
36 FactDefP2 no
|
|
24027
|
-
68 FactRelSensorTemp no
|
|
24028
|
-
70 FactRelShutterTemp no
|
|
24029
|
-
72 FactRelLensTemp no
|
|
24030
|
-
100 FactStatusGain no
|
|
24031
|
-
101 FactStatusEnvOK no
|
|
24032
|
-
102 FactStatusDistOK no
|
|
24033
|
-
103 FactStatusTempMap no
|
|
24034
|
-
|
|
24035
|
-
=head3 InfiRay Picture Tags
|
|
24036
|
-
|
|
24037
|
-
This table lists tags found in the InfiRay APP5 IJPEG picture temperature
|
|
24038
|
-
information.
|
|
24039
|
-
|
|
24040
|
-
Index1 Tag Name Writable
|
|
24041
|
-
------ -------- --------
|
|
24042
|
-
0 EnvironmentTemp no
|
|
24043
|
-
4 Distance no
|
|
24044
|
-
8 Emissivity no
|
|
24045
|
-
12 Humidity no
|
|
24046
|
-
16 ReferenceTemp no
|
|
24047
|
-
32 TempUnit no
|
|
24048
|
-
33 ShowCenterTemp no
|
|
24049
|
-
34 ShowMaxTemp no
|
|
24050
|
-
35 ShowMinTemp no
|
|
24051
|
-
36 TempMeasureCount no
|
|
24052
|
-
|
|
24053
24268
|
=head2 GoPro Tags
|
|
24054
24269
|
|
|
24055
24270
|
=head3 GoPro GPMF Tags
|
|
@@ -24206,20 +24421,6 @@ Tags extracted from the MP4 "fdsc" timed metadata when the ExtractEmbedded
|
|
|
24206
24421
|
87 OtherSerialNumber no
|
|
24207
24422
|
102 Model no
|
|
24208
24423
|
|
|
24209
|
-
=head2 InfiRay Tags
|
|
24210
|
-
|
|
24211
|
-
=head3 InfiRay MixMode Tags
|
|
24212
|
-
|
|
24213
|
-
This table lists tags found in the InfiRay APP6 IJPEG visual-infrared mixing
|
|
24214
|
-
mode section.
|
|
24215
|
-
|
|
24216
|
-
Index1 Tag Name Writable
|
|
24217
|
-
------ -------- --------
|
|
24218
|
-
0 MixMode no
|
|
24219
|
-
1 FusionIntensity no
|
|
24220
|
-
5 OffsetAdjustment no
|
|
24221
|
-
9 CorrectionAsix no
|
|
24222
|
-
|
|
24223
24424
|
=head2 Qualcomm Tags
|
|
24224
24425
|
|
|
24225
24426
|
The tags below have been observed in the JPEG APP7 "Qualcomm Camera
|
|
@@ -25418,56 +25619,6 @@ even if it is not listed in this table.
|
|
|
25418
25619
|
YhiYloCorK1 no
|
|
25419
25620
|
YhiYloCorK2 no
|
|
25420
25621
|
|
|
25421
|
-
=head2 InfiRay Tags
|
|
25422
|
-
|
|
25423
|
-
=head3 InfiRay OpMode Tags
|
|
25424
|
-
|
|
25425
|
-
This table lists tags found in the InfiRay APP7 IJPEG camera operation mode
|
|
25426
|
-
section.
|
|
25427
|
-
|
|
25428
|
-
Index1 Tag Name Writable
|
|
25429
|
-
------ -------- --------
|
|
25430
|
-
0 WorkingMode no
|
|
25431
|
-
1 IntegralTime no
|
|
25432
|
-
5 IntegratTimeHdr no
|
|
25433
|
-
9 GainStable no
|
|
25434
|
-
10 TempControlEnable no
|
|
25435
|
-
11 DeviceTemp no
|
|
25436
|
-
|
|
25437
|
-
=head3 InfiRay Isothermal Tags
|
|
25438
|
-
|
|
25439
|
-
This table lists tags found in the InfiRay APP8 IJPEG picture isothermal
|
|
25440
|
-
information.
|
|
25441
|
-
|
|
25442
|
-
Index1 Tag Name Writable
|
|
25443
|
-
------ -------- --------
|
|
25444
|
-
0 IsothermalMax no
|
|
25445
|
-
4 IsothermalMin no
|
|
25446
|
-
8 ChromaBarMax no
|
|
25447
|
-
12 ChromaBarMin no
|
|
25448
|
-
|
|
25449
|
-
=head3 InfiRay Sensor Tags
|
|
25450
|
-
|
|
25451
|
-
This table lists tags found in the InfiRay APP9 IJPEG sensor information
|
|
25452
|
-
chunk.
|
|
25453
|
-
|
|
25454
|
-
Index1 Tag Name Writable
|
|
25455
|
-
------ -------- --------
|
|
25456
|
-
0 IRSensorManufacturer no
|
|
25457
|
-
64 IRSensorName no
|
|
25458
|
-
128 IRSensorPartNumber no
|
|
25459
|
-
192 IRSensorSerialNumber no
|
|
25460
|
-
256 IRSensorFirmware no
|
|
25461
|
-
320 IRSensorAperture no
|
|
25462
|
-
324 IRFocalLength no
|
|
25463
|
-
384 VisibleSensorManufacturer no
|
|
25464
|
-
448 VisibleSensorName no
|
|
25465
|
-
512 VisibleSensorPartNumber no
|
|
25466
|
-
576 VisibleSensorSerialNumber no
|
|
25467
|
-
640 VisibleSensorFirmware no
|
|
25468
|
-
704 VisibleSensorAperture no
|
|
25469
|
-
708 VisibleFocalLength no
|
|
25470
|
-
|
|
25471
25622
|
=head2 Jpeg2000 Tags
|
|
25472
25623
|
|
|
25473
25624
|
The tags below are found in JPEG 2000 images and the C2PA CAI JUMBF metadata
|
|
@@ -26315,30 +26466,6 @@ These tags belong to the ExifTool XMP-microsoft family 1 group.
|
|
|
26315
26466
|
LensModel string/
|
|
26316
26467
|
RatingPercent string
|
|
26317
26468
|
|
|
26318
|
-
=head3 Microsoft MP1 Tags
|
|
26319
|
-
|
|
26320
|
-
Microsoft Photo 1.1 schema XMP tags which have been observed.
|
|
26321
|
-
|
|
26322
|
-
These tags belong to the ExifTool XMP-MP1 family 1 group.
|
|
26323
|
-
|
|
26324
|
-
Tag Name Writable
|
|
26325
|
-
-------- --------
|
|
26326
|
-
Brightness string/
|
|
26327
|
-
CameraModelID string/
|
|
26328
|
-
Contrast string/
|
|
26329
|
-
ExposureCompensation string/
|
|
26330
|
-
PanoramicStitchCameraMotion string
|
|
26331
|
-
PanoramicStitchMapType string
|
|
26332
|
-
PanoramicStitchPhi0 real
|
|
26333
|
-
PanoramicStitchPhi1 real
|
|
26334
|
-
PanoramicStitchTheta0 real
|
|
26335
|
-
PanoramicStitchTheta1 real
|
|
26336
|
-
PipelineVersion string
|
|
26337
|
-
StreamType string
|
|
26338
|
-
WhiteBalance0 real
|
|
26339
|
-
WhiteBalance1 real
|
|
26340
|
-
WhiteBalance2 real
|
|
26341
|
-
|
|
26342
26469
|
=head3 Microsoft MP Tags
|
|
26343
26470
|
|
|
26344
26471
|
Microsoft Photo 1.2 schema XMP tags which have been observed.
|
|
@@ -26377,6 +26504,30 @@ PersonLiveIdCID, so ExifTool uses this too.
|
|
|
26377
26504
|
PersonSourceID string
|
|
26378
26505
|
Rectangle string
|
|
26379
26506
|
|
|
26507
|
+
=head3 Microsoft MP1 Tags
|
|
26508
|
+
|
|
26509
|
+
Microsoft Photo 1.1 schema XMP tags which have been observed.
|
|
26510
|
+
|
|
26511
|
+
These tags belong to the ExifTool XMP-MP1 family 1 group.
|
|
26512
|
+
|
|
26513
|
+
Tag Name Writable
|
|
26514
|
+
-------- --------
|
|
26515
|
+
Brightness string/
|
|
26516
|
+
CameraModelID string/
|
|
26517
|
+
Contrast string/
|
|
26518
|
+
ExposureCompensation string/
|
|
26519
|
+
PanoramicStitchCameraMotion string
|
|
26520
|
+
PanoramicStitchMapType string
|
|
26521
|
+
PanoramicStitchPhi0 real
|
|
26522
|
+
PanoramicStitchPhi1 real
|
|
26523
|
+
PanoramicStitchTheta0 real
|
|
26524
|
+
PanoramicStitchTheta1 real
|
|
26525
|
+
PipelineVersion string
|
|
26526
|
+
StreamType string
|
|
26527
|
+
WhiteBalance0 real
|
|
26528
|
+
WhiteBalance1 real
|
|
26529
|
+
WhiteBalance2 real
|
|
26530
|
+
|
|
26380
26531
|
=head3 Microsoft Stitch Tags
|
|
26381
26532
|
|
|
26382
26533
|
Information found in the Microsoft custom EXIF tag 0x4748, as written by
|
|
@@ -26529,7 +26680,7 @@ possible unless the Microsoft group is specified explicitly.
|
|
|
26529
26680
|
DateSent no
|
|
26530
26681
|
DateVisited no
|
|
26531
26682
|
Department no
|
|
26532
|
-
Description
|
|
26683
|
+
Description Unicode/
|
|
26533
26684
|
Description no
|
|
26534
26685
|
Description no
|
|
26535
26686
|
Dimensions no
|
|
@@ -27714,8 +27865,10 @@ ImageMagick.
|
|
|
27714
27865
|
'URL' URL string
|
|
27715
27866
|
'Warning' PNGWarning string
|
|
27716
27867
|
'XML:com.adobe.xmp' XMP XMP
|
|
27868
|
+
'aesthetic_score' AestheticScore string
|
|
27717
27869
|
'create-date' CreateDate string
|
|
27718
27870
|
'modify-date' ModDate string
|
|
27871
|
+
'parameters' Parameters string
|
|
27719
27872
|
|
|
27720
27873
|
=head3 PNG PhysicalPixel Tags
|
|
27721
27874
|
|
|
@@ -28140,6 +28293,7 @@ L<http://www.openexr.com/> for the official specification.
|
|
|
28140
28293
|
'dataWindow' DataWindow no
|
|
28141
28294
|
'displayWindow' DisplayWindow no
|
|
28142
28295
|
'envmap' EnvironmentMap no
|
|
28296
|
+
'exif' EXIF EXIF
|
|
28143
28297
|
'expTime' ExposureTime no
|
|
28144
28298
|
'focus' FocusDistance no
|
|
28145
28299
|
'framesPerSecond' FramesPerSecond no
|
|
@@ -28167,6 +28321,7 @@ L<http://www.openexr.com/> for the official specification.
|
|
|
28167
28321
|
'worldToNDC' WorldToNDC no
|
|
28168
28322
|
'wrapmodes' WrapModes no
|
|
28169
28323
|
'xDensity' XResolution no
|
|
28324
|
+
'xmp' XMP XMP
|
|
28170
28325
|
|
|
28171
28326
|
=head2 ZISRAW Tags
|
|
28172
28327
|
|
|
@@ -29374,7 +29529,7 @@ for the official specification.
|
|
|
29374
29529
|
The tags below are extracted from timed metadata in QuickTime and other
|
|
29375
29530
|
formats of video files when the ExtractEmbedded option is used. Although
|
|
29376
29531
|
most of these tags are combined into the single table below, ExifTool
|
|
29377
|
-
currently reads
|
|
29532
|
+
currently reads 74 different formats of timed GPS metadata from video files.
|
|
29378
29533
|
|
|
29379
29534
|
Tag Name Writable
|
|
29380
29535
|
-------- --------
|
|
@@ -29409,6 +29564,7 @@ currently reads 71 different formats of timed GPS metadata from video files.
|
|
|
29409
29564
|
ISO no
|
|
29410
29565
|
JpgFromRaw no
|
|
29411
29566
|
KiloCalories no
|
|
29567
|
+
PreviewImage no
|
|
29412
29568
|
PreviewInfo QuickTime PreviewInfo
|
|
29413
29569
|
RVMI_gReV QuickTime RVMI_gReV
|
|
29414
29570
|
RVMI_sReV QuickTime RVMI_sReV
|
|
@@ -29437,8 +29593,9 @@ currently reads 71 different formats of timed GPS metadata from video files.
|
|
|
29437
29593
|
gpmd_Kingslim QuickTime Stream
|
|
29438
29594
|
gpmd_Rove QuickTime Stream
|
|
29439
29595
|
gpmd_FMAS QuickTime Stream
|
|
29596
|
+
gpmd_Wolfbox QuickTime Stream
|
|
29440
29597
|
gpmd_GoPro GoPro GPMF
|
|
29441
|
-
marl
|
|
29598
|
+
marl GM marl
|
|
29442
29599
|
mebx QuickTime Keys
|
|
29443
29600
|
mett Parrot mett
|
|
29444
29601
|
rtmd Sony rtmd
|
|
@@ -29546,14 +29703,6 @@ specification.
|
|
|
29546
29703
|
------ -------- --------
|
|
29547
29704
|
0x0004 MagneticField no
|
|
29548
29705
|
|
|
29549
|
-
=head3 QuickTime marl Tags
|
|
29550
|
-
|
|
29551
|
-
Tags extracted from the marl ctbx timed metadata of GM cars.
|
|
29552
|
-
|
|
29553
|
-
Tag ID Tag Name Writable
|
|
29554
|
-
------ -------- --------
|
|
29555
|
-
[no tags known]
|
|
29556
|
-
|
|
29557
29706
|
=head3 QuickTime Keys Tags
|
|
29558
29707
|
|
|
29559
29708
|
This directory contains a list of key names which are used to decode tags
|
|
@@ -29843,6 +29992,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
|
|
|
29843
29992
|
'sdes' StoreDescription string
|
|
29844
29993
|
'sfID' AppleStoreCountry int32s
|
|
29845
29994
|
'shwm' ShowMovement int8s
|
|
29995
|
+
'snal' PreviewImage string
|
|
29846
29996
|
'soaa' SortAlbumArtist string
|
|
29847
29997
|
'soal' SortAlbum string
|
|
29848
29998
|
'soar' SortArtist string
|
|
@@ -29852,6 +30002,7 @@ QuickTimeHandler option may be set to 0 to avoid this.
|
|
|
29852
30002
|
'stik' MediaType int8s
|
|
29853
30003
|
'titl' Title string/
|
|
29854
30004
|
'tmpo' BeatsPerMinute int16s
|
|
30005
|
+
'tnal' ThumbnailImage string
|
|
29855
30006
|
'trkn' TrackNumber undef
|
|
29856
30007
|
'tven' TVEpisodeID string
|
|
29857
30008
|
'tves' TVEpisode int32s
|
|
@@ -29900,39 +30051,51 @@ ExifTool will extract any iTunesInfo tags that exist, even if they are not
|
|
|
29900
30051
|
defined in this table. These tags belong to the family 1 "iTunes" group,
|
|
29901
30052
|
and are not currently writable.
|
|
29902
30053
|
|
|
29903
|
-
Tag ID
|
|
29904
|
-
------
|
|
29905
|
-
'ARTISTS'
|
|
29906
|
-
'
|
|
29907
|
-
'
|
|
29908
|
-
'
|
|
29909
|
-
'
|
|
29910
|
-
'
|
|
29911
|
-
'
|
|
29912
|
-
|
|
29913
|
-
'
|
|
29914
|
-
'
|
|
29915
|
-
'
|
|
29916
|
-
'
|
|
29917
|
-
'
|
|
29918
|
-
'
|
|
29919
|
-
'
|
|
29920
|
-
'
|
|
30054
|
+
Tag ID Tag Name Writable
|
|
30055
|
+
------ -------- --------
|
|
30056
|
+
'ARTISTS' Artists no
|
|
30057
|
+
'Actors' Actors no
|
|
30058
|
+
'BARCODE' Barcode no
|
|
30059
|
+
'CATALOGNUMBER' CatalogNumber no
|
|
30060
|
+
'COSTUME_DESIGNER' CostumeDesigner no
|
|
30061
|
+
'DIRECTOR' Director no
|
|
30062
|
+
'DIRECTOR_OF_PHOTOGRAPHY'
|
|
30063
|
+
DirectorOfPhotography no
|
|
30064
|
+
'DISCNUMBER' DiscNumber no
|
|
30065
|
+
'Dynamic Range (DR)' DynamicRange no
|
|
30066
|
+
'Dynamic Range (R128)' DynamicRangeR128 no
|
|
30067
|
+
'EDITED_BY' EditedBy no
|
|
30068
|
+
'Encoding Params' EncodingParams QuickTime EncodingParams
|
|
30069
|
+
'IMDB_ID' IMDB_ID no
|
|
30070
|
+
'LABEL' Label no
|
|
30071
|
+
'MEDIA' Media no
|
|
30072
|
+
'MOOD' Mood no
|
|
30073
|
+
'PRODUCER' Producer no
|
|
30074
|
+
'PRODUCTION_DESIGNER' ProductionDesigner no
|
|
30075
|
+
'Peak Level (R128)' PeakLevelR128 no
|
|
30076
|
+
'Peak Level (Sample)' PeakLevelSample no
|
|
30077
|
+
'RATING' Rating no
|
|
30078
|
+
'SCREENPLAY_BY' ScreenplayBy no
|
|
30079
|
+
'SCRIPT' Script no
|
|
30080
|
+
'TIPL' TIPL no
|
|
30081
|
+
'TMDB_ID' TMDB_ID no
|
|
30082
|
+
'TRACKNUMBER' TrackNumber no
|
|
30083
|
+
'Volume Level (R128)' VolumeLevelR128 no
|
|
29921
30084
|
'Volume Level (ReplayGain)' ReplayVolumeLevel no
|
|
29922
|
-
'iTunEXTC'
|
|
29923
|
-
'iTunMOVI'
|
|
29924
|
-
'iTunNORM'
|
|
29925
|
-
'iTunSMPB'
|
|
29926
|
-
'iTunes_CDDB_1'
|
|
30085
|
+
'iTunEXTC' ContentRating no
|
|
30086
|
+
'iTunMOVI' iTunMOVI PLIST
|
|
30087
|
+
'iTunNORM' VolumeNormalization no
|
|
30088
|
+
'iTunSMPB' iTunSMPB no
|
|
30089
|
+
'iTunes_CDDB_1' CDDB1Info no
|
|
29927
30090
|
'iTunes_CDDB_TrackNumber' CDDBTrackNumber no
|
|
29928
|
-
'initialkey'
|
|
29929
|
-
'originaldate'
|
|
29930
|
-
'originalyear'
|
|
29931
|
-
'popularimeter'
|
|
29932
|
-
'replaygain_track_gain'
|
|
29933
|
-
'replaygain_track_peak'
|
|
29934
|
-
'tool'
|
|
29935
|
-
'~length'
|
|
30091
|
+
'initialkey' InitialKey no
|
|
30092
|
+
'originaldate' OriginalDate no
|
|
30093
|
+
'originalyear' OriginalYear no
|
|
30094
|
+
'popularimeter' Popularimeter no
|
|
30095
|
+
'replaygain_track_gain' ReplayTrackGain no
|
|
30096
|
+
'replaygain_track_peak' ReplayTrackPeak no
|
|
30097
|
+
'tool' iTunTool no
|
|
30098
|
+
'~length' Length no
|
|
29936
30099
|
|
|
29937
30100
|
=head3 QuickTime EncodingParams Tags
|
|
29938
30101
|
|
|
@@ -30474,6 +30637,9 @@ MP4 metadata sample description.
|
|
|
30474
30637
|
0x0004 OtherFormat no
|
|
30475
30638
|
0x0018 PlaybackFrameRate no
|
|
30476
30639
|
'ftab' FontTable no
|
|
30640
|
+
'mrld' MarlinDictionary GM mrld
|
|
30641
|
+
'mrlh' MarlinHeader GM mrlh
|
|
30642
|
+
'mrlv' MarlinValues GM mrlv
|
|
30477
30643
|
'name' OtherName no
|
|
30478
30644
|
|
|
30479
30645
|
=head3 QuickTime VideoHeader Tags
|
|
@@ -31516,6 +31682,173 @@ FLAC is big-endian, so bit 0 is the high-order bit in this table.
|
|
|
31516
31682
|
7 PictureLength no
|
|
31517
31683
|
8 Picture no
|
|
31518
31684
|
|
|
31685
|
+
=head2 GM Tags
|
|
31686
|
+
|
|
31687
|
+
These tags are extracted from GM/Cosworth PDR (Performance Data Recorder)
|
|
31688
|
+
information found in videos from General Motors cars such as Corvette and
|
|
31689
|
+
Camero.
|
|
31690
|
+
|
|
31691
|
+
Use the API PrintCSV option to output all timed
|
|
31692
|
+
PDR data in CSV format at greatly increased speed and with much lower memory
|
|
31693
|
+
usage. This option prints the numerical values for each channel in CSV
|
|
31694
|
+
format, suitable for import into RaceRender. In this output, the gear
|
|
31695
|
+
numbers for Neutral and Reverse are changed to -1 and -100 respectively for
|
|
31696
|
+
compatibility with RaceRender.
|
|
31697
|
+
|
|
31698
|
+
=head3 GM marl Tags
|
|
31699
|
+
|
|
31700
|
+
Tags extracted from the 'ctbx' 'marl' (Marlin) box of timed PDR metadata
|
|
31701
|
+
from GM cars. Use the -ee (API ExtractEmbedded) option to extract this
|
|
31702
|
+
information, or the API PrintCSV option to output in CSV format.
|
|
31703
|
+
|
|
31704
|
+
Tag Name Writable
|
|
31705
|
+
-------- --------
|
|
31706
|
+
ABSActive no
|
|
31707
|
+
AccelPos no
|
|
31708
|
+
BatteryVoltage no
|
|
31709
|
+
Beacon no
|
|
31710
|
+
BoostPressureInd no
|
|
31711
|
+
BrakePos no
|
|
31712
|
+
CPUFree no
|
|
31713
|
+
CPUIO no
|
|
31714
|
+
CPUIRQ no
|
|
31715
|
+
CPUSystem no
|
|
31716
|
+
CPUUser no
|
|
31717
|
+
ClutchPos no
|
|
31718
|
+
CoolantTemp no
|
|
31719
|
+
CornerExitSetting no
|
|
31720
|
+
DiskReadOperations no
|
|
31721
|
+
DiskReadRate no
|
|
31722
|
+
DiskReadTime no
|
|
31723
|
+
DiskWriteOperations no
|
|
31724
|
+
DiskWriteRate no
|
|
31725
|
+
DiskWriteTime no
|
|
31726
|
+
Distance no
|
|
31727
|
+
DriverPerformanceMode no
|
|
31728
|
+
EngineSpeedRequest no
|
|
31729
|
+
EngineTorqureReq no
|
|
31730
|
+
FuelCapacity no
|
|
31731
|
+
FuelLevel no
|
|
31732
|
+
GPSAltitude no
|
|
31733
|
+
GPSDateTime no
|
|
31734
|
+
GPSFix no
|
|
31735
|
+
GPSLatitude no
|
|
31736
|
+
GPSLongitude no
|
|
31737
|
+
GPSTrack no
|
|
31738
|
+
Gear no
|
|
31739
|
+
InfotainOpMode no
|
|
31740
|
+
IntakeAirTemperature no
|
|
31741
|
+
IntakeBoostPressure no
|
|
31742
|
+
LFTyrePressure no
|
|
31743
|
+
LFTyreTemp no
|
|
31744
|
+
LRTyrePressure no
|
|
31745
|
+
LRTyreTemp no
|
|
31746
|
+
LateralAcceleration no
|
|
31747
|
+
LongitudinalAcceleration no
|
|
31748
|
+
OilPressure no
|
|
31749
|
+
OilTemp no
|
|
31750
|
+
OutsideAirTemperature no
|
|
31751
|
+
RFTyrePressure no
|
|
31752
|
+
RFTyreTemp no
|
|
31753
|
+
RPM no
|
|
31754
|
+
RRTyrePressure no
|
|
31755
|
+
RRTyreTemp no
|
|
31756
|
+
RecordingEventOdometer no
|
|
31757
|
+
Speed no
|
|
31758
|
+
SpeedControlResponse no
|
|
31759
|
+
SpeedRequestIntervention no
|
|
31760
|
+
Steering1Switch no
|
|
31761
|
+
Steering2Switch no
|
|
31762
|
+
SteeringAngle no
|
|
31763
|
+
SuspensionDisplacementLeftFront no
|
|
31764
|
+
SuspensionDisplacementLeftRear no
|
|
31765
|
+
SuspensionDisplacementRightFront no
|
|
31766
|
+
SuspensionDisplacementRightRear no
|
|
31767
|
+
SystemBackupPowerEnabled no
|
|
31768
|
+
SystemBackupPowerMode no
|
|
31769
|
+
SystemPowerMode no
|
|
31770
|
+
TimeStamp no
|
|
31771
|
+
TractionControlActive no
|
|
31772
|
+
TransOilTemp no
|
|
31773
|
+
TransportStorageMode no
|
|
31774
|
+
ValetMode no
|
|
31775
|
+
VehicleStabilityActive no
|
|
31776
|
+
VerticalAcceleration no
|
|
31777
|
+
WheelspeedLeftDriven no
|
|
31778
|
+
WheelspeedLeftNon-Driven no
|
|
31779
|
+
WheelspeedRightDriven no
|
|
31780
|
+
WheelspeedRightNon-Driven no
|
|
31781
|
+
YawRate no
|
|
31782
|
+
|
|
31783
|
+
=head3 GM mrld Tags
|
|
31784
|
+
|
|
31785
|
+
The Marlin dictionary. Only one channel is listed but all available
|
|
31786
|
+
channels are extracted. Use the -struct (API Struct) option to extract the
|
|
31787
|
+
channel information as structures.
|
|
31788
|
+
|
|
31789
|
+
Tag Name Writable
|
|
31790
|
+
-------- --------
|
|
31791
|
+
Channel01 GM Channel Struct
|
|
31792
|
+
Channel01Description no_
|
|
31793
|
+
Channel01DispMax no_
|
|
31794
|
+
Channel01DispMin no_
|
|
31795
|
+
Channel01Flags no_
|
|
31796
|
+
Channel01ID no_
|
|
31797
|
+
Channel01Interval no_
|
|
31798
|
+
Channel01Max no_
|
|
31799
|
+
Channel01Min no_
|
|
31800
|
+
Channel01Multiplier no_
|
|
31801
|
+
Channel01Name no_
|
|
31802
|
+
Channel01Num no_
|
|
31803
|
+
Channel01Offset no_
|
|
31804
|
+
Channel01Type no_
|
|
31805
|
+
Channel01Units no_
|
|
31806
|
+
|
|
31807
|
+
=head3 GM Channel Struct
|
|
31808
|
+
|
|
31809
|
+
Information stored for each channel in the Marlin dictionary.
|
|
31810
|
+
|
|
31811
|
+
Field Name Writable
|
|
31812
|
+
---------- --------
|
|
31813
|
+
ID no
|
|
31814
|
+
Type no
|
|
31815
|
+
Num no
|
|
31816
|
+
Units no
|
|
31817
|
+
Flags no
|
|
31818
|
+
Interval no
|
|
31819
|
+
Min no
|
|
31820
|
+
Max no
|
|
31821
|
+
DispMin no
|
|
31822
|
+
DispMax no
|
|
31823
|
+
Multiplier no
|
|
31824
|
+
Offset no
|
|
31825
|
+
Name no
|
|
31826
|
+
Description no
|
|
31827
|
+
|
|
31828
|
+
=head3 GM mrlh Tags
|
|
31829
|
+
|
|
31830
|
+
The Marlin PDR header.
|
|
31831
|
+
|
|
31832
|
+
Index1 Tag Name Writable
|
|
31833
|
+
------ -------- --------
|
|
31834
|
+
0 MarlinDataVersion no
|
|
31835
|
+
|
|
31836
|
+
=head3 GM mrlv Tags
|
|
31837
|
+
|
|
31838
|
+
Tags found in the 'mrlv' (Marlin values) box.
|
|
31839
|
+
|
|
31840
|
+
Tag ID Tag Name Writable
|
|
31841
|
+
------ -------- --------
|
|
31842
|
+
'date' Date1 no
|
|
31843
|
+
'lang' Language no
|
|
31844
|
+
'ldat' Date2 no
|
|
31845
|
+
'ltim' Time2 no
|
|
31846
|
+
'swvs' SoftwareVersion no
|
|
31847
|
+
'time' Time1 no
|
|
31848
|
+
'tstm' StartTime no
|
|
31849
|
+
'unit' Units no
|
|
31850
|
+
'zone' TimeZone no
|
|
31851
|
+
|
|
31519
31852
|
=head2 Parrot Tags
|
|
31520
31853
|
|
|
31521
31854
|
=head3 Parrot mett Tags
|
|
@@ -40480,73 +40813,26 @@ implements this policy and changes EXIF:Artist to a list-type tag.
|
|
|
40480
40813
|
CurrentIPTCDigest
|
|
40481
40814
|
IPTCDigest
|
|
40482
40815
|
|
|
40483
|
-
=head3 MWG
|
|
40816
|
+
=head3 MWG Collections Tags
|
|
40484
40817
|
|
|
40485
|
-
|
|
40486
|
-
may be accessed without the need to load the MWG Composite tags above. See
|
|
40818
|
+
Collections metadata defined by the MWG 2.0 specification. See
|
|
40487
40819
|
L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
|
|
40488
40820
|
for the official specification.
|
|
40489
40821
|
|
|
40490
|
-
These tags belong to the ExifTool XMP-mwg-
|
|
40822
|
+
These tags belong to the ExifTool XMP-mwg-coll family 1 group.
|
|
40491
40823
|
|
|
40492
40824
|
Tag Name Writable
|
|
40493
40825
|
-------- --------
|
|
40494
|
-
|
|
40495
|
-
|
|
40496
|
-
|
|
40497
|
-
RegionAppliedToDimensionsUnit string_
|
|
40498
|
-
RegionAppliedToDimensionsW real_
|
|
40499
|
-
RegionList MWG RegionStruct Struct_+
|
|
40500
|
-
RegionArea Area Struct_+
|
|
40501
|
-
RegionAreaD real_+
|
|
40502
|
-
RegionAreaH real_+
|
|
40503
|
-
RegionAreaUnit string_+
|
|
40504
|
-
RegionAreaW real_+
|
|
40505
|
-
RegionAreaX real_+
|
|
40506
|
-
RegionAreaY real_+
|
|
40507
|
-
RegionBarCodeValue string_+
|
|
40508
|
-
RegionDescription string_+
|
|
40509
|
-
RegionExtensions MWG Extensions Struct_+
|
|
40510
|
-
RegionFocusUsage string_+
|
|
40511
|
-
RegionName string_+
|
|
40512
|
-
RegionRotation real_+
|
|
40513
|
-
RegionSeeAlso string_+
|
|
40514
|
-
RegionType string_+
|
|
40515
|
-
|
|
40516
|
-
=head3 MWG RegionInfo Struct
|
|
40517
|
-
|
|
40518
|
-
Field Name Writable
|
|
40519
|
-
---------- --------
|
|
40520
|
-
AppliedToDimensions Dimensions Struct
|
|
40521
|
-
RegionList MWG RegionStruct Struct+
|
|
40522
|
-
|
|
40523
|
-
=head3 MWG RegionStruct Struct
|
|
40524
|
-
|
|
40525
|
-
Field Name Writable
|
|
40526
|
-
---------- --------
|
|
40527
|
-
Area Area Struct
|
|
40528
|
-
BarCodeValue string
|
|
40529
|
-
Description string
|
|
40530
|
-
Extensions MWG Extensions Struct
|
|
40531
|
-
FocusUsage string
|
|
40532
|
-
Name string
|
|
40533
|
-
Rotation real
|
|
40534
|
-
Type string
|
|
40535
|
-
SeeAlso string
|
|
40536
|
-
|
|
40537
|
-
=head3 MWG Extensions Struct
|
|
40826
|
+
Collections MWG CollectionInfo Struct+
|
|
40827
|
+
CollectionName string_+
|
|
40828
|
+
CollectionURI string_+
|
|
40538
40829
|
|
|
40539
|
-
|
|
40540
|
-
pre-defined in ExifTool. Since no flattened tags have been pre-defined,
|
|
40541
|
-
RegionExtensions is writable only as a structure (eg.
|
|
40542
|
-
C<{xmp-dc:creator=me,rating=5}>). Fields for this structure are identified
|
|
40543
|
-
using the standard ExifTool tag name (with optional leading group name,
|
|
40544
|
-
and/or trailing language code, and/or trailing C<#> symbol to disable print
|
|
40545
|
-
conversion).
|
|
40830
|
+
=head3 MWG CollectionInfo Struct
|
|
40546
40831
|
|
|
40547
40832
|
Field Name Writable
|
|
40548
40833
|
---------- --------
|
|
40549
|
-
|
|
40834
|
+
CollectionName string
|
|
40835
|
+
CollectionURI string
|
|
40550
40836
|
|
|
40551
40837
|
=head3 MWG Keywords Tags
|
|
40552
40838
|
|
|
@@ -40595,26 +40881,73 @@ These tags belong to the ExifTool XMP-mwg-kw family 1 group.
|
|
|
40595
40881
|
Children MWG KeywordStruct Struct+
|
|
40596
40882
|
Keyword string
|
|
40597
40883
|
|
|
40598
|
-
=head3 MWG
|
|
40884
|
+
=head3 MWG Regions Tags
|
|
40599
40885
|
|
|
40600
|
-
|
|
40886
|
+
Image region metadata defined by the MWG 2.0 specification. These tags
|
|
40887
|
+
may be accessed without the need to load the MWG Composite tags above. See
|
|
40601
40888
|
L<https://web.archive.org/web/20180919181934/http://www.metadataworkinggroup.org/pdf/mwg_guidance.pdf>
|
|
40602
40889
|
for the official specification.
|
|
40603
40890
|
|
|
40604
|
-
These tags belong to the ExifTool XMP-mwg-
|
|
40891
|
+
These tags belong to the ExifTool XMP-mwg-rs family 1 group.
|
|
40605
40892
|
|
|
40606
40893
|
Tag Name Writable
|
|
40607
40894
|
-------- --------
|
|
40608
|
-
|
|
40609
|
-
|
|
40610
|
-
|
|
40895
|
+
RegionInfo MWG RegionInfo Struct
|
|
40896
|
+
RegionAppliedToDimensions Dimensions Struct_
|
|
40897
|
+
RegionAppliedToDimensionsH real_
|
|
40898
|
+
RegionAppliedToDimensionsUnit string_
|
|
40899
|
+
RegionAppliedToDimensionsW real_
|
|
40900
|
+
RegionList MWG RegionStruct Struct_+
|
|
40901
|
+
RegionArea Area Struct_+
|
|
40902
|
+
RegionAreaD real_+
|
|
40903
|
+
RegionAreaH real_+
|
|
40904
|
+
RegionAreaUnit string_+
|
|
40905
|
+
RegionAreaW real_+
|
|
40906
|
+
RegionAreaX real_+
|
|
40907
|
+
RegionAreaY real_+
|
|
40908
|
+
RegionBarCodeValue string_+
|
|
40909
|
+
RegionDescription string_+
|
|
40910
|
+
RegionExtensions MWG Extensions Struct_+
|
|
40911
|
+
RegionFocusUsage string_+
|
|
40912
|
+
RegionName string_+
|
|
40913
|
+
RegionRotation real_+
|
|
40914
|
+
RegionSeeAlso string_+
|
|
40915
|
+
RegionType string_+
|
|
40611
40916
|
|
|
40612
|
-
=head3 MWG
|
|
40917
|
+
=head3 MWG RegionInfo Struct
|
|
40613
40918
|
|
|
40614
40919
|
Field Name Writable
|
|
40615
40920
|
---------- --------
|
|
40616
|
-
|
|
40617
|
-
|
|
40921
|
+
AppliedToDimensions Dimensions Struct
|
|
40922
|
+
RegionList MWG RegionStruct Struct+
|
|
40923
|
+
|
|
40924
|
+
=head3 MWG RegionStruct Struct
|
|
40925
|
+
|
|
40926
|
+
Field Name Writable
|
|
40927
|
+
---------- --------
|
|
40928
|
+
Area Area Struct
|
|
40929
|
+
BarCodeValue string
|
|
40930
|
+
Description string
|
|
40931
|
+
Extensions MWG Extensions Struct
|
|
40932
|
+
FocusUsage string
|
|
40933
|
+
Name string
|
|
40934
|
+
Rotation real
|
|
40935
|
+
Type string
|
|
40936
|
+
SeeAlso string
|
|
40937
|
+
|
|
40938
|
+
=head3 MWG Extensions Struct
|
|
40939
|
+
|
|
40940
|
+
This structure may contain any top-level XMP tags, but none have been
|
|
40941
|
+
pre-defined in ExifTool. Since no flattened tags have been pre-defined,
|
|
40942
|
+
RegionExtensions is writable only as a structure (eg.
|
|
40943
|
+
C<{xmp-dc:creator=me,rating=5}>). Fields for this structure are identified
|
|
40944
|
+
using the standard ExifTool tag name (with optional leading group name,
|
|
40945
|
+
and/or trailing language code, and/or trailing C<#> symbol to disable print
|
|
40946
|
+
conversion).
|
|
40947
|
+
|
|
40948
|
+
Field Name Writable
|
|
40949
|
+
---------- --------
|
|
40950
|
+
[no tags known]
|
|
40618
40951
|
|
|
40619
40952
|
=head1 NOTES
|
|
40620
40953
|
|