exiftool_vendored 13.31.0 → 13.36.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.
- checksums.yaml +4 -4
- data/bin/Changes +88 -2
- data/bin/MANIFEST +5 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/Makefile.PL +1 -0
- data/bin/README +47 -46
- data/bin/exiftool +155 -120
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +7 -5
- data/bin/lib/Image/ExifTool/Canon.pm +46 -6
- data/bin/lib/Image/ExifTool/DJI.pm +54 -3
- data/bin/lib/Image/ExifTool/Exif.pm +9 -6
- data/bin/lib/Image/ExifTool/FlashPix.pm +4 -159
- data/bin/lib/Image/ExifTool/FujiFilm.pm +97 -32
- data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- data/bin/lib/Image/ExifTool/Geotag.pm +5 -3
- data/bin/lib/Image/ExifTool/GoPro.pm +14 -2
- data/bin/lib/Image/ExifTool/LNK.pm +4 -1
- data/bin/lib/Image/ExifTool/Lang/cs.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/de.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/fr.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/it.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/ja.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/nl.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/pl.pm +0 -1
- data/bin/lib/Image/ExifTool/Lang/zh_cn.pm +0 -1
- data/bin/lib/Image/ExifTool/M2TS.pm +2 -4
- data/bin/lib/Image/ExifTool/Microsoft.pm +158 -1
- data/bin/lib/Image/ExifTool/Minolta.pm +4 -2
- data/bin/lib/Image/ExifTool/Nikon.pm +73 -37
- data/bin/lib/Image/ExifTool/NikonCustom.pm +40 -10
- data/bin/lib/Image/ExifTool/Olympus.pm +258 -34
- data/bin/lib/Image/ExifTool/Panasonic.pm +3 -3
- data/bin/lib/Image/ExifTool/Pentax.pm +341 -61
- data/bin/lib/Image/ExifTool/Protobuf.pm +1 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +11 -4
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +1 -1
- data/bin/lib/Image/ExifTool/README +2 -1
- data/bin/lib/Image/ExifTool/RIFF.pm +5 -3
- data/bin/lib/Image/ExifTool/Sony.pm +46 -17
- data/bin/lib/Image/ExifTool/TNEF.pm +487 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +4384 -4265
- data/bin/lib/Image/ExifTool/TagNames.pod +291 -27
- data/bin/lib/Image/ExifTool/WriteExif.pl +14 -12
- data/bin/lib/Image/ExifTool/Writer.pl +21 -16
- data/bin/lib/Image/ExifTool/XMP.pm +8 -2
- data/bin/lib/Image/ExifTool/XMP2.pl +1 -1
- data/bin/lib/Image/ExifTool/XMPStruct.pl +1 -1
- data/bin/lib/Image/ExifTool.pm +14 -4
- data/bin/lib/Image/ExifTool.pod +50 -44
- data/bin/perl-Image-ExifTool.spec +46 -45
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +3 -2
@@ -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 28650 tags, with 17839 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
|
@@ -364,11 +364,11 @@ tags remain.
|
|
364
364
|
|
365
365
|
The table below lists all EXIF tags. Also listed are TIFF, DNG, HDP and
|
366
366
|
other tags which are not part of the EXIF specification, but may co-exist
|
367
|
-
with EXIF tags in some images. Tags which are part of the EXIF
|
367
|
+
with EXIF tags in some images. Tags which are part of the EXIF 3.0
|
368
368
|
specification have an underlined B<Tag Name> in the HTML version of this
|
369
369
|
documentation. See
|
370
|
-
L<https://
|
371
|
-
for the official EXIF
|
370
|
+
L<https://www.cipa.jp/std/documents/download_e.html?CIPA_DC-008-2024-E>
|
371
|
+
for the official EXIF 3.0 specification.
|
372
372
|
|
373
373
|
Tag ID Tag Name Group Writable
|
374
374
|
------ -------- ----- --------
|
@@ -1039,6 +1039,8 @@ for the official EXIF 2.32 specification.
|
|
1039
1039
|
0xc7aa CacheVersion SubIFD2 int32u!
|
1040
1040
|
0xc7b5 DefaultUserCrop SubIFD rational64u[4]!
|
1041
1041
|
0xc7d5 NikonNEFInfo - Nikon NEFInfo
|
1042
|
+
0xc7d7 ZIFMetadata - no
|
1043
|
+
0xc7d8 ZIFAnnotations - no
|
1042
1044
|
0xc7e9 DepthFormat IFD0 int16u!
|
1043
1045
|
0xc7ea DepthNear IFD0 rational64u!
|
1044
1046
|
0xc7eb DepthFar IFD0 rational64u!
|
@@ -8048,7 +8050,9 @@ boot, not including standby time.
|
|
8048
8050
|
41 ManualFlashOutput int16s
|
8049
8051
|
42 ColorTone int16s
|
8050
8052
|
46 SRAWQuality int16s
|
8053
|
+
50 FocusBracketing int16s
|
8051
8054
|
51 Clarity int16s
|
8055
|
+
52 HDR-PQ int16s
|
8052
8056
|
|
8053
8057
|
=head3 Canon FocalLength Tags
|
8054
8058
|
|
@@ -10335,6 +10339,7 @@ Information about creative filter settings.
|
|
10335
10339
|
18 AFStatusViewfinder int32s
|
10336
10340
|
19 InitialAFPointInServo int32s
|
10337
10341
|
20 SubjectToDetect int32s
|
10342
|
+
21 SubjectSwitching int32s
|
10338
10343
|
24 EyeDetection int32s
|
10339
10344
|
|
10340
10345
|
=head3 Canon RawBurstInfo Tags
|
@@ -11534,8 +11539,8 @@ file name combined with the hierarchical protobuf field numbers.
|
|
11534
11539
|
ExifTool currently extracts timed GPS plus a few other tags from DJI devices
|
11535
11540
|
which use the following protocols: dvtm_AVATA2.proto (Avata 2),
|
11536
11541
|
dvtm_ac203.proto (Osmo Action 4), dvtm_ac204.proto (Osmo Action 5),
|
11537
|
-
dvtm_wm265e.proto (Mavic 3), dvtm_pm320.proto (Matrice 30)
|
11538
|
-
|
11542
|
+
dvtm_wm265e.proto (Mavic 3), dvtm_pm320.proto (Matrice 30),
|
11543
|
+
dvtm_Mini4_Pro.proto (Mini 4 Pro) and dvtm_dji_neo.proto (DJI Neo).
|
11539
11544
|
|
11540
11545
|
Note that with the protobuf format, numerical tags missing from the output
|
11541
11546
|
for a given protocol should be considered to have the default value of 0.
|
@@ -11591,6 +11596,18 @@ for a given protocol should be considered to have the default value of 0.
|
|
11591
11596
|
'dvtm_ac204_3-4-2-1' GPSInfo DJI GPSInfo
|
11592
11597
|
'dvtm_ac204_3-4-2-2' GPSAltitude no
|
11593
11598
|
'dvtm_ac204_3-4-2-6-1' GPSDateTime no
|
11599
|
+
'dvtm_dji_neo_1-1-5' SerialNumber no
|
11600
|
+
'dvtm_dji_neo_1-1-10' Model no
|
11601
|
+
'dvtm_dji_neo_2-2-3-1' SerialNumber2 no
|
11602
|
+
'dvtm_dji_neo_2-3' FrameInfo DJI FrameInfo
|
11603
|
+
'dvtm_dji_neo_3-1-2' TimeStamp no
|
11604
|
+
'dvtm_dji_neo_3-2-2-1' ISO no
|
11605
|
+
'dvtm_dji_neo_3-2-4-1' ShutterSpeed no
|
11606
|
+
'dvtm_dji_neo_3-2-6-1' ColorTemperature no
|
11607
|
+
'dvtm_dji_neo_3-2-10-1' FNumber no
|
11608
|
+
'dvtm_dji_neo_3-4-3' DroneInfo DJI DroneInfo
|
11609
|
+
'dvtm_dji_neo_3-4-4-1' GPSInfo DJI GPSInfo
|
11610
|
+
'dvtm_dji_neo_3-4-4-2' AbsoluteAltitude no
|
11594
11611
|
'dvtm_pm320_1-1-5' SerialNumber no
|
11595
11612
|
'dvtm_pm320_1-1-10' Model no
|
11596
11613
|
'dvtm_pm320_2-2' FrameInfo DJI FrameInfo
|
@@ -12137,6 +12154,7 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
12137
12154
|
0x1032 ExposureCount int16u
|
12138
12155
|
0x1033 EXRAuto int16u
|
12139
12156
|
0x1034 EXRMode int16u
|
12157
|
+
0x1037 MultipleExposure int16u
|
12140
12158
|
0x1040 ShadowTone int32s
|
12141
12159
|
0x1041 HighlightTone int32s
|
12142
12160
|
0x1044 DigitalZoom int32u
|
@@ -12154,9 +12172,13 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
12154
12172
|
0x1053 CropSize int32u
|
12155
12173
|
0x1100 AutoBracketing int16u
|
12156
12174
|
0x1101 SequenceNumber int16u
|
12175
|
+
0x1102 WhiteBalanceBracketing int16u
|
12157
12176
|
0x1103 DriveSettings FujiFilm DriveSettings
|
12158
12177
|
0x1105 PixelShiftShots int16u
|
12159
12178
|
0x1106 PixelShiftOffset rational64s[2]
|
12179
|
+
0x1150 CompositeImageMode int32u
|
12180
|
+
0x1151 CompositeImageCount1 int16u
|
12181
|
+
0x1152 CompositeImageCount2 int16u
|
12160
12182
|
0x1153 PanoramaAngle int16u
|
12161
12183
|
0x1154 PanoramaDirection int16u
|
12162
12184
|
0x1201 AdvancedFilter int32u
|
@@ -12185,6 +12207,9 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
12185
12207
|
0x1446 FlickerReduction int32u
|
12186
12208
|
0x1447 FujiModel string
|
12187
12209
|
0x1448 FujiModel2 string
|
12210
|
+
0x144a WBRed int16u
|
12211
|
+
0x144b WBGreen int16u
|
12212
|
+
0x144c WBBlue int16u
|
12188
12213
|
0x144d RollAngle rational64s
|
12189
12214
|
0x3803 VideoRecordingMode int32u
|
12190
12215
|
0x3804 PeripheralLighting int16u
|
@@ -12345,14 +12370,15 @@ Tags found in the FujiIFD information of RAF images from some models.
|
|
12345
12370
|
=head3 FujiFilm MRAW Tags
|
12346
12371
|
|
12347
12372
|
Tags extracted from the M-RAW header of multi-image RAF files. The family 1
|
12348
|
-
group name for these tags is "M-RAW".
|
12373
|
+
group name for these tags is "M-RAW". Additional metadata may be extracted
|
12374
|
+
from the embedded RAW images with the ExtractEmbedded option.
|
12349
12375
|
|
12350
12376
|
Tag ID Tag Name Writable
|
12351
12377
|
------ -------- --------
|
12352
|
-
|
12353
|
-
|
12354
|
-
|
12355
|
-
|
12378
|
+
0x2001 RawImageNumber no
|
12379
|
+
0x2005 ExposureTime no
|
12380
|
+
0x2006 FNumber no
|
12381
|
+
0x2007 ISO no
|
12356
12382
|
|
12357
12383
|
=head3 FujiFilm FFMV Tags
|
12358
12384
|
|
@@ -15992,13 +16018,11 @@ These tags are used by the Z8 firmware 2.00 and 2.10.
|
|
15992
16018
|
1812 NonCPULens1MaxAperture? int32u~
|
15993
16019
|
1816 NonCPULens2MaxAperture? int32u~
|
15994
16020
|
1820 NonCPULens3MaxAperture? int32u~
|
15995
|
-
1824
|
16021
|
+
1824 NonCPULens4MaxAperture? int32u~
|
15996
16022
|
1828 NonCPULens5MaxAperture? int32u~
|
15997
16023
|
1832 NonCPULens6MaxAperture? int32u~
|
15998
16024
|
1836 NonCPULens7MaxAperture? int32u~
|
15999
16025
|
1840 NonCPULens8MaxAperture? int32u~
|
16000
|
-
1842 AirplaneMode? int8u
|
16001
|
-
1843 EmptySlotRelease? int8u
|
16002
16026
|
1844 NonCPULens9MaxAperture? int32u~
|
16003
16027
|
1848 NonCPULens10MaxAperture? int32u~
|
16004
16028
|
1852 NonCPULens11MaxAperture? int32u~
|
@@ -16008,12 +16032,15 @@ These tags are used by the Z8 firmware 2.00 and 2.10.
|
|
16008
16032
|
1868 NonCPULens15MaxAperture? int32u~
|
16009
16033
|
1872 NonCPULens16MaxAperture? int32u~
|
16010
16034
|
1876 NonCPULens17MaxAperture? int32u~
|
16011
|
-
1878 EnergySavingMode? int8u
|
16012
16035
|
1880 NonCPULens18MaxAperture? int32u~
|
16013
16036
|
1884 NonCPULens19MaxAperture? int32u~
|
16014
16037
|
1888 NonCPULens20MaxAperture? int32u~
|
16015
|
-
|
16016
|
-
|
16038
|
+
1904 HDMIOutputResolution int8u
|
16039
|
+
1922 AirplaneMode? int8u
|
16040
|
+
1923 EmptySlotRelease? int8u
|
16041
|
+
1958 EnergySavingMode? int8u
|
16042
|
+
1986 USBPowerDelivery? int8u
|
16043
|
+
1995 SensorShield? int8u
|
16017
16044
|
2046 PixelShiftShooting int8u
|
16018
16045
|
2048 PixelShiftNumberShots int8u
|
16019
16046
|
2050 PixelShiftDelay int8u
|
@@ -16024,6 +16051,9 @@ These tags are used by the Z8 firmware 2.00 and 2.10.
|
|
16024
16051
|
2060 LensFunc2ButtonPlaybackMode int8u
|
16025
16052
|
2062 PlaybackButtonPlaybackMode int8u
|
16026
16053
|
2064 BracketButtonPlaybackMode int8u
|
16054
|
+
2206 MaximumApertureLV? int8u
|
16055
|
+
2208 ReleaseModeButton int8u
|
16056
|
+
2216 ReleaseModeButtonPlaybackMode int8u
|
16027
16057
|
|
16028
16058
|
=head3 Nikon ShotInfoZ9 Tags
|
16029
16059
|
|
@@ -16833,7 +16863,7 @@ Z6, Z6ii, Z7, Z7ii, Z50 and Zfc.
|
|
16833
16863
|
=head3 Nikon AFInfo2V0400 Tags
|
16834
16864
|
|
16835
16865
|
AF information for Nikon cameras with the Expeed 7 processor: The Zf, Z6_3,
|
16836
|
-
Z8, Z9 and
|
16866
|
+
Z8, Z9, Z50_2 and Z5_2.
|
16837
16867
|
|
16838
16868
|
Index1 Tag Name Writable
|
16839
16869
|
------ -------- --------
|
@@ -18557,6 +18587,7 @@ Custom settings for the Z8.
|
|
18557
18587
|
263 AutoFocusModeRestrictions? int8u
|
18558
18588
|
267 CHModeShootingSpeed int8u
|
18559
18589
|
273 FlashBurstPriority? int8u
|
18590
|
+
281 Func3Button int8u
|
18560
18591
|
335 LimitAF-AreaModeSelDynamic_S? int8u
|
18561
18592
|
336 LimitAF-AreaModeSelDynamic_M? int8u
|
18562
18593
|
337 LimitAF-AreaModeSelDynamic_L? int8u
|
@@ -18578,7 +18609,6 @@ Custom settings for the Z8.
|
|
18578
18609
|
465 SubCommandDialVideoPlaybackMode? int8u
|
18579
18610
|
467 FocusPointLock? int8u
|
18580
18611
|
469 ControlRingResponse int8u
|
18581
|
-
515 MovieAFAreaMode? int8u
|
18582
18612
|
529 ZebraPatternToneRange? int8u
|
18583
18613
|
531 MovieZebraPattern? int8u
|
18584
18614
|
533 MovieHighlightDisplayThreshold? int8u
|
@@ -18878,7 +18908,6 @@ Custom settings for the Z9.
|
|
18878
18908
|
493 ControlRingResponse int8u
|
18879
18909
|
505 VerticalMovieFuncButton? int8u
|
18880
18910
|
529 VerticalMovieAFOnButton? int8u
|
18881
|
-
539 MovieAFAreaMode? int8u
|
18882
18911
|
551 HDMIViewAssist? int8u
|
18883
18912
|
553 ZebraPatternToneRange? int8u
|
18884
18913
|
555 MovieZebraPattern? int8u
|
@@ -19340,6 +19369,8 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19340
19369
|
0x0307 AFFineTuneAdj int16s[3]
|
19341
19370
|
0x0308 FocusBracketStepSize int8u
|
19342
19371
|
0x0309 AISubjectTrackingMode int16u
|
19372
|
+
0x030a AFTargetInfo Olympus AFTargetInfo
|
19373
|
+
0x030b SubjectDetectInfo Olympus SubjectDetectInfo
|
19343
19374
|
0x0400 FlashMode int16u
|
19344
19375
|
0x0401 FlashExposureComp rational64s
|
19345
19376
|
0x0403 FlashRemoteControl int16u
|
@@ -19384,6 +19415,7 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19384
19415
|
0x0603 ImageQuality2 int16u
|
19385
19416
|
0x0604 ImageStabilization int32u
|
19386
19417
|
0x0804 StackedImage int32u[2]
|
19418
|
+
0x0821 ISOAutoSettings int16u[2]
|
19387
19419
|
0x0900 ManometerPressure int16u
|
19388
19420
|
0x0901 ManometerReading int32s[2]
|
19389
19421
|
0x0902 ExtendedWBDetect int16u
|
@@ -19391,6 +19423,31 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19391
19423
|
0x0904 PitchAngle int16s[2]
|
19392
19424
|
0x0908 DateTimeUTC string
|
19393
19425
|
|
19426
|
+
=head3 Olympus AFTargetInfo Tags
|
19427
|
+
|
19428
|
+
Position and size of selected AF Area and focus areas for OM cameras.
|
19429
|
+
|
19430
|
+
Index2 Tag Name Writable
|
19431
|
+
------ -------- --------
|
19432
|
+
0 AFFrameSize int16u[2]
|
19433
|
+
2 AFFocusArea int16u[4]
|
19434
|
+
6 AFSelectedArea int16u[4]
|
19435
|
+
|
19436
|
+
=head3 Olympus SubjectDetectInfo Tags
|
19437
|
+
|
19438
|
+
Subject Detection data for OM cameras. These tags contain the areas of a
|
19439
|
+
subject and its elements detected by Subject Detection, or the main face and
|
19440
|
+
eyes detected by Face Detection. These elements can be either L1 details
|
19441
|
+
(level 1, such as head, chassis, airplane nose, etc.) or L2 details (level
|
19442
|
+
2, such as eye, driver, airplane cockpit, etc.).
|
19443
|
+
|
19444
|
+
Index2 Tag Name Writable
|
19445
|
+
------ -------- --------
|
19446
|
+
0 SubjectDetectFrameSize int16u[2]
|
19447
|
+
2 SubjectDetectArea int16u[4]
|
19448
|
+
6 SubjectDetectDetail int16u[4]
|
19449
|
+
10 SubjectDetectStatus int16u
|
19450
|
+
|
19394
19451
|
=head3 Olympus RawDevelopment Tags
|
19395
19452
|
|
19396
19453
|
Tag ID Tag Name Writable
|
@@ -19438,6 +19495,13 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19438
19495
|
0x0119 RawDevAutoGradation int16u
|
19439
19496
|
0x0120 RawDevPMNoiseFilter int16u
|
19440
19497
|
0x0121 RawDevArtFilter int16u[4]
|
19498
|
+
0x8000 RawDevSubIFD Olympus RawDevSubIFD
|
19499
|
+
|
19500
|
+
=head3 Olympus RawDevSubIFD Tags
|
19501
|
+
|
19502
|
+
Tag ID Tag Name Writable
|
19503
|
+
------ -------- --------
|
19504
|
+
[no tags known]
|
19441
19505
|
|
19442
19506
|
=head3 Olympus ImageProcessing Tags
|
19443
19507
|
|
@@ -19506,6 +19570,7 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19506
19570
|
0x1900 KeystoneCompensation int8u[2]
|
19507
19571
|
0x1901 KeystoneDirection int8u[2]
|
19508
19572
|
0x1906 KeystoneValue int16s[3]
|
19573
|
+
0x2110 GNDFilterType int8u
|
19509
19574
|
|
19510
19575
|
=head3 Olympus FocusInfo Tags
|
19511
19576
|
|
@@ -19534,12 +19599,13 @@ any information found here will be extracted, even if the tag is not listed.
|
|
19534
19599
|
0x120a MacroLED int16u
|
19535
19600
|
0x1500 SensorTemperature int16s
|
19536
19601
|
0x1600 ImageStabilization undef~
|
19602
|
+
0x2100 AntiShockWaitingTime yes
|
19537
19603
|
|
19538
19604
|
=head3 Olympus AFInfo Tags
|
19539
19605
|
|
19540
19606
|
Index1 Tag Name Writable
|
19541
19607
|
------ -------- --------
|
19542
|
-
|
19608
|
+
1580 CAFSensitivity no
|
19543
19609
|
|
19544
19610
|
=head3 Olympus FE Tags
|
19545
19611
|
|
@@ -20360,6 +20426,8 @@ These tags are used in Pentax/Asahi cameras.
|
|
20360
20426
|
0x0402 ToneCurve yes~
|
20361
20427
|
0x0403 ToneCurves yes~
|
20362
20428
|
0x0405 UnknownBlock? undef
|
20429
|
+
0x040b FaceInfoK3III Pentax FaceInfoK3III
|
20430
|
+
0x040c AFInfoK3III Pentax AFInfoK3III
|
20363
20431
|
0x0e00 PrintIM PrintIM
|
20364
20432
|
|
20365
20433
|
=head3 Pentax LensRec Tags
|
@@ -20677,10 +20745,16 @@ Flash information tags for the K10D, K20D and K200D.
|
|
20677
20745
|
7 AFIntegrationTime int8u
|
20678
20746
|
11 AFPointsInFocus int8u
|
20679
20747
|
20 AFPointValues? no
|
20680
|
-
298 AFPointsSelected int8u[
|
20681
|
-
399 AFPointsUnknown? int8u[
|
20748
|
+
298 AFPointsSelected int8u[101]~
|
20749
|
+
399 AFPointsUnknown? int8u[101]~
|
20682
20750
|
506 LiveView int8u
|
20683
20751
|
509 AFHold int8u
|
20752
|
+
543 FirstFrameActionInAFC int8u
|
20753
|
+
544 ActionInAFCCont int8u
|
20754
|
+
545 AFCHold int8u & 0x03
|
20755
|
+
545.1 AFCPointTracking int8u & 0x0c
|
20756
|
+
545.2 AFCSensitivity int8u & 0x70
|
20757
|
+
2400 SubjectRecognition int8u
|
20684
20758
|
|
20685
20759
|
=head3 Pentax KelvinWB Tags
|
20686
20760
|
|
@@ -20922,6 +20996,7 @@ sensors are located in the camera.
|
|
20922
20996
|
|
20923
20997
|
Index1 Tag Name Writable
|
20924
20998
|
------ -------- --------
|
20999
|
+
10 ShotNumber no
|
20925
21000
|
12 SensorTemperature int16s
|
20926
21001
|
14 SensorTemperature2 int16s
|
20927
21002
|
20 CameraTemperature4 int16s
|
@@ -20934,6 +21009,90 @@ sensors are located in the camera.
|
|
20934
21009
|
------ -------- --------
|
20935
21010
|
[no tags known]
|
20936
21011
|
|
21012
|
+
=head3 Pentax FaceInfoK3III Tags
|
21013
|
+
|
21014
|
+
Index4 Tag Name Writable
|
21015
|
+
------ -------- --------
|
21016
|
+
0 FaceImageSize int32u[2]
|
21017
|
+
0.1 FaceInfoK3III? int32u[$size/4]
|
21018
|
+
2 CAFArea int32u[4]
|
21019
|
+
6 FacesDetectedA int32u
|
21020
|
+
8 FacesDetectedB int32u
|
21021
|
+
10 Face1AArea int32u[4]
|
21022
|
+
14 Face1AEye1 int32u[4]
|
21023
|
+
18 Face1AEye2 int32u[4]
|
21024
|
+
30 Face2AArea int32u[4]
|
21025
|
+
34 Face2AEye1 int32u[4]
|
21026
|
+
38 Face2AEye2 int32u[4]
|
21027
|
+
50 Face3AArea int32u[4]
|
21028
|
+
54 Face3AEye1 int32u[4]
|
21029
|
+
58 Face3AEye2 int32u[4]
|
21030
|
+
70 Face4AArea int32u[4]
|
21031
|
+
74 Face4AEye1 int32u[4]
|
21032
|
+
78 Face4AEye2 int32u[4]
|
21033
|
+
90 Face5AArea int32u[4]
|
21034
|
+
94 Face5AEye1 int32u[4]
|
21035
|
+
98 Face5AEye2 int32u[4]
|
21036
|
+
110 Face6AArea int32u[4]
|
21037
|
+
114 Face6AEye1 int32u[4]
|
21038
|
+
118 Face6AEye2 int32u[4]
|
21039
|
+
130 Face7AArea int32u[4]
|
21040
|
+
134 Face7AEye1 int32u[4]
|
21041
|
+
138 Face7AEye2 int32u[4]
|
21042
|
+
150 Face8AArea int32u[4]
|
21043
|
+
154 Face8AEye1 int32u[4]
|
21044
|
+
158 Face8AEye2 int32u[4]
|
21045
|
+
170 Face9AArea int32u[4]
|
21046
|
+
174 Face9AEye1 int32u[4]
|
21047
|
+
178 Face9AEye2 int32u[4]
|
21048
|
+
190 Face10AArea int32u[4]
|
21049
|
+
194 Face10AEye1 int32u[4]
|
21050
|
+
198 Face10AEye2 int32u[4]
|
21051
|
+
210 Face1BArea int32u[4]
|
21052
|
+
214 Face1BEye1 int32u[4]
|
21053
|
+
218 Face1BEye2 int32u[4]
|
21054
|
+
230 Face2BArea int32u[4]
|
21055
|
+
234 Face2BEye1 int32u[4]
|
21056
|
+
238 Face2BEye2 int32u[4]
|
21057
|
+
250 Face3BArea int32u[4]
|
21058
|
+
254 Face3BEye1 int32u[4]
|
21059
|
+
258 Face3BEye2 int32u[4]
|
21060
|
+
270 Face4BArea int32u[4]
|
21061
|
+
274 Face4BEye1 int32u[4]
|
21062
|
+
278 Face4BEye2 int32u[4]
|
21063
|
+
290 Face5BArea int32u[4]
|
21064
|
+
294 Face5BEye1 int32u[4]
|
21065
|
+
298 Face5BEye2 int32u[4]
|
21066
|
+
310 Face6BArea int32u[4]
|
21067
|
+
314 Face6BEye1 int32u[4]
|
21068
|
+
318 Face6BEye2 int32u[4]
|
21069
|
+
330 Face7BArea int32u[4]
|
21070
|
+
334 Face7BEye1 int32u[4]
|
21071
|
+
338 Face7BEye2 int32u[4]
|
21072
|
+
350 Face8BArea int32u[4]
|
21073
|
+
354 Face8BEye1 int32u[4]
|
21074
|
+
358 Face8BEye2 int32u[4]
|
21075
|
+
370 Face9BArea int32u[4]
|
21076
|
+
374 Face9BEye1 int32u[4]
|
21077
|
+
378 Face9BEye2 int32u[4]
|
21078
|
+
390 Face10BArea int32u[4]
|
21079
|
+
394 Face10BEye1 int32u[4]
|
21080
|
+
398 Face10BEye2 int32u[4]
|
21081
|
+
|
21082
|
+
=head3 Pentax AFInfoK3III Tags
|
21083
|
+
|
21084
|
+
AF tags written by the K-3 Mark III, GR III and GR IIIx.
|
21085
|
+
|
21086
|
+
Index2 Tag Name Writable
|
21087
|
+
------ -------- --------
|
21088
|
+
0 AFInfo? int16u[$size/2]
|
21089
|
+
0.1 AFMode int16u
|
21090
|
+
1 AFSelectionMode int16u
|
21091
|
+
3 NumAFPoints int16u
|
21092
|
+
7 AFFrameSize no
|
21093
|
+
7.1 AFAreas no+
|
21094
|
+
11 AFAreaSize no
|
21095
|
+
|
20937
21096
|
=head3 Pentax Type2 Tags
|
20938
21097
|
|
20939
21098
|
These tags are used by the Pentax Optio 330 and 430, and are similar to the
|
@@ -23487,11 +23646,11 @@ E-mount models.
|
|
23487
23646
|
|
23488
23647
|
=head3 Sony Tag9416 Tags
|
23489
23648
|
|
23490
|
-
Valid for the ILCE-1/6700/7CM2/7CR/7M4/7RM5/7SM3/9M3, ILME-FX3/FX30,
|
23649
|
+
Valid for the ILCE-1/6700/7CM2/7CR/7M4/7RM5/7SM3/9M3, ILME-FX2/FX3/FX30,
|
23650
|
+
ZV-E1/E10M2.
|
23491
23651
|
|
23492
23652
|
Index1 Tag Name Writable
|
23493
23653
|
------ -------- --------
|
23494
|
-
0 Tag9416_0000 no
|
23495
23654
|
4 SonyISO no
|
23496
23655
|
6 StopsAboveBaseISO no
|
23497
23656
|
10 SonyExposureTime2 no
|
@@ -30385,7 +30544,7 @@ for the official QuickTime specification.
|
|
30385
30544
|
The tags below are extracted from timed metadata in QuickTime and other
|
30386
30545
|
formats of video files when the ExtractEmbedded option is used. Although
|
30387
30546
|
most of these tags are combined into the single table below, ExifTool
|
30388
|
-
currently reads
|
30547
|
+
currently reads 111 different types of timed GPS metadata from video files.
|
30389
30548
|
|
30390
30549
|
Tag ID Tag Name Writable
|
30391
30550
|
------ -------- --------
|
@@ -31672,7 +31831,8 @@ the config file.
|
|
31672
31831
|
'RMKN' RicohRMKN EXIF
|
31673
31832
|
'RTHU' PreviewImage no
|
31674
31833
|
'SDLN' PlayMode string
|
31675
|
-
'SIGM'
|
31834
|
+
'SIGM' SigmaEXIF EXIF
|
31835
|
+
PreviewImage string
|
31676
31836
|
'SNum' SerialNumber string/
|
31677
31837
|
'SelO' PlaySelection int8u
|
31678
31838
|
'TAGS' FujiFilmTags FujiFilm MOV
|
@@ -36383,6 +36543,110 @@ Tags with index 54 and greater are conditional based on the StreamType.
|
|
36383
36543
|
58 AudioSampleRate no
|
36384
36544
|
ImageHeight no
|
36385
36545
|
|
36546
|
+
=head2 TNEF Tags
|
36547
|
+
|
36548
|
+
Information extracted from Transport Neutral Encapsulation Format (TNEF)
|
36549
|
+
files (eg. winmail.dat). But note that the exiftool application doesn't
|
36550
|
+
process files with a .DAT extension by default when a directory name is
|
36551
|
+
given, so in this case either specify the .DAT file(s) by name or add
|
36552
|
+
C<-ext+ dat> to the command.
|
36553
|
+
|
36554
|
+
Tag ID Tag Name Writable
|
36555
|
+
------ -------- --------
|
36556
|
+
0x8000 From no
|
36557
|
+
0x18004 Subject no
|
36558
|
+
0x18009 MessageID no
|
36559
|
+
0x18010 AttachTitle no
|
36560
|
+
0x2800c MessageBody no
|
36561
|
+
0x30006 StartDate no
|
36562
|
+
0x30007 EndDate no
|
36563
|
+
0x38005 SentDate no
|
36564
|
+
0x38006 ReceivedDate no
|
36565
|
+
0x38012 AttachCreateDate no
|
36566
|
+
0x38013 AttachModifyDate no
|
36567
|
+
0x38020 MessageModifyDate no
|
36568
|
+
0x40009 ResponseRequested no
|
36569
|
+
0x4800d Priority no
|
36570
|
+
0x50008 OwnerAppointmentID no
|
36571
|
+
0x60000 Owner no
|
36572
|
+
0x60001 SentFor no
|
36573
|
+
0x60002 Delegate no
|
36574
|
+
0x68007 MessageStatus no
|
36575
|
+
0x6800f AttachData no
|
36576
|
+
0x68011 AttachMetaFile no
|
36577
|
+
0x69001 AttachTransportFilename no
|
36578
|
+
0x69002 AttachRenderingData no
|
36579
|
+
0x69003 MessageProps TNEF MsgProps
|
36580
|
+
0x69004 RecipientTable no
|
36581
|
+
0x69005 AttachInfo TNEF AttachInfo
|
36582
|
+
0x69007 CodePage no
|
36583
|
+
0x70600 OriginalMessageClass no
|
36584
|
+
0x78008 MessageClass no
|
36585
|
+
0x89006 TNEFVersion no
|
36586
|
+
|
36587
|
+
=head3 TNEF MsgProps Tags
|
36588
|
+
|
36589
|
+
Tag ID Tag Name Writable
|
36590
|
+
------ -------- --------
|
36591
|
+
0x0002 AlternateRecipientAllowed no
|
36592
|
+
0x0039 ClientSubmitTime no
|
36593
|
+
0x0040 ReceivedByName no
|
36594
|
+
0x0044 ReceivedRepresentingName no
|
36595
|
+
0x004d OriginalAuthorName no
|
36596
|
+
0x0055 OriginalDeliveryTime no
|
36597
|
+
0x0070 Subject no
|
36598
|
+
0x0075 ReceivedByAddressType no
|
36599
|
+
0x0076 ReceivedByEmailAddress no
|
36600
|
+
0x0077 ReceivedRepresentingAddressType no
|
36601
|
+
0x0078 ReceivedRepresentingEmailAddress no
|
36602
|
+
0x007f CorrelationKey no
|
36603
|
+
0x0c1a SenderName no
|
36604
|
+
0x0c1d SenderSearchKey no
|
36605
|
+
0x0e06 MessageDeliveryTime no
|
36606
|
+
0x0e1d NormalizedSubject no
|
36607
|
+
0x0e28 PrimarySendAccount no
|
36608
|
+
0x0e29 NextSendAccount no
|
36609
|
+
0x0f02 DeliveryOrRenewTime no
|
36610
|
+
0x1000 MessageBodyText no
|
36611
|
+
0x1007 SyncBodyCount no
|
36612
|
+
0x1008 SyncBodyData no
|
36613
|
+
0x1009 MessageBodyRTF no
|
36614
|
+
0x1013 MessageBodyHTML no
|
36615
|
+
0x1035 InternetMessageID no
|
36616
|
+
0x10f4 Hidden no
|
36617
|
+
0x10f6 ReadOnly no
|
36618
|
+
0x3007 CreateDate no
|
36619
|
+
0x3008 ModifyDate no
|
36620
|
+
0x3fde InternetCodePage no
|
36621
|
+
0x3ff1 LocalUserID no
|
36622
|
+
0x3ff8 CreatorName no
|
36623
|
+
0x3ffa LastModifierName no
|
36624
|
+
0x3ffd MessageCodePage no
|
36625
|
+
0x4076 SpamConfidenceLevel no
|
36626
|
+
'00020329_Author' Author no
|
36627
|
+
'00020329_LastAuthor' LastAuthor no
|
36628
|
+
'00062004_0000801A' HomeAddress no
|
36629
|
+
'00062004_000080DA' HomeAddressCountryCode no
|
36630
|
+
'00062008_00008554' AppVersion no
|
36631
|
+
|
36632
|
+
=head3 TNEF AttachInfo Tags
|
36633
|
+
|
36634
|
+
Tag ID Tag Name Writable
|
36635
|
+
------ -------- --------
|
36636
|
+
0x0e20 AttachSize no
|
36637
|
+
0x0e21 AttachNum no
|
36638
|
+
0x0ff8 MappingSignature? no
|
36639
|
+
0x3001 AttachFileName no
|
36640
|
+
0x3701 AttachBinary no
|
36641
|
+
0x3703 AttachFileExtension no
|
36642
|
+
0x3705 AttachMethod no
|
36643
|
+
0x3707 AttachLongFileName no
|
36644
|
+
0x3708 AttachPathName no
|
36645
|
+
0x370d AttachLongPathName no
|
36646
|
+
0x370e AttachMIMEType no
|
36647
|
+
0x7ffb ExceptionStartTime? no
|
36648
|
+
0x7ffc ExceptionEndTime? no
|
36649
|
+
|
36386
36650
|
=head2 WTV Tags
|
36387
36651
|
|
36388
36652
|
Tags found in Windows recorded TV (WTV) videos.
|
@@ -49,7 +49,7 @@ my %mandatory = (
|
|
49
49
|
0x0000 => '2 3 0 0',# GPSVersionID
|
50
50
|
},
|
51
51
|
InteropIFD => {
|
52
|
-
0x0002 => '0100', # InteropVersion
|
52
|
+
0x0002 => '0100', # InteropVersion (from the DCF spec, not the EXIF spec)
|
53
53
|
},
|
54
54
|
);
|
55
55
|
|
@@ -2529,17 +2529,19 @@ NoOverwrite: next if $isNew > 0;
|
|
2529
2529
|
}
|
2530
2530
|
if ($$tagInfo{Name} eq 'PreviewImageStart') {
|
2531
2531
|
if ($$et{FILE_TYPE} eq 'JPEG' and not $$tagInfo{MakerPreview}) {
|
2532
|
-
|
2533
|
-
|
2534
|
-
|
2535
|
-
|
2536
|
-
|
2537
|
-
|
2538
|
-
$$
|
2539
|
-
|
2540
|
-
|
2541
|
-
|
2542
|
-
|
2532
|
+
if ($size) {
|
2533
|
+
# hold onto the PreviewImage until we can determine if it fits
|
2534
|
+
$$et{PREVIEW_INFO} or $$et{PREVIEW_INFO} = {
|
2535
|
+
Data => $buff,
|
2536
|
+
Fixup => Image::ExifTool::Fixup->new,
|
2537
|
+
};
|
2538
|
+
if ($$tagInfo{IsOffset} and $$tagInfo{IsOffset} eq '2') {
|
2539
|
+
$$et{PREVIEW_INFO}{NoBaseShift} = 1;
|
2540
|
+
}
|
2541
|
+
if ($offset >= 0 and $offset+$size <= $dataLen) {
|
2542
|
+
# set flag indicating this preview wasn't in a trailer
|
2543
|
+
$$et{PREVIEW_INFO}{WasContained} = 1;
|
2544
|
+
}
|
2543
2545
|
}
|
2544
2546
|
$buff = '';
|
2545
2547
|
} elsif ($$et{TIFF_TYPE} eq 'ARW' and $$et{Model} eq 'DSLR-A100') {
|