exiftool_vendored 12.41.0 → 12.50.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 +209 -6
- data/bin/MANIFEST +12 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +45 -44
- data/bin/config_files/acdsee.config +2 -1
- data/bin/config_files/frameCount.config +56 -0
- data/bin/config_files/tiff_version.config +1 -1
- data/bin/exiftool +115 -96
- data/bin/fmt_files/gpx.fmt +3 -0
- data/bin/fmt_files/gpx_wpt.fmt +3 -0
- data/bin/lib/Image/ExifTool/Apple.pm +16 -3
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +23 -12
- data/bin/lib/Image/ExifTool/Canon.pm +71 -33
- data/bin/lib/Image/ExifTool/CanonRaw.pm +8 -1
- data/bin/lib/Image/ExifTool/CanonVRD.pm +7 -8
- data/bin/lib/Image/ExifTool/DJI.pm +60 -1
- data/bin/lib/Image/ExifTool/DNG.pm +8 -2
- data/bin/lib/Image/ExifTool/DarwinCore.pm +13 -1
- data/bin/lib/Image/ExifTool/EXE.pm +9 -1
- data/bin/lib/Image/ExifTool/Exif.pm +26 -12
- data/bin/lib/Image/ExifTool/FLAC.pm +17 -3
- data/bin/lib/Image/ExifTool/FLIR.pm +4 -3
- data/bin/lib/Image/ExifTool/FlashPix.pm +26 -3
- data/bin/lib/Image/ExifTool/FujiFilm.pm +51 -4
- data/bin/lib/Image/ExifTool/GPS.pm +21 -1
- data/bin/lib/Image/ExifTool/Geotag.pm +25 -5
- data/bin/lib/Image/ExifTool/ICC_Profile.pm +12 -9
- data/bin/lib/Image/ExifTool/ICO.pm +143 -0
- data/bin/lib/Image/ExifTool/ID3.pm +11 -11
- data/bin/lib/Image/ExifTool/IPTC.pm +5 -1
- data/bin/lib/Image/ExifTool/LNK.pm +5 -2
- data/bin/lib/Image/ExifTool/M2TS.pm +98 -8
- data/bin/lib/Image/ExifTool/MIE.pm +9 -3
- data/bin/lib/Image/ExifTool/MISB.pm +494 -0
- data/bin/lib/Image/ExifTool/MakerNotes.pm +8 -1
- data/bin/lib/Image/ExifTool/Matroska.pm +24 -16
- data/bin/lib/Image/ExifTool/Motorola.pm +8 -2
- data/bin/lib/Image/ExifTool/Nikon.pm +293 -122
- data/bin/lib/Image/ExifTool/NikonCustom.pm +4 -1
- data/bin/lib/Image/ExifTool/NikonSettings.pm +5 -3
- data/bin/lib/Image/ExifTool/Olympus.pm +22 -2
- data/bin/lib/Image/ExifTool/PDF.pm +2 -1
- data/bin/lib/Image/ExifTool/Panasonic.pm +30 -4
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +25 -5
- data/bin/lib/Image/ExifTool/Parrot.pm +96 -2
- data/bin/lib/Image/ExifTool/Pentax.pm +8 -3
- data/bin/lib/Image/ExifTool/Photoshop.pm +35 -8
- data/bin/lib/Image/ExifTool/QuickTime.pm +163 -13
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +119 -13
- data/bin/lib/Image/ExifTool/README +13 -3
- data/bin/lib/Image/ExifTool/RIFF.pm +106 -9
- data/bin/lib/Image/ExifTool/Samsung.pm +234 -3
- data/bin/lib/Image/ExifTool/Shortcuts.pm +2 -1
- data/bin/lib/Image/ExifTool/Sigma.pm +27 -1
- data/bin/lib/Image/ExifTool/SigmaRaw.pm +37 -13
- data/bin/lib/Image/ExifTool/Sony.pm +71 -43
- data/bin/lib/Image/ExifTool/TagInfoXML.pm +3 -1
- data/bin/lib/Image/ExifTool/TagLookup.pm +4752 -4516
- data/bin/lib/Image/ExifTool/TagNames.pod +1885 -1434
- data/bin/lib/Image/ExifTool/Text.pm +3 -4
- data/bin/lib/Image/ExifTool/Torrent.pm +2 -3
- data/bin/lib/Image/ExifTool/Validate.pm +3 -3
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +7 -0
- data/bin/lib/Image/ExifTool/WriteExif.pl +100 -23
- data/bin/lib/Image/ExifTool/WriteIPTC.pl +2 -6
- data/bin/lib/Image/ExifTool/WritePhotoshop.pl +5 -5
- data/bin/lib/Image/ExifTool/WriteRIFF.pl +359 -0
- data/bin/lib/Image/ExifTool/Writer.pl +14 -6
- data/bin/lib/Image/ExifTool/XMP.pm +78 -59
- data/bin/lib/Image/ExifTool/XMP2.pl +19 -4
- data/bin/lib/Image/ExifTool.pm +120 -33
- data/bin/lib/Image/ExifTool.pod +83 -69
- data/bin/perl-Image-ExifTool.spec +43 -43
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +9 -4
@@ -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 26027 tags, with 16663 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
|
@@ -629,6 +629,7 @@ for the official EXIF 2.32 specification.
|
|
629
629
|
MakerNoteCanon ExifIFD Canon
|
630
630
|
MakerNoteCasio ExifIFD Casio
|
631
631
|
MakerNoteCasio2 ExifIFD Casio Type2
|
632
|
+
MakerNoteDJIInfo ExifIFD DJI Info
|
632
633
|
MakerNoteDJI ExifIFD DJI
|
633
634
|
MakerNoteFLIR ExifIFD FLIR
|
634
635
|
MakerNoteFujiFilm ExifIFD FujiFilm
|
@@ -854,6 +855,7 @@ for the official EXIF 2.32 specification.
|
|
854
855
|
MakerNotePentax IFD0 Pentax
|
855
856
|
MakerNotePentax5 IFD0 Pentax
|
856
857
|
MakerNoteRicohPentax IFD0 Pentax
|
858
|
+
MakerNoteDJIInfo IFD0 DJI Info
|
857
859
|
DNGPrivateData IFD0 int8u!
|
858
860
|
0xc635 MakerNoteSafety IFD0 int16u
|
859
861
|
0xc640 RawImageSegmentation - no
|
@@ -900,9 +902,9 @@ for the official EXIF 2.32 specification.
|
|
900
902
|
0xc71f RowInterleaveFactor - no
|
901
903
|
0xc725 ProfileLookTableDims IFD0 int32u[3]!
|
902
904
|
0xc726 ProfileLookTableData IFD0 float[n]!
|
903
|
-
0xc740 OpcodeList1 SubIFD undef
|
904
|
-
0xc741 OpcodeList2 SubIFD undef
|
905
|
-
0xc74e OpcodeList3 SubIFD undef
|
905
|
+
0xc740 OpcodeList1 SubIFD undef~!
|
906
|
+
0xc741 OpcodeList2 SubIFD undef~!
|
907
|
+
0xc74e OpcodeList3 SubIFD undef~!
|
906
908
|
0xc761 NoiseProfile SubIFD double[n]!
|
907
909
|
0xc763 TimeCodes IFD0 int8u[n]
|
908
910
|
0xc764 FrameRate IFD0 rational64s
|
@@ -929,7 +931,7 @@ for the official EXIF 2.32 specification.
|
|
929
931
|
0xc7ee EnhanceParams IFD0 string!
|
930
932
|
0xcd2d ProfileGainTableMap SubIFD undef!
|
931
933
|
0xcd2e SemanticName SubIFD no
|
932
|
-
0xcd30
|
934
|
+
0xcd30 SemanticInstanceID SubIFD no
|
933
935
|
0xcd31 CalibrationIlluminant3 IFD0 int16u!
|
934
936
|
0xcd32 CameraCalibration3 IFD0 rational64s[n]!
|
935
937
|
0xcd33 ColorMatrix3 IFD0 rational64s[n]!
|
@@ -1428,6 +1430,11 @@ These tags belong to the ExifTool XMP-aux family 1 group.
|
|
1428
1430
|
-------- --------
|
1429
1431
|
ApproximateFocusDistance rational
|
1430
1432
|
DistortionCorrectionAlreadyApplied boolean
|
1433
|
+
EnhanceDetailsAlreadyApplied boolean
|
1434
|
+
EnhanceDetailsVersion string
|
1435
|
+
EnhanceSuperResolutionAlreadyApplied boolean
|
1436
|
+
EnhanceSuperResolutionScale rational
|
1437
|
+
EnhanceSuperResolutionVersion string
|
1431
1438
|
Firmware string
|
1432
1439
|
FlashCompensation rational
|
1433
1440
|
ImageNumber string
|
@@ -2413,7 +2420,12 @@ These tags belong to the ExifTool XMP-crd family 1 group.
|
|
2413
2420
|
UprightDependentDigest string/
|
2414
2421
|
UprightFocalLength35mm real/
|
2415
2422
|
UprightFocalMode integer/
|
2423
|
+
UprightFourSegments_0 string/
|
2424
|
+
UprightFourSegments_1 string/
|
2425
|
+
UprightFourSegments_2 string/
|
2426
|
+
UprightFourSegments_3 string/
|
2416
2427
|
UprightFourSegmentsCount integer/
|
2428
|
+
UprightGuidedDependentDigest string/
|
2417
2429
|
UprightPreview boolean/
|
2418
2430
|
UprightTransform_0 string/
|
2419
2431
|
UprightTransform_1 string/
|
@@ -3593,7 +3605,12 @@ These tags belong to the ExifTool XMP-crs family 1 group.
|
|
3593
3605
|
UprightDependentDigest string
|
3594
3606
|
UprightFocalLength35mm real
|
3595
3607
|
UprightFocalMode integer
|
3608
|
+
UprightFourSegments_0 string
|
3609
|
+
UprightFourSegments_1 string
|
3610
|
+
UprightFourSegments_2 string
|
3611
|
+
UprightFourSegments_3 string
|
3596
3612
|
UprightFourSegmentsCount integer
|
3613
|
+
UprightGuidedDependentDigest string
|
3597
3614
|
UprightPreview boolean
|
3598
3615
|
UprightTransform_0 string
|
3599
3616
|
UprightTransform_1 string
|
@@ -3980,6 +3997,7 @@ These tags belong to the ExifTool XMP-digiKam family 1 group.
|
|
3980
3997
|
ImageHistory string/
|
3981
3998
|
ImageUniqueID string/
|
3982
3999
|
LensCorrectionSettings string
|
4000
|
+
PicasawebGPhotoId string
|
3983
4001
|
PickLabel string
|
3984
4002
|
TagsList string+
|
3985
4003
|
|
@@ -4258,6 +4276,7 @@ These tags belong to the ExifTool XMP-GCamera family 1 group.
|
|
4258
4276
|
PortraitNote string
|
4259
4277
|
PortraitRequest string
|
4260
4278
|
PortraitVersion string
|
4279
|
+
ShotLogData string
|
4261
4280
|
SpecialTypeID string+
|
4262
4281
|
|
4263
4282
|
=head3 XMP GCreations Tags
|
@@ -4269,6 +4288,7 @@ These tags belong to the ExifTool XMP-GCreations family 1 group.
|
|
4269
4288
|
Tag Name Writable
|
4270
4289
|
-------- --------
|
4271
4290
|
CameraBurstID string
|
4291
|
+
Type string/
|
4272
4292
|
|
4273
4293
|
=head3 XMP GDepth Tags
|
4274
4294
|
|
@@ -4512,10 +4532,11 @@ These tags belong to the ExifTool XMP-iptcCore family 1 group.
|
|
4512
4532
|
|
4513
4533
|
=head3 XMP iptcExt Tags
|
4514
4534
|
|
4515
|
-
This table contains tags defined by the IPTC Extension schema version 1.
|
4516
|
-
|
4517
|
-
the family 1 group name. (
|
4518
|
-
L<http://www.iptc.org/standards/photo-metadata/iptc-standard/>
|
4535
|
+
This table contains tags defined by the IPTC Extension schema version 1.7
|
4536
|
+
and IPTC Video Metadata version 1.3. The actual namespace prefix is
|
4537
|
+
"Iptc4xmpExt", but ExifTool shortens this for the family 1 group name. (See
|
4538
|
+
L<http://www.iptc.org/standards/photo-metadata/iptc-standard/> and
|
4539
|
+
L<https://iptc.org/standards/video-metadata-hub/>.)
|
4519
4540
|
|
4520
4541
|
These tags belong to the ExifTool XMP-iptcExt family 1 group.
|
4521
4542
|
|
@@ -4653,9 +4674,17 @@ These tags belong to the ExifTool XMP-iptcExt family 1 group.
|
|
4653
4674
|
LocationShownWorldRegion string_+
|
4654
4675
|
MaxAvailHeight integer
|
4655
4676
|
MaxAvailWidth integer
|
4677
|
+
MetadataAuthority Entity Struct
|
4678
|
+
MetadataAuthorityIdentifier string_+
|
4679
|
+
MetadataAuthorityName lang-alt_
|
4680
|
+
MetadataLastEdited date
|
4681
|
+
MetadataLastEditor Entity Struct
|
4682
|
+
MetadataLastEditorIdentifier string_+
|
4683
|
+
MetadataLastEditorName lang-alt_
|
4656
4684
|
ModelAge integer+
|
4657
4685
|
OrganisationInImageCode string+
|
4658
4686
|
OrganisationInImageName string+
|
4687
|
+
ParentID string
|
4659
4688
|
PersonHeard Entity Struct+
|
4660
4689
|
PersonHeardIdentifier string_+
|
4661
4690
|
PersonHeardName lang-alt_+
|
@@ -4676,6 +4705,7 @@ These tags belong to the ExifTool XMP-iptcExt family 1 group.
|
|
4676
4705
|
ProductInImage ProductDetails Struct+
|
4677
4706
|
ProductInImageDescription lang-alt_+
|
4678
4707
|
ProductInImageGTIN string_+
|
4708
|
+
ProductInImageProductId string_+
|
4679
4709
|
ProductInImageName lang-alt_+
|
4680
4710
|
PublicationEvent PublicationEvent Struct+
|
4681
4711
|
PublicationEventDate date_+
|
@@ -4919,6 +4949,7 @@ is to write ImageRegion as a structure with these tags as new fields.
|
|
4919
4949
|
---------- --------
|
4920
4950
|
ProductDescription lang-alt
|
4921
4951
|
ProductGTIN string
|
4952
|
+
ProductId string
|
4922
4953
|
ProductName lang-alt
|
4923
4954
|
|
4924
4955
|
=head3 XMP PublicationEvent Struct
|
@@ -5076,6 +5107,29 @@ These tags belong to the ExifTool XMP-photoshop family 1 group.
|
|
5076
5107
|
Tag Name Writable
|
5077
5108
|
-------- --------
|
5078
5109
|
AuthorsPosition string
|
5110
|
+
CameraProfiles Camera Struct+
|
5111
|
+
CameraProfilesApertureValue real_+
|
5112
|
+
CameraProfilesAuthor string_+
|
5113
|
+
CameraProfilesAutoScale boolean_+
|
5114
|
+
CameraProfilesCameraPrettyName string_+
|
5115
|
+
CameraProfilesCameraRawProfile boolean_+
|
5116
|
+
CameraProfilesFocalLength real_+
|
5117
|
+
CameraProfilesFocusDistance real_+
|
5118
|
+
CameraProfilesLens string_+
|
5119
|
+
CameraProfilesLensPrettyName string_+
|
5120
|
+
CameraProfilesMake string_+
|
5121
|
+
CameraProfilesModel string_+
|
5122
|
+
CameraProfilesPerspectiveModel PerspectiveModel Struct_+
|
5123
|
+
CameraProfilesPerspectiveModelImageXCenter real_+
|
5124
|
+
CameraProfilesPerspectiveModelImageYCenter real_+
|
5125
|
+
CameraProfilesPerspectiveModelRadialDistortParam1 real_+
|
5126
|
+
CameraProfilesPerspectiveModelRadialDistortParam2 real_+
|
5127
|
+
CameraProfilesPerspectiveModelRadialDistortParam3 real_+
|
5128
|
+
CameraProfilesPerspectiveModelScaleFactor real_+
|
5129
|
+
CameraProfilesPerspectiveModelVersion string_+
|
5130
|
+
CameraProfilesProfileName string_+
|
5131
|
+
CameraProfilesSensorFormatFactor real_+
|
5132
|
+
CameraProfilesUniqueCameraModel string_+
|
5079
5133
|
CaptionWriter string
|
5080
5134
|
Category string
|
5081
5135
|
City string
|
@@ -5100,6 +5154,38 @@ These tags belong to the ExifTool XMP-photoshop family 1 group.
|
|
5100
5154
|
TransmissionReference string
|
5101
5155
|
Urgency integer
|
5102
5156
|
|
5157
|
+
=head3 XMP Camera Struct
|
5158
|
+
|
5159
|
+
Field Name Writable
|
5160
|
+
---------- --------
|
5161
|
+
ApertureValue real
|
5162
|
+
Author string
|
5163
|
+
AutoScale boolean
|
5164
|
+
CameraPrettyName string
|
5165
|
+
CameraRawProfile boolean
|
5166
|
+
FocalLength real
|
5167
|
+
FocusDistance real
|
5168
|
+
Lens string
|
5169
|
+
LensPrettyName string
|
5170
|
+
Make string
|
5171
|
+
Model string
|
5172
|
+
PerspectiveModel PerspectiveModel Struct
|
5173
|
+
ProfileName string
|
5174
|
+
SensorFormatFactor real
|
5175
|
+
UniqueCameraModel string
|
5176
|
+
|
5177
|
+
=head3 XMP PerspectiveModel Struct
|
5178
|
+
|
5179
|
+
Field Name Writable
|
5180
|
+
---------- --------
|
5181
|
+
ImageXCenter real
|
5182
|
+
ImageYCenter real
|
5183
|
+
RadialDistortParam1 real
|
5184
|
+
RadialDistortParam2 real
|
5185
|
+
RadialDistortParam3 real
|
5186
|
+
ScaleFactor real
|
5187
|
+
Version string
|
5188
|
+
|
5103
5189
|
=head3 XMP Layer Struct
|
5104
5190
|
|
5105
5191
|
Field Name Writable
|
@@ -6297,11 +6383,13 @@ to an image.
|
|
6297
6383
|
=head2 GeoTiff Tags
|
6298
6384
|
|
6299
6385
|
ExifTool extracts the following tags from GeoTIFF images. See
|
6300
|
-
L<http://www.remotesensing.org/geotiff/spec/geotiffhome.html>
|
6301
|
-
complete GeoTIFF specification. Also included in the table below
|
6302
|
-
ChartTIFF tags (see
|
6303
|
-
|
6304
|
-
|
6386
|
+
L<https://web.archive.org/web/20070820121549/http://www.remotesensing.org/geotiff/spec/geotiffhome.html>
|
6387
|
+
for the complete GeoTIFF specification. Also included in the table below
|
6388
|
+
are ChartTIFF tags (see
|
6389
|
+
L<https://web.archive.org/web/20020828193928/http://www.charttiff.com/whitepapers.shtml>).
|
6390
|
+
GeoTIFF tags are not writable individually, but they may be copied en mass
|
6391
|
+
via the block tags GeoTiffDirectory, GeoTiffDoubleParams and
|
6392
|
+
GeoTiffAsciiParams.
|
6305
6393
|
|
6306
6394
|
Tag ID Tag Name Writable
|
6307
6395
|
------ -------- --------
|
@@ -6755,6 +6843,7 @@ Metadata tags that exist.
|
|
6755
6843
|
|
6756
6844
|
Tag Name Writable
|
6757
6845
|
-------- --------
|
6846
|
+
CreatorApp no
|
6758
6847
|
ManufacturerName no
|
6759
6848
|
MediaColor no
|
6760
6849
|
MediaWeight no
|
@@ -6979,8 +7068,10 @@ Tags extracted from the maker notes of iPhone images.
|
|
6979
7068
|
0x0008 AccelerationVector rational64s[3]
|
6980
7069
|
0x000a HDRImageType int32s
|
6981
7070
|
0x000b BurstUUID string
|
7071
|
+
0x000c FocusDistanceRange rational64s[2]
|
6982
7072
|
0x0011 MediaGroupUUID string
|
6983
7073
|
0x0015 ImageUniqueID string
|
7074
|
+
0x0017 LivePhotoVideoIndex yes
|
6984
7075
|
|
6985
7076
|
=head3 Apple RunTime Tags
|
6986
7077
|
|
@@ -8403,16 +8494,16 @@ WB tags for the Canon G9.
|
|
8403
8494
|
|
8404
8495
|
Index4 Tag Name Writable
|
8405
8496
|
------ -------- --------
|
8406
|
-
2
|
8407
|
-
10
|
8408
|
-
18
|
8409
|
-
26
|
8410
|
-
34
|
8411
|
-
42
|
8412
|
-
50
|
8413
|
-
58
|
8414
|
-
66
|
8415
|
-
74
|
8497
|
+
2 WB_GRBGLevelsAuto int32s[4]
|
8498
|
+
10 WB_GRBGLevelsDaylight int32s[4]
|
8499
|
+
18 WB_GRBGLevelsCloudy int32s[4]
|
8500
|
+
26 WB_GRBGLevelsTungsten int32s[4]
|
8501
|
+
34 WB_GRBGLevelsFluorescent int32s[4]
|
8502
|
+
42 WB_GRBGLevelsFluorHigh int32s[4]
|
8503
|
+
50 WB_GRBGLevelsFlash int32s[4]
|
8504
|
+
58 WB_GRBGLevelsUnderwater int32s[4]
|
8505
|
+
66 WB_GRBGLevelsCustom1 int32s[4]
|
8506
|
+
74 WB_GRBGLevelsCustom2 int32s[4]
|
8416
8507
|
|
8417
8508
|
=head3 Canon FaceDetect3 Tags
|
8418
8509
|
|
@@ -9321,7 +9412,7 @@ These tags are used by the R5, R5 and EOS 1DXmkIII.
|
|
9321
9412
|
|
9322
9413
|
=head3 Canon ColorData11 Tags
|
9323
9414
|
|
9324
|
-
These tags are used by the EOS R3
|
9415
|
+
These tags are used by the EOS R3, R7 and R6mkII
|
9325
9416
|
|
9326
9417
|
Index2 Tag Name Writable
|
9327
9418
|
------ -------- --------
|
@@ -10651,6 +10742,30 @@ These tags belong to the ExifTool XMP-drone-dji family 1 group.
|
|
10651
10742
|
RtkStdLon real
|
10652
10743
|
SelfData string
|
10653
10744
|
|
10745
|
+
=head3 DJI Info Tags
|
10746
|
+
|
10747
|
+
Tags written by some DJI drones.
|
10748
|
+
|
10749
|
+
Tag ID Tag Name Writable
|
10750
|
+
------ -------- --------
|
10751
|
+
'FlightDegree(Y,P,R)' FlightDegree no
|
10752
|
+
'FlightSpeed(X,Y,Z)' FlightSpeed no
|
10753
|
+
'GimbalDegree(Y,P,R)' GimbalDegree no
|
10754
|
+
'adj_dbg_info' ADJDebugInfo no
|
10755
|
+
'ae_dbg_info' AEDebugInfo no
|
10756
|
+
'ae_histogram_info' AEHistogramInfo no
|
10757
|
+
'ae_liveview_histogram_info'
|
10758
|
+
AELiveViewHistogramInfo no
|
10759
|
+
'ae_liveview_local_histogram'
|
10760
|
+
AELiveViewLocalHistogram no
|
10761
|
+
'ae_local_histogram' AELocalHistogram no
|
10762
|
+
'af_dbg_info' AFDebugInfo no
|
10763
|
+
'awb_dbg_info' AWBDebugInfo no
|
10764
|
+
'hiso' Histogram no
|
10765
|
+
'hyperlapse_dbg_info' HyperlapsDebugInfo no
|
10766
|
+
'sensor_id' SensorID no
|
10767
|
+
'xidiri' Xidiri no
|
10768
|
+
|
10654
10769
|
=head3 DJI ThermalParams Tags
|
10655
10770
|
|
10656
10771
|
Thermal parameters extracted from APP4 of DJI RJPEG files from the ZH20T.
|
@@ -10692,7 +10807,8 @@ imaging cameras by FLIR Systems Inc.
|
|
10692
10807
|
|
10693
10808
|
Information extracted from FLIR FFF images and the APP1 FLIR segment of JPEG
|
10694
10809
|
images. These tags may also be extracted from the first frame of an FLIR
|
10695
|
-
SEQ file, or all frames if the ExtractEmbedded option is used.
|
10810
|
+
SEQ file, or all frames if the ExtractEmbedded option is used. Setting
|
10811
|
+
ExtractEmbedded to 2 also the raw thermal data from all frames.
|
10696
10812
|
|
10697
10813
|
Tag ID Tag Name Writable
|
10698
10814
|
------ -------- --------
|
@@ -11126,6 +11242,7 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
11126
11242
|
0x100a WhiteBalanceFineTune int32s[2]
|
11127
11243
|
0x100b NoiseReduction int16u
|
11128
11244
|
0x100e NoiseReduction int16u
|
11245
|
+
0x100f Clarity int32s
|
11129
11246
|
0x1010 FujiFlashMode int16u
|
11130
11247
|
0x1011 FlashExposureComp rational64s
|
11131
11248
|
0x1020 Macro int16u
|
@@ -11144,9 +11261,10 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
11144
11261
|
0x1041 HighlightTone int32s
|
11145
11262
|
0x1044 DigitalZoom int32u
|
11146
11263
|
0x1045 LensModulationOptimizer int32u
|
11147
|
-
0x1047
|
11264
|
+
0x1047 GrainEffectRoughness int32s
|
11148
11265
|
0x1048 ColorChromeEffect int32s
|
11149
11266
|
0x1049 BWAdjustment int8s
|
11267
|
+
0x104c GrainEffectSize int16u
|
11150
11268
|
0x104d CropMode int16u
|
11151
11269
|
0x104e ColorChromeFXBlue int32s
|
11152
11270
|
0x1050 ShutterType int16u
|
@@ -11181,6 +11299,8 @@ Tags extracted from FLIR Public image Format (FPF) files.
|
|
11181
11299
|
0x1444 DRangePriorityAuto int16u
|
11182
11300
|
0x1445 DRangePriorityFixed int16u
|
11183
11301
|
0x1446 FlickerReduction int32u
|
11302
|
+
0x1447 FujiModel string
|
11303
|
+
0x1448 FujiModel2 string
|
11184
11304
|
0x3803 VideoRecordingMode int32u
|
11185
11305
|
0x3804 PeripheralLighting int16u
|
11186
11306
|
0x3806 VideoCompression int16u
|
@@ -13417,6 +13537,8 @@ DiMAGE X and Xt.
|
|
13417
13537
|
------ -------- --------
|
13418
13538
|
0x5500 BuildNumber string
|
13419
13539
|
0x5501 SerialNumber string
|
13540
|
+
0x6420 CustomRendered string
|
13541
|
+
0x64d0 DriveMode string
|
13420
13542
|
0x665e Sensor string
|
13421
13543
|
0x6705 ManufactureDate string
|
13422
13544
|
|
@@ -13470,10 +13592,12 @@ DiMAGE X and Xt.
|
|
13470
13592
|
0x0032 UnknownInfo2 Nikon UnknownInfo2
|
13471
13593
|
0x0034 ShutterMode int16u
|
13472
13594
|
0x0035 HDRInfo Nikon HDRInfo
|
13595
|
+
HDRInfo2 Nikon HDRInfo2
|
13473
13596
|
0x0037 MechanicalShutterCount int32u
|
13474
13597
|
0x0039 LocationInfo Nikon LocationInfo
|
13475
13598
|
0x003d BlackLevel int16u[4]
|
13476
13599
|
0x003e ImageSizeRAW yes
|
13600
|
+
0x003f WhiteBalanceFineTune rational64s[2]
|
13477
13601
|
0x0045 CropArea int16u[4]
|
13478
13602
|
0x004e NikonSettings NikonSettings
|
13479
13603
|
0x004f ColorTemperatureAuto int16u
|
@@ -13570,7 +13694,8 @@ DiMAGE X and Xt.
|
|
13570
13694
|
0x00ac ImageStabilization string
|
13571
13695
|
0x00ad AFResponse string
|
13572
13696
|
0x00b0 MultiExposure Nikon MultiExposure
|
13573
|
-
|
13697
|
+
MultiExposure2 Nikon MultiExposure
|
13698
|
+
Nikon MultiExposure2
|
13574
13699
|
0x00b1 HighISONoiseReduction int16u
|
13575
13700
|
0x00b3 ToningEffect string
|
13576
13701
|
0x00b6 PowerUpTime undef
|
@@ -13720,6 +13845,7 @@ Color balance tags used by the P1000, P7000, P7100 and B700.
|
|
13720
13845
|
0 VRInfoVersion no
|
13721
13846
|
4 VibrationReduction int8u
|
13722
13847
|
6 VRMode int8u
|
13848
|
+
8 VRType int8u
|
13723
13849
|
|
13724
13850
|
=head3 Nikon FaceDetect Tags
|
13725
13851
|
|
@@ -13843,12 +13969,20 @@ Color balance tags used by the P1000, P7000, P7100 and B700.
|
|
13843
13969
|
|
13844
13970
|
Index1 Tag Name Writable
|
13845
13971
|
------ -------- --------
|
13846
|
-
0 HDRInfoVersion
|
13972
|
+
0 HDRInfoVersion no
|
13847
13973
|
4 HDR int8u
|
13848
13974
|
5 HDRLevel int8u
|
13849
13975
|
6 HDRSmoothing int8u
|
13850
13976
|
7 HDRLevel2 int8u
|
13851
13977
|
|
13978
|
+
=head3 Nikon HDRInfo2 Tags
|
13979
|
+
|
13980
|
+
Index1 Tag Name Writable
|
13981
|
+
------ -------- --------
|
13982
|
+
0 HDRInfoVersion no
|
13983
|
+
4 HDR int8u
|
13984
|
+
5 HDRLevel int8u
|
13985
|
+
|
13852
13986
|
=head3 Nikon LocationInfo Tags
|
13853
13987
|
|
13854
13988
|
Tags written by some Nikon GPS-equipped cameras like the AW100.
|
@@ -14296,8 +14430,8 @@ These tags are extracted from encrypted data in images from the Z9.
|
|
14296
14430
|
----- -------- --------
|
14297
14431
|
0 ShotInfoVersion no
|
14298
14432
|
4 FirmwareVersion no
|
14433
|
+
27792 FocusShiftShooting int8u~
|
14299
14434
|
27800 IntervalShooting int16u~
|
14300
|
-
30788 FocusShiftShooting int8u~
|
14301
14435
|
60139 RollAngle fixed32u
|
14302
14436
|
60143 PitchAngle fixed32u
|
14303
14437
|
60147 YawAngle fixed32u
|
@@ -14527,7 +14661,6 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
|
|
14527
14661
|
0 LensDataVersion no
|
14528
14662
|
4 ExitPupilPosition int8u
|
14529
14663
|
5 AFAperture int8u
|
14530
|
-
9 FocusPosition int8u
|
14531
14664
|
11 FocusDistance int8u
|
14532
14665
|
12 FocalLength int8u
|
14533
14666
|
13 LensIDNumber int8u
|
@@ -14539,10 +14672,14 @@ Tags found in the encrypted LensData from cameras such as the Z6 and Z7.
|
|
14539
14672
|
19 MCUVersion int8u
|
14540
14673
|
20 EffectiveMaxAperture int8u
|
14541
14674
|
48 LensID int16u
|
14675
|
+
53 LensMountType? int8u
|
14542
14676
|
54 MaxAperture int16u
|
14543
14677
|
56 FNumber int16u
|
14544
14678
|
60 FocalLength int16u
|
14545
|
-
|
14679
|
+
76 FocusDistanceRangeWidth? int8u
|
14680
|
+
78 FocusDistance int16u~
|
14681
|
+
86 LensDriveEnd? int8u
|
14682
|
+
90 LensPositionAbsolute? int32s
|
14546
14683
|
|
14547
14684
|
=head3 Nikon LensDataUnknown Tags
|
14548
14685
|
|
@@ -14720,6 +14857,15 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
|
|
14720
14857
|
2 MultiExposureShots int32u
|
14721
14858
|
3 MultiExposureAutoGain int32u
|
14722
14859
|
|
14860
|
+
=head3 Nikon MultiExposure2 Tags
|
14861
|
+
|
14862
|
+
Index4 Tag Name Writable
|
14863
|
+
------ -------- --------
|
14864
|
+
0 MultiExposureVersion no
|
14865
|
+
1 MultiExposureMode int32u
|
14866
|
+
2 MultiExposureShots int32u
|
14867
|
+
3 MultiExposureOverlayMode int32u
|
14868
|
+
|
14723
14869
|
=head3 Nikon AFInfo2V0400 Tags
|
14724
14870
|
|
14725
14871
|
Index1 Tag Name Writable
|
@@ -14731,6 +14877,7 @@ These tags are used by the D4S, D750, D810, D5500, D7200 (FlashInfoVersion
|
|
14731
14877
|
69 FocusPositionVertical int8u~
|
14732
14878
|
70 AFAreaWidth int16u
|
14733
14879
|
72 AFAreaHeight int16u
|
14880
|
+
74 FocusResult int8u
|
14734
14881
|
|
14735
14882
|
=head3 Nikon AFInfo2 Tags
|
14736
14883
|
|
@@ -14750,9 +14897,11 @@ These tags are written by Nikon DSLR's which have the live view feature.
|
|
14750
14897
|
AFPointsUsed undef[21]
|
14751
14898
|
AFPointsUsed undef[29]
|
14752
14899
|
AFPointsUsed undef[20]
|
14753
|
-
AFPointsUsed undef[13]
|
14754
14900
|
AFPointsUsed undef[7]
|
14755
|
-
|
14901
|
+
PrimaryAFPoint int8u
|
14902
|
+
10 AFPointsUsed undef[7]
|
14903
|
+
AFPointsUsed undef[11]
|
14904
|
+
AFPointsUsed undef[14]
|
14756
14905
|
16 AFImageWidth int16u
|
14757
14906
|
18 AFImageHeight int16u
|
14758
14907
|
20 AFAreaXPosition int16u
|
@@ -14881,6 +15030,55 @@ cameras such as the Z6 and Z7, and NRW images from some Coolpix cameras.
|
|
14881
15030
|
------ -------- --------
|
14882
15031
|
[no tags known]
|
14883
15032
|
|
15033
|
+
=head3 Nikon AVI Tags
|
15034
|
+
|
15035
|
+
Nikon-specific RIFF tags found in AVI videos.
|
15036
|
+
|
15037
|
+
Tag ID Tag Name Writable
|
15038
|
+
------ -------- --------
|
15039
|
+
'nctg' NikonTags Nikon AVITags
|
15040
|
+
'ncth' ThumbnailImage no
|
15041
|
+
'ncvr' NikonVers Nikon AVIVers
|
15042
|
+
'ncvw' PreviewImage no
|
15043
|
+
|
15044
|
+
=head3 Nikon AVITags Tags
|
15045
|
+
|
15046
|
+
These tags and the AVIVer tags below are found in proprietary-format records
|
15047
|
+
of Nikon AVI videos.
|
15048
|
+
|
15049
|
+
Tag ID Tag Name Writable
|
15050
|
+
------ -------- --------
|
15051
|
+
0x0003 Make no
|
15052
|
+
0x0004 Model no
|
15053
|
+
0x0005 Software no
|
15054
|
+
0x0006 Equipment no
|
15055
|
+
0x0007 Orientation no
|
15056
|
+
0x0008 ExposureTime no
|
15057
|
+
0x0009 FNumber no
|
15058
|
+
0x000a ExposureCompensation no
|
15059
|
+
0x000b MaxApertureValue no
|
15060
|
+
0x000c MeteringMode no
|
15061
|
+
0x000f FocalLength no
|
15062
|
+
0x0010 XResolution no
|
15063
|
+
0x0011 YResolution no
|
15064
|
+
0x0012 ResolutionUnit no
|
15065
|
+
0x0013 DateTimeOriginal no
|
15066
|
+
0x0014 CreateDate no
|
15067
|
+
0x0016 Duration no
|
15068
|
+
0x0018 FocusMode no
|
15069
|
+
0x001b DigitalZoom no
|
15070
|
+
0x001d ColorMode no
|
15071
|
+
0x001e Sharpness no
|
15072
|
+
0x001f WhiteBalance no
|
15073
|
+
0x0020 NoiseReduction no
|
15074
|
+
|
15075
|
+
=head3 Nikon AVIVers Tags
|
15076
|
+
|
15077
|
+
Tag ID Tag Name Writable
|
15078
|
+
------ -------- --------
|
15079
|
+
0x0001 MakerNoteType no
|
15080
|
+
0x0002 MakerNoteVersion no
|
15081
|
+
|
14884
15082
|
=head3 Nikon NCDT Tags
|
14885
15083
|
|
14886
15084
|
Nikon-specific QuickTime tags found in the NCDT atom of MOV videos from
|
@@ -14966,6 +15164,8 @@ videos from some Nikon cameras.
|
|
14966
15164
|
0x200002c UnknownInfo Nikon UnknownInfo
|
14967
15165
|
0x2000032 UnknownInfo2 Nikon UnknownInfo2
|
14968
15166
|
0x2000039 LocationInfo Nikon LocationInfo
|
15167
|
+
0x200003f WhiteBalanceFineTune no
|
15168
|
+
0x200004e NikonSettings NikonSettings
|
14969
15169
|
0x2000083 LensType no
|
14970
15170
|
0x2000084 Lens no
|
14971
15171
|
0x2000087 FlashMode no
|
@@ -15006,55 +15206,6 @@ This information is found in MOV and QT videos from some Nikon cameras.
|
|
15006
15206
|
175 Software no
|
15007
15207
|
223 ISO no
|
15008
15208
|
|
15009
|
-
=head3 Nikon AVI Tags
|
15010
|
-
|
15011
|
-
Nikon-specific RIFF tags found in AVI videos.
|
15012
|
-
|
15013
|
-
Tag ID Tag Name Writable
|
15014
|
-
------ -------- --------
|
15015
|
-
'nctg' NikonTags Nikon AVITags
|
15016
|
-
'ncth' ThumbnailImage no
|
15017
|
-
'ncvr' NikonVers Nikon AVIVers
|
15018
|
-
'ncvw' PreviewImage no
|
15019
|
-
|
15020
|
-
=head3 Nikon AVITags Tags
|
15021
|
-
|
15022
|
-
These tags and the AVIVer tags below are found in proprietary-format records
|
15023
|
-
of Nikon AVI videos.
|
15024
|
-
|
15025
|
-
Tag ID Tag Name Writable
|
15026
|
-
------ -------- --------
|
15027
|
-
0x0003 Make no
|
15028
|
-
0x0004 Model no
|
15029
|
-
0x0005 Software no
|
15030
|
-
0x0006 Equipment no
|
15031
|
-
0x0007 Orientation no
|
15032
|
-
0x0008 ExposureTime no
|
15033
|
-
0x0009 FNumber no
|
15034
|
-
0x000a ExposureCompensation no
|
15035
|
-
0x000b MaxApertureValue no
|
15036
|
-
0x000c MeteringMode no
|
15037
|
-
0x000f FocalLength no
|
15038
|
-
0x0010 XResolution no
|
15039
|
-
0x0011 YResolution no
|
15040
|
-
0x0012 ResolutionUnit no
|
15041
|
-
0x0013 DateTimeOriginal no
|
15042
|
-
0x0014 CreateDate no
|
15043
|
-
0x0016 Duration no
|
15044
|
-
0x0018 FocusMode no
|
15045
|
-
0x001b DigitalZoom no
|
15046
|
-
0x001d ColorMode no
|
15047
|
-
0x001e Sharpness no
|
15048
|
-
0x001f WhiteBalance no
|
15049
|
-
0x0020 NoiseReduction no
|
15050
|
-
|
15051
|
-
=head3 Nikon AVIVers Tags
|
15052
|
-
|
15053
|
-
Tag ID Tag Name Writable
|
15054
|
-
------ -------- --------
|
15055
|
-
0x0001 MakerNoteType no
|
15056
|
-
0x0002 MakerNoteVersion no
|
15057
|
-
|
15058
15209
|
=head2 NikonCustom Tags
|
15059
15210
|
|
15060
15211
|
Unfortunately, the NikonCustom settings are stored in a binary data block
|
@@ -16641,6 +16792,7 @@ any information found here will be extracted, even if the tag is not listed.
|
|
16641
16792
|
0x0306 AFFineTune int8u
|
16642
16793
|
0x0307 AFFineTuneAdj int16s[3]
|
16643
16794
|
0x0308 FocusBracketStepSize int8u
|
16795
|
+
0x0309 AISubjectTrackingMode int16u
|
16644
16796
|
0x0400 FlashMode int16u
|
16645
16797
|
0x0401 FlashExposureComp rational64s
|
16646
16798
|
0x0403 FlashRemoteControl int16u
|
@@ -16911,110 +17063,18 @@ written by some Olympus voice recorders.
|
|
16911
17063
|
62 Duration no
|
16912
17064
|
798 Comment no
|
16913
17065
|
|
16914
|
-
=head3 Olympus
|
16915
|
-
|
16916
|
-
This information is found in MOV videos from Olympus models such as the
|
16917
|
-
D540Z, D595Z, FE100, FE110, FE115, FE170 and FE200.
|
16918
|
-
|
16919
|
-
Index1 Tag Name Writable
|
16920
|
-
------ -------- --------
|
16921
|
-
0 Make no
|
16922
|
-
24 Model no
|
16923
|
-
38 ExposureUnknown? no
|
16924
|
-
42 FNumber no
|
16925
|
-
50 ExposureCompensation no
|
16926
|
-
72 FocalLength no
|
16927
|
-
|
16928
|
-
=head3 Olympus MOV2 Tags
|
16929
|
-
|
16930
|
-
This information is found in MOV videos from Olympus models such as the
|
16931
|
-
FE120, FE140 and FE190.
|
16932
|
-
|
16933
|
-
Index1 Tag Name Writable
|
16934
|
-
------ -------- --------
|
16935
|
-
0 Make no
|
16936
|
-
24 Model no
|
16937
|
-
54 ExposureTime no
|
16938
|
-
58 FNumber no
|
16939
|
-
66 ExposureCompensation no
|
16940
|
-
88 FocalLength no
|
16941
|
-
193 ISO no
|
16942
|
-
|
16943
|
-
=head3 Olympus MP4 Tags
|
16944
|
-
|
16945
|
-
This information is found in MP4 videos from Olympus models such as the
|
16946
|
-
u7040 and u9010.
|
16947
|
-
|
16948
|
-
Index1 Tag Name Writable
|
16949
|
-
------ -------- --------
|
16950
|
-
0 Make no
|
16951
|
-
24 Model no
|
16952
|
-
40 FNumber no
|
16953
|
-
48 ExposureCompensation no
|
16954
|
-
104 MovableInfo Olympus MovableInfo
|
16955
|
-
114 MovableInfo Olympus MovableInfo
|
16956
|
-
|
16957
|
-
=head3 Olympus MovableInfo Tags
|
16958
|
-
|
16959
|
-
Index1 Tag Name Writable
|
16960
|
-
------ -------- --------
|
16961
|
-
4 ISO no
|
16962
|
-
44 EncoderVersion no
|
16963
|
-
60 DecoderVersion no
|
16964
|
-
131 Thumbnail Olympus Thumbnail
|
16965
|
-
|
16966
|
-
=head3 Olympus Thumbnail Tags
|
16967
|
-
|
16968
|
-
Index4 Tag Name Writable
|
16969
|
-
------ -------- --------
|
16970
|
-
1 ThumbnailWidth no
|
16971
|
-
2 ThumbnailHeight no
|
16972
|
-
3 ThumbnailLength no
|
16973
|
-
4 ThumbnailOffset no
|
16974
|
-
|
16975
|
-
=head3 Olympus MOV3 Tags
|
16976
|
-
|
16977
|
-
QuickTime information found in the TAGS atom of MOV videos from the E-M5.
|
16978
|
-
|
16979
|
-
Tag ID Tag Name Writable
|
16980
|
-
------ -------- --------
|
16981
|
-
'OLYM' OlympusAtom Olympus OLYM2
|
16982
|
-
|
16983
|
-
=head3 Olympus OLYM2 Tags
|
16984
|
-
|
16985
|
-
Tag ID Tag Name Writable
|
16986
|
-
------ -------- --------
|
16987
|
-
'prms' MakerNotes Olympus prms
|
16988
|
-
'scrn' PreviewInfo Olympus scrn2
|
16989
|
-
'thmb' ThumbInfo Olympus thmb2
|
16990
|
-
|
16991
|
-
=head3 Olympus prms Tags
|
17066
|
+
=head3 Olympus AVI Tags
|
16992
17067
|
|
16993
|
-
|
16994
|
-
such as the OM E-M5.
|
17068
|
+
This information is found in Olympus AVI videos.
|
16995
17069
|
|
16996
17070
|
Index1 Tag Name Writable
|
16997
17071
|
------ -------- --------
|
16998
17072
|
18 Make no
|
16999
17073
|
44 Model no
|
17074
|
+
94 FNumber no
|
17000
17075
|
131 DateTime1 no
|
17001
17076
|
157 DateTime2 no
|
17002
|
-
|
17003
|
-
|
17004
|
-
=head3 Olympus scrn2 Tags
|
17005
|
-
|
17006
|
-
Index1 Tag Name Writable
|
17007
|
-
------ -------- --------
|
17008
|
-
2 OlympusPreview Olympus scrn
|
17009
|
-
|
17010
|
-
=head3 Olympus scrn Tags
|
17011
|
-
|
17012
|
-
Information extracted from the "scrn" atom of Olympus MP4 videos.
|
17013
|
-
|
17014
|
-
Index1 Tag Name Writable
|
17015
|
-
------ -------- --------
|
17016
|
-
0 PreviewImageLength no
|
17017
|
-
4 PreviewImage no
|
17077
|
+
297 ThumbInfo Olympus thmb2
|
17018
17078
|
|
17019
17079
|
=head3 Olympus thmb2 Tags
|
17020
17080
|
|
@@ -17025,42 +17085,6 @@ Information extracted from the "scrn" atom of Olympus MP4 videos.
|
|
17025
17085
|
4 ThumbnailLength no
|
17026
17086
|
8 ThumbnailImage no
|
17027
17087
|
|
17028
|
-
=head3 Olympus thmb Tags
|
17029
|
-
|
17030
|
-
Information extracted from the "thmb" atom of Olympus MP4 videos.
|
17031
|
-
|
17032
|
-
Index1 Tag Name Writable
|
17033
|
-
------ -------- --------
|
17034
|
-
0 ThumbnailLength no
|
17035
|
-
4 ThumbnailImage no
|
17036
|
-
|
17037
|
-
=head3 Olympus OLYM Tags
|
17038
|
-
|
17039
|
-
Tags found in the OLYM atom of MP4 videos from the TG-810.
|
17040
|
-
|
17041
|
-
Index1 Tag Name Writable
|
17042
|
-
------ -------- --------
|
17043
|
-
14 Make no
|
17044
|
-
40 Model no
|
17045
|
-
90 FNumber no
|
17046
|
-
127 DateTimeOriginal no
|
17047
|
-
153 DateTime2 no
|
17048
|
-
265 ThumbnailWidth no
|
17049
|
-
267 ThumbnailHeight no
|
17050
|
-
|
17051
|
-
=head3 Olympus AVI Tags
|
17052
|
-
|
17053
|
-
This information is found in Olympus AVI videos.
|
17054
|
-
|
17055
|
-
Index1 Tag Name Writable
|
17056
|
-
------ -------- --------
|
17057
|
-
18 Make no
|
17058
|
-
44 Model no
|
17059
|
-
94 FNumber no
|
17060
|
-
131 DateTime1 no
|
17061
|
-
157 DateTime2 no
|
17062
|
-
297 ThumbInfo Olympus thmb2
|
17063
|
-
|
17064
17088
|
=head3 Olympus WAV Tags
|
17065
17089
|
|
17066
17090
|
This information is found in WAV files from Olympus PCM linear recorders
|
@@ -17091,6 +17115,134 @@ like the LS-5, LS-10, LS-11.
|
|
17091
17115
|
662 Index15 no
|
17092
17116
|
672 Index16 no
|
17093
17117
|
|
17118
|
+
=head3 Olympus MOV1 Tags
|
17119
|
+
|
17120
|
+
This information is found in MOV videos from Olympus models such as the
|
17121
|
+
D540Z, D595Z, FE100, FE110, FE115, FE170 and FE200.
|
17122
|
+
|
17123
|
+
Index1 Tag Name Writable
|
17124
|
+
------ -------- --------
|
17125
|
+
0 Make no
|
17126
|
+
24 Model no
|
17127
|
+
38 ExposureUnknown? no
|
17128
|
+
42 FNumber no
|
17129
|
+
50 ExposureCompensation no
|
17130
|
+
72 FocalLength no
|
17131
|
+
|
17132
|
+
=head3 Olympus MOV2 Tags
|
17133
|
+
|
17134
|
+
This information is found in MOV videos from Olympus models such as the
|
17135
|
+
FE120, FE140 and FE190.
|
17136
|
+
|
17137
|
+
Index1 Tag Name Writable
|
17138
|
+
------ -------- --------
|
17139
|
+
0 Make no
|
17140
|
+
24 Model no
|
17141
|
+
54 ExposureTime no
|
17142
|
+
58 FNumber no
|
17143
|
+
66 ExposureCompensation no
|
17144
|
+
88 FocalLength no
|
17145
|
+
193 ISO no
|
17146
|
+
|
17147
|
+
=head3 Olympus MP4 Tags
|
17148
|
+
|
17149
|
+
This information is found in MP4 videos from Olympus models such as the
|
17150
|
+
u7040 and u9010.
|
17151
|
+
|
17152
|
+
Index1 Tag Name Writable
|
17153
|
+
------ -------- --------
|
17154
|
+
0 Make no
|
17155
|
+
24 Model no
|
17156
|
+
40 FNumber no
|
17157
|
+
48 ExposureCompensation no
|
17158
|
+
104 MovableInfo Olympus MovableInfo
|
17159
|
+
114 MovableInfo Olympus MovableInfo
|
17160
|
+
|
17161
|
+
=head3 Olympus MovableInfo Tags
|
17162
|
+
|
17163
|
+
Index1 Tag Name Writable
|
17164
|
+
------ -------- --------
|
17165
|
+
4 ISO no
|
17166
|
+
44 EncoderVersion no
|
17167
|
+
60 DecoderVersion no
|
17168
|
+
131 Thumbnail Olympus Thumbnail
|
17169
|
+
|
17170
|
+
=head3 Olympus Thumbnail Tags
|
17171
|
+
|
17172
|
+
Index4 Tag Name Writable
|
17173
|
+
------ -------- --------
|
17174
|
+
1 ThumbnailWidth no
|
17175
|
+
2 ThumbnailHeight no
|
17176
|
+
3 ThumbnailLength no
|
17177
|
+
4 ThumbnailOffset no
|
17178
|
+
|
17179
|
+
=head3 Olympus MOV3 Tags
|
17180
|
+
|
17181
|
+
QuickTime information found in the TAGS atom of MOV videos from the E-M5.
|
17182
|
+
|
17183
|
+
Tag ID Tag Name Writable
|
17184
|
+
------ -------- --------
|
17185
|
+
'OLYM' OlympusAtom Olympus OLYM2
|
17186
|
+
|
17187
|
+
=head3 Olympus OLYM2 Tags
|
17188
|
+
|
17189
|
+
Tag ID Tag Name Writable
|
17190
|
+
------ -------- --------
|
17191
|
+
'prms' MakerNotes Olympus prms
|
17192
|
+
'scrn' PreviewInfo Olympus scrn2
|
17193
|
+
'thmb' ThumbInfo Olympus thmb2
|
17194
|
+
|
17195
|
+
=head3 Olympus prms Tags
|
17196
|
+
|
17197
|
+
Information extracted from the "prms" atom in MOV videos from Olympus models
|
17198
|
+
such as the OM E-M5.
|
17199
|
+
|
17200
|
+
Index1 Tag Name Writable
|
17201
|
+
------ -------- --------
|
17202
|
+
18 Make no
|
17203
|
+
44 Model no
|
17204
|
+
131 DateTime1 no
|
17205
|
+
157 DateTime2 no
|
17206
|
+
383 LensModel no
|
17207
|
+
|
17208
|
+
=head3 Olympus scrn2 Tags
|
17209
|
+
|
17210
|
+
Index1 Tag Name Writable
|
17211
|
+
------ -------- --------
|
17212
|
+
2 OlympusPreview Olympus scrn
|
17213
|
+
|
17214
|
+
=head3 Olympus scrn Tags
|
17215
|
+
|
17216
|
+
Information extracted from the "scrn" atom of Olympus MP4 videos.
|
17217
|
+
|
17218
|
+
Index1 Tag Name Writable
|
17219
|
+
------ -------- --------
|
17220
|
+
0 PreviewImageLength no
|
17221
|
+
4 PreviewImage no
|
17222
|
+
|
17223
|
+
=head3 Olympus thmb Tags
|
17224
|
+
|
17225
|
+
Information extracted from the "thmb" atom of Olympus MP4 videos.
|
17226
|
+
|
17227
|
+
Index1 Tag Name Writable
|
17228
|
+
------ -------- --------
|
17229
|
+
0 ThumbnailLength no
|
17230
|
+
4 ThumbnailImage no
|
17231
|
+
|
17232
|
+
=head3 Olympus OLYM Tags
|
17233
|
+
|
17234
|
+
Tags found in the OLYM atom of MP4 videos from the TG-810.
|
17235
|
+
|
17236
|
+
Index1 Tag Name Writable
|
17237
|
+
------ -------- --------
|
17238
|
+
14 Make no
|
17239
|
+
40 Model no
|
17240
|
+
90 FNumber no
|
17241
|
+
127 DateTimeOriginal no
|
17242
|
+
153 DateTime2 no
|
17243
|
+
265 ThumbnailWidth no
|
17244
|
+
267 ThumbnailHeight no
|
17245
|
+
|
17094
17246
|
=head2 Panasonic Tags
|
17095
17247
|
|
17096
17248
|
These tags are used in Panasonic/Leica cameras.
|
@@ -17211,6 +17363,8 @@ These tags are used in Panasonic/Leica cameras.
|
|
17211
17363
|
0x00d2 MonochromeGrainEffect int16u
|
17212
17364
|
0x00d6 NoiseReductionStrength rational64s
|
17213
17365
|
0x00e4 LensTypeModel int16u
|
17366
|
+
0x00e8 MinimumISO int32u
|
17367
|
+
0x00ee DynamicRangeBoost int16u
|
17214
17368
|
0x0e00 PrintIM PrintIM
|
17215
17369
|
0x2003 TimeInfo Panasonic TimeInfo
|
17216
17370
|
0x8000 MakerNoteVersion undef
|
@@ -17432,29 +17586,30 @@ iPalm.
|
|
17432
17586
|
Tags extracted from the PANA and LEIC user data found in MP4 videos from
|
17433
17587
|
various Panasonic and Leica models.
|
17434
17588
|
|
17435
|
-
Index1
|
17436
|
-
------
|
17437
|
-
|
17438
|
-
|
17439
|
-
|
17440
|
-
|
17441
|
-
|
17442
|
-
|
17443
|
-
|
17444
|
-
|
17445
|
-
|
17446
|
-
|
17447
|
-
|
17448
|
-
|
17449
|
-
|
17450
|
-
|
17451
|
-
|
17452
|
-
|
17453
|
-
|
17454
|
-
|
17455
|
-
|
17456
|
-
|
17457
|
-
|
17589
|
+
Index1 Tag Name Writable
|
17590
|
+
------ -------- --------
|
17591
|
+
0 Make no
|
17592
|
+
4 Model no
|
17593
|
+
12 Model no
|
17594
|
+
16 JPEG-likeData EXIF
|
17595
|
+
22 Model no
|
17596
|
+
52 Version1 no
|
17597
|
+
62 Version2 no
|
17598
|
+
80 MakerNoteLeica5 Panasonic Leica5
|
17599
|
+
88 ThumbnailWidth no
|
17600
|
+
90 ThumbnailHeight no
|
17601
|
+
92 ThumbnailImage no
|
17602
|
+
1334 ThumbnailWidth no
|
17603
|
+
1338 ThumbnailHeight no
|
17604
|
+
1342 ThumbnailLength no
|
17605
|
+
1350 ThumbnailImage no
|
17606
|
+
1358 ThumbnailWidth no
|
17607
|
+
1362 ThumbnailHeight no
|
17608
|
+
1366 ThumbnailLength no
|
17609
|
+
1374 ThumbnailImage no
|
17610
|
+
16488 ExifData EXIF
|
17611
|
+
16512 ExifData EXIF
|
17612
|
+
0x00200080 ExifData EXIF
|
17458
17613
|
|
17459
17614
|
=head2 Pentax Tags
|
17460
17615
|
|
@@ -18211,6 +18366,39 @@ Tags extracted from the maker notes of AVI videos from the Optio S1.
|
|
18211
18366
|
------ -------- --------
|
18212
18367
|
0x0000 MakerNoteVersion no
|
18213
18368
|
|
18369
|
+
=head3 Pentax Junk Tags
|
18370
|
+
|
18371
|
+
Tags found in the JUNK chunk of AVI videos from the RS1000.
|
18372
|
+
|
18373
|
+
Index1 Tag Name Writable
|
18374
|
+
------ -------- --------
|
18375
|
+
12 Model no
|
18376
|
+
|
18377
|
+
=head3 Pentax Junk2 Tags
|
18378
|
+
|
18379
|
+
This information is found in AVI videos from the Optio RZ18.
|
18380
|
+
|
18381
|
+
Index1 Tag Name Writable
|
18382
|
+
------ -------- --------
|
18383
|
+
18 Make no
|
18384
|
+
44 Model no
|
18385
|
+
94 FNumber no
|
18386
|
+
131 DateTime1 no
|
18387
|
+
157 DateTime2 no
|
18388
|
+
299 ThumbnailWidth no
|
18389
|
+
301 ThumbnailHeight no
|
18390
|
+
303 ThumbnailLength no
|
18391
|
+
307 ThumbnailImage no
|
18392
|
+
|
18393
|
+
=head3 Pentax AVI Tags
|
18394
|
+
|
18395
|
+
Pentax-specific RIFF tags found in AVI videos.
|
18396
|
+
|
18397
|
+
Tag ID Tag Name Writable
|
18398
|
+
------ -------- --------
|
18399
|
+
'hymn' MakerNotes Pentax
|
18400
|
+
'mknt' MakerNotes Pentax
|
18401
|
+
|
18214
18402
|
=head3 Pentax PENT Tags
|
18215
18403
|
|
18216
18404
|
Tags found in the PENT atom of MOV videos from the Optio WG-2 GPS.
|
@@ -18265,39 +18453,6 @@ This information is found in MOV videos from cameras such as the Optio WP.
|
|
18265
18453
|
72 FocalLength no
|
18266
18454
|
175 ISO no
|
18267
18455
|
|
18268
|
-
=head3 Pentax Junk Tags
|
18269
|
-
|
18270
|
-
Tags found in the JUNK chunk of AVI videos from the RS1000.
|
18271
|
-
|
18272
|
-
Index1 Tag Name Writable
|
18273
|
-
------ -------- --------
|
18274
|
-
12 Model no
|
18275
|
-
|
18276
|
-
=head3 Pentax Junk2 Tags
|
18277
|
-
|
18278
|
-
This information is found in AVI videos from the Optio RZ18.
|
18279
|
-
|
18280
|
-
Index1 Tag Name Writable
|
18281
|
-
------ -------- --------
|
18282
|
-
18 Make no
|
18283
|
-
44 Model no
|
18284
|
-
94 FNumber no
|
18285
|
-
131 DateTime1 no
|
18286
|
-
157 DateTime2 no
|
18287
|
-
299 ThumbnailWidth no
|
18288
|
-
301 ThumbnailHeight no
|
18289
|
-
303 ThumbnailLength no
|
18290
|
-
307 ThumbnailImage no
|
18291
|
-
|
18292
|
-
=head3 Pentax AVI Tags
|
18293
|
-
|
18294
|
-
Pentax-specific RIFF tags found in AVI videos.
|
18295
|
-
|
18296
|
-
Tag ID Tag Name Writable
|
18297
|
-
------ -------- --------
|
18298
|
-
'hymn' MakerNotes Pentax
|
18299
|
-
'mknt' MakerNotes Pentax
|
18300
|
-
|
18301
18456
|
=head2 PhaseOne Tags
|
18302
18457
|
|
18303
18458
|
These tags are extracted from the maker notes of Phase One images.
|
@@ -20303,6 +20458,7 @@ WX350/WX500, ILCE-1/7/7C/7R/7S/7M2/7M3/7RM2/7RM3/7RM4/7SM2/7SM3/9/9M2/5000/
|
|
20303
20458
|
|
20304
20459
|
Index1 Tag Name Writable
|
20305
20460
|
------ -------- --------
|
20461
|
+
1102 ISOInfo Sony ISOInfo
|
20306
20462
|
1176 ISOInfo Sony ISOInfo
|
20307
20463
|
1181 ISOInfo Sony ISOInfo
|
20308
20464
|
1185 ISOInfo Sony ISOInfo
|
@@ -20635,7 +20791,7 @@ E-mount models.
|
|
20635
20791
|
|
20636
20792
|
=head3 Sony Tag9416 Tags
|
20637
20793
|
|
20638
|
-
Valid for the ILCE-1/7M4/7SM3, ILME-FX3.
|
20794
|
+
Valid for the ILCE-1/7M4/7RM5/7SM3, ILME-FX3.
|
20639
20795
|
|
20640
20796
|
Index1 Tag Name Writable
|
20641
20797
|
------ -------- --------
|
@@ -20660,8 +20816,10 @@ Valid for the ILCE-1/7M4/7SM3, ILME-FX3.
|
|
20660
20816
|
117 MaxFocalLength no
|
20661
20817
|
2191 VignettingCorrParams no
|
20662
20818
|
2193 VignettingCorrParams no
|
20819
|
+
2203 VignettingCorrParams no
|
20663
20820
|
2324 ChromaticAberrationCorrParams no
|
20664
20821
|
2326 ChromaticAberrationCorrParams no
|
20822
|
+
2373 ChromaticAberrationCorrParams no
|
20665
20823
|
|
20666
20824
|
=head3 Sony PIC Tags
|
20667
20825
|
|
@@ -20760,39 +20918,39 @@ Tags in the encrypted SR2SubIFD
|
|
20760
20918
|
|
20761
20919
|
Tag ID Tag Name Writable
|
20762
20920
|
------ -------- --------
|
20763
|
-
0x7300 BlackLevel
|
20764
|
-
0x7302 WB_GRBGLevelsAuto
|
20765
|
-
0x7303 WB_GRBGLevels
|
20766
|
-
0x7310 BlackLevel
|
20767
|
-
0x7312 WB_RGGBLevelsAuto
|
20768
|
-
0x7313 WB_RGGBLevels
|
20769
|
-
0x7480 WB_RGBLevelsDaylight
|
20770
|
-
0x7481 WB_RGBLevelsCloudy
|
20771
|
-
0x7482 WB_RGBLevelsTungsten
|
20772
|
-
0x7483 WB_RGBLevelsFlash
|
20773
|
-
0x7484 WB_RGBLevels4500K
|
20774
|
-
0x7486 WB_RGBLevelsFluorescent
|
20921
|
+
0x7300 BlackLevel int16u[4]!
|
20922
|
+
0x7302 WB_GRBGLevelsAuto int16s[4]!
|
20923
|
+
0x7303 WB_GRBGLevels int16s[4]!
|
20924
|
+
0x7310 BlackLevel int16u[4]!
|
20925
|
+
0x7312 WB_RGGBLevelsAuto int16s[4]!
|
20926
|
+
0x7313 WB_RGGBLevels int16s[4]!
|
20927
|
+
0x7480 WB_RGBLevelsDaylight int16s[4]!
|
20928
|
+
0x7481 WB_RGBLevelsCloudy int16s[4]!
|
20929
|
+
0x7482 WB_RGBLevelsTungsten int16s[4]!
|
20930
|
+
0x7483 WB_RGBLevelsFlash int16s[4]!
|
20931
|
+
0x7484 WB_RGBLevels4500K int16s[4]!
|
20932
|
+
0x7486 WB_RGBLevelsFluorescent int16s[4]!
|
20775
20933
|
0x74a0 MaxApertureAtMaxFocal no
|
20776
20934
|
0x74a1 MaxApertureAtMinFocal no
|
20777
20935
|
0x74a2 MaxFocalLength no
|
20778
20936
|
0x74a3 MinFocalLength no
|
20779
20937
|
0x74c0 SR2DataIFD Sony SR2DataIFD
|
20780
20938
|
0x7800 ColorMatrix no
|
20781
|
-
0x7820 WB_RGBLevelsDaylight
|
20782
|
-
0x7821 WB_RGBLevelsCloudy
|
20783
|
-
0x7822 WB_RGBLevelsTungsten
|
20784
|
-
0x7823 WB_RGBLevelsFlash
|
20785
|
-
0x7824 WB_RGBLevels4500K
|
20786
|
-
0x7825 WB_RGBLevelsShade
|
20787
|
-
0x7826 WB_RGBLevelsFluorescent
|
20788
|
-
0x7827 WB_RGBLevelsFluorescentP1
|
20789
|
-
0x7828 WB_RGBLevelsFluorescentP2
|
20790
|
-
0x7829 WB_RGBLevelsFluorescentM1
|
20791
|
-
0x782a WB_RGBLevels8500K
|
20792
|
-
0x782b WB_RGBLevels6000K
|
20793
|
-
0x782c WB_RGBLevels3200K
|
20794
|
-
0x782d WB_RGBLevels2500K
|
20795
|
-
0x787f WhiteLevel
|
20939
|
+
0x7820 WB_RGBLevelsDaylight int16s[3]!
|
20940
|
+
0x7821 WB_RGBLevelsCloudy int16s[3]!
|
20941
|
+
0x7822 WB_RGBLevelsTungsten int16s[3]!
|
20942
|
+
0x7823 WB_RGBLevelsFlash int16s[3]!
|
20943
|
+
0x7824 WB_RGBLevels4500K int16s[3]!
|
20944
|
+
0x7825 WB_RGBLevelsShade int16s[3]!
|
20945
|
+
0x7826 WB_RGBLevelsFluorescent int16s[3]!
|
20946
|
+
0x7827 WB_RGBLevelsFluorescentP1 int16s[3]!
|
20947
|
+
0x7828 WB_RGBLevelsFluorescentP2 int16s[3]!
|
20948
|
+
0x7829 WB_RGBLevelsFluorescentM1 int16s[3]!
|
20949
|
+
0x782a WB_RGBLevels8500K int16s[3]!
|
20950
|
+
0x782b WB_RGBLevels6000K int16s[3]!
|
20951
|
+
0x782c WB_RGBLevels3200K int16s[3]!
|
20952
|
+
0x782d WB_RGBLevels2500K int16s[3]!
|
20953
|
+
0x787f WhiteLevel int16u[3]!
|
20796
20954
|
0x797d VignettingCorrParams no
|
20797
20955
|
0x7980 ChromaticAberrationCorrParams no
|
20798
20956
|
0x7982 DistortionCorrParams no
|
@@ -20955,6 +21113,7 @@ still proprietary) Adobe format.
|
|
20955
21113
|
MakerNoteCanon Canon
|
20956
21114
|
MakerNoteCasio Casio
|
20957
21115
|
MakerNoteCasio2 Casio Type2
|
21116
|
+
MakerNoteDJIInfo DJI Info
|
20958
21117
|
MakerNoteDJI DJI
|
20959
21118
|
MakerNoteFLIR FLIR
|
20960
21119
|
MakerNoteFujiFilm FujiFilm
|
@@ -21626,28 +21785,30 @@ unrecognized Windows Compound Binary file as a FlashPix (FPX) file. See
|
|
21626
21785
|
L<http://graphcomp.com/info/specs/livepicture/fpx.pdf> for the FlashPix
|
21627
21786
|
specification.
|
21628
21787
|
|
21629
|
-
Tag ID
|
21630
|
-
------
|
21631
|
-
"\x01CompObj"
|
21632
|
-
"\x05Audio Info"
|
21633
|
-
"\x05Data Object"
|
21788
|
+
Tag ID Tag Name Writable
|
21789
|
+
------ -------- --------
|
21790
|
+
"\x01CompObj" CompObj FlashPix CompObj
|
21791
|
+
"\x05Audio Info" AudioInfo FlashPix AudioInfo
|
21792
|
+
"\x05Data Object" DataObject FlashPix DataObject
|
21634
21793
|
"\x05DocumentSummaryInformation" DocumentInfo FlashPix DocumentInfo
|
21635
|
-
"\x05Extension List"
|
21636
|
-
"\x05Global Info"
|
21637
|
-
"\x05Image Contents"
|
21638
|
-
"\x05Image Info"
|
21639
|
-
"\x05Operation"
|
21640
|
-
"\x05Screen Nail"
|
21641
|
-
"\x05SummaryInformation"
|
21642
|
-
"\x05Transform"
|
21643
|
-
'Audio Stream'
|
21644
|
-
'
|
21645
|
-
'
|
21646
|
-
'
|
21647
|
-
'
|
21648
|
-
'
|
21649
|
-
'
|
21650
|
-
'
|
21794
|
+
"\x05Extension List" Extensions FlashPix Extensions
|
21795
|
+
"\x05Global Info" GlobalInfo FlashPix GlobalInfo
|
21796
|
+
"\x05Image Contents" Image FlashPix Image
|
21797
|
+
"\x05Image Info" ImageInfo FlashPix ImageInfo
|
21798
|
+
"\x05Operation" Operation FlashPix Operation
|
21799
|
+
"\x05Screen Nail" ScreenNail no
|
21800
|
+
"\x05SummaryInformation" SummaryInfo FlashPix SummaryInfo
|
21801
|
+
"\x05Transform" Transform FlashPix Transform
|
21802
|
+
'Audio Stream' AudioStream no
|
21803
|
+
'BasicFileInfo' BasicFileInfo no
|
21804
|
+
'Contents' Contents XMP
|
21805
|
+
'Current User' CurrentUser no
|
21806
|
+
'ICC Profile 0001' ICC_Profile ICC_Profile
|
21807
|
+
'IeImg' EmbeddedImage no
|
21808
|
+
'Preview' PreviewImage no
|
21809
|
+
'Property' PreviewInfo FlashPix PreviewInfo
|
21810
|
+
'Subimage 0000 Header' SubimageHdr FlashPix SubimageHdr
|
21811
|
+
'WordDocument' WordDocument FlashPix WordDocument
|
21651
21812
|
|
21652
21813
|
=head3 FlashPix CompObj Tags
|
21653
21814
|
|
@@ -23740,6 +23901,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23740
23901
|
DCVerbatimLocality string_
|
23741
23902
|
DCVerbatimLongitude string_
|
23742
23903
|
DCVerbatimSRS string_
|
23904
|
+
DCVerticalDatum string_
|
23743
23905
|
DCWaterBody string_
|
23744
23906
|
DCEvent DarwinCore Event Struct
|
23745
23907
|
EventDay integer_
|
@@ -23812,7 +23974,9 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23812
23974
|
IdentificationRemarks string_
|
23813
23975
|
IdentificationVerificationStatus string_
|
23814
23976
|
IdentifiedBy string_
|
23977
|
+
IdentifiedByID string_
|
23815
23978
|
TypeStatus string_
|
23979
|
+
VerbatimIdentification string_
|
23816
23980
|
LivingSpecimen DarwinCore MaterialSample Struct
|
23817
23981
|
LivingSpecimenMaterialSampleID string_
|
23818
23982
|
MachineObservation DarwinCore Event Struct
|
@@ -23856,8 +24020,10 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23856
24020
|
OccurrenceAssociatedTaxa string_
|
23857
24021
|
OccurrenceBehavior string_
|
23858
24022
|
OccurrenceCatalogNumber string_
|
24023
|
+
OccurrenceDegreeOfEstablishment string_
|
23859
24024
|
OccurrenceDisposition string_
|
23860
24025
|
OccurrenceEstablishmentMeans string_
|
24026
|
+
OccurrenceGeoreferenceVerificationStatus string_
|
23861
24027
|
OccurrenceIndividualCount string_
|
23862
24028
|
OccurrenceIndividualID string_
|
23863
24029
|
OccurrenceLifeStage string_
|
@@ -23868,9 +24034,11 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23868
24034
|
OccurrenceOrganismQuantity string_
|
23869
24035
|
OccurrenceOrganismQuantityType string_
|
23870
24036
|
OccurrenceOtherCatalogNumbers string_
|
24037
|
+
OccurrencePathway string_
|
23871
24038
|
OccurrencePreparations string_
|
23872
24039
|
OccurrencePreviousIdentifications string_
|
23873
24040
|
OccurrenceRecordedBy string_
|
24041
|
+
OccurrenceRecordedByID string_
|
23874
24042
|
OccurrenceRecordNumber string_
|
23875
24043
|
OccurrenceReproductiveCondition string_
|
23876
24044
|
OccurrenceSex string_
|
@@ -23901,6 +24069,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23901
24069
|
RelationshipAccordingTo string_
|
23902
24070
|
RelationshipEstablishedDate date_
|
23903
24071
|
RelationshipOfResource string_
|
24072
|
+
RelationshipOfResourceID string_
|
23904
24073
|
RelationshipRemarks string_
|
23905
24074
|
ResourceID string_
|
23906
24075
|
ResourceRelationshipID string_
|
@@ -23908,6 +24077,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23908
24077
|
TaxonAcceptedNameUsage string_
|
23909
24078
|
TaxonAcceptedNameUsageID string_
|
23910
24079
|
TaxonClass string_
|
24080
|
+
TaxonCultivarEpithet string_
|
23911
24081
|
TaxonFamily string_
|
23912
24082
|
TaxonGenus string_
|
23913
24083
|
TaxonHigherClassification string_
|
@@ -23986,6 +24156,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
23986
24156
|
VerbatimLocality string
|
23987
24157
|
VerbatimLongitude string
|
23988
24158
|
VerbatimSRS string
|
24159
|
+
VerticalDatum string
|
23989
24160
|
WaterBody string
|
23990
24161
|
|
23991
24162
|
=head3 DarwinCore Event Struct
|
@@ -24053,7 +24224,9 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
24053
24224
|
IdentificationRemarks string
|
24054
24225
|
IdentificationVerificationStatus string
|
24055
24226
|
IdentifiedBy string
|
24227
|
+
IdentifiedByID string
|
24056
24228
|
TypeStatus string
|
24229
|
+
VerbatimIdentification string
|
24057
24230
|
|
24058
24231
|
=head3 DarwinCore MeasurementOrFact Struct
|
24059
24232
|
|
@@ -24080,8 +24253,10 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
24080
24253
|
AssociatedTaxa string
|
24081
24254
|
Behavior string
|
24082
24255
|
CatalogNumber string
|
24256
|
+
DegreeOfEstablishment string
|
24083
24257
|
Disposition string
|
24084
24258
|
EstablishmentMeans string
|
24259
|
+
GeoreferenceVerificationStatus string
|
24085
24260
|
IndividualCount string
|
24086
24261
|
IndividualID string
|
24087
24262
|
LifeStage string
|
@@ -24092,10 +24267,12 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
24092
24267
|
OrganismQuantity string
|
24093
24268
|
OrganismQuantityType string
|
24094
24269
|
OtherCatalogNumbers string
|
24270
|
+
Pathway string
|
24095
24271
|
Preparations string
|
24096
24272
|
PreviousIdentifications string
|
24097
24273
|
RecordNumber string
|
24098
24274
|
RecordedBy string
|
24275
|
+
RecordedByID string
|
24099
24276
|
ReproductiveCondition string
|
24100
24277
|
Sex string
|
24101
24278
|
|
@@ -24135,6 +24312,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
24135
24312
|
RelationshipAccordingTo string
|
24136
24313
|
RelationshipEstablishedDate date
|
24137
24314
|
RelationshipOfResource string
|
24315
|
+
RelationshipOfResourceID string
|
24138
24316
|
RelationshipRemarks string
|
24139
24317
|
ResourceID string
|
24140
24318
|
ResourceRelationshipID string
|
@@ -24146,6 +24324,7 @@ These tags belong to the ExifTool XMP-dwc family 1 group.
|
|
24146
24324
|
AcceptedNameUsage string
|
24147
24325
|
AcceptedNameUsageID string
|
24148
24326
|
Class string
|
24327
|
+
CultivarEpithet string
|
24149
24328
|
Family string
|
24150
24329
|
Genus string
|
24151
24330
|
HigherClassification string
|
@@ -25109,6 +25288,7 @@ Information related to geographic location.
|
|
25109
25288
|
'Components' ComponentsConfiguration string
|
25110
25289
|
'Compression' CompressionRatio rational32u
|
25111
25290
|
'ImageSize' ImageSize int16u[n]
|
25291
|
+
'OriginalImageSize' OriginalImageSize int16u[n]
|
25112
25292
|
'Resolution' Resolution rational64u[n]
|
25113
25293
|
'data' FullSizeImage undef
|
25114
25294
|
|
@@ -25318,6 +25498,29 @@ Graphics) images. See L<http://bellard.org/bpg/> for the specification.
|
|
25318
25498
|
0x0004 ThumbnailBPG no
|
25319
25499
|
0x0005 AnimationControl? no
|
25320
25500
|
|
25501
|
+
=head2 ICO Tags
|
25502
|
+
|
25503
|
+
Information extracted from Windows ICO (icon) and CUR (cursor) files.
|
25504
|
+
|
25505
|
+
Index1 Tag Name Writable
|
25506
|
+
------ -------- --------
|
25507
|
+
2 ImageType no
|
25508
|
+
4 ImageCount no
|
25509
|
+
6 IconDir ICO IconDir
|
25510
|
+
|
25511
|
+
=head3 ICO IconDir Tags
|
25512
|
+
|
25513
|
+
Index1 Tag Name Writable
|
25514
|
+
------ -------- --------
|
25515
|
+
0 ImageWidth no
|
25516
|
+
1 ImageHeight no
|
25517
|
+
2 NumColors no
|
25518
|
+
4 ColorPlanes no
|
25519
|
+
HotspotX no
|
25520
|
+
6 BitsPerPixel no
|
25521
|
+
HotspotY no
|
25522
|
+
8 ImageLength no
|
25523
|
+
|
25321
25524
|
=head2 PICT Tags
|
25322
25525
|
|
25323
25526
|
The PICT format contains no true meta information, except for the possible
|
@@ -26755,9 +26958,9 @@ ExifTool extracts ID3 and Lyrics3 information from MP3, MPEG, WAV, AIFF,
|
|
26755
26958
|
OGG, FLAC, APE, MPC and RealAudio files. ID3v2 tags which support multiple
|
26756
26959
|
languages (eg. Comment and Lyrics) are extracted by specifying the tag name,
|
26757
26960
|
followed by a dash ('-'), then a 3-character ISO 639-2 language code (eg.
|
26758
|
-
"Comment-spa"). See L<
|
26759
|
-
|
26760
|
-
|
26961
|
+
"Comment-spa"). See L<https://id3.org/> for the official ID3 specification
|
26962
|
+
and L<http://www.loc.gov/standards/iso639-2/php/code_list.php> for a list of
|
26963
|
+
ISO 639-2 language codes.
|
26761
26964
|
|
26762
26965
|
Tag Name Writable
|
26763
26966
|
-------- --------
|
@@ -27120,722 +27323,220 @@ This information is found in iTunes Cover Flow data files.
|
|
27120
27323
|
7 ImageWidth no
|
27121
27324
|
8 ImageHeight no
|
27122
27325
|
|
27123
|
-
=head2
|
27326
|
+
=head2 QuickTime Tags
|
27124
27327
|
|
27125
|
-
|
27126
|
-
|
27328
|
+
The QuickTime format is used for many different types of audio, video and
|
27329
|
+
image files (most notably, MOV/MP4 videos and HEIC/CR3 images). ExifTool
|
27330
|
+
extracts standard meta information and a variety of audio, video and image
|
27331
|
+
parameters, as well as proprietary information written by many camera
|
27332
|
+
models. Tags with a question mark after their name are not extracted unless
|
27333
|
+
the Unknown option is set.
|
27127
27334
|
|
27128
|
-
|
27129
|
-
|
27130
|
-
|
27131
|
-
|
27132
|
-
|
27133
|
-
|
27134
|
-
|
27135
|
-
|
27136
|
-
|
27335
|
+
When writing, ExifTool creates both QuickTime and XMP tags by default, but
|
27336
|
+
the group may be specified to write one or the other separately. If no
|
27337
|
+
location is specified, newly created QuickTime tags are added in the
|
27338
|
+
L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> location if
|
27339
|
+
possible, otherwise in
|
27340
|
+
L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags>, and
|
27341
|
+
finally in L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags>,
|
27342
|
+
but this order may be changed by setting the PREFERRED level of the
|
27343
|
+
appropriate table in the config file (see
|
27344
|
+
example.config in the full distribution for an
|
27345
|
+
example). Note that some tags with the same name but different ID's may
|
27346
|
+
exist in the same location, but the family 7 group names may be used to
|
27347
|
+
differentiate these. ExifTool currently writes only top-level metadata in
|
27348
|
+
QuickTime-based files; it extracts other track-specific and timed metadata,
|
27349
|
+
but can not yet edit tags in these locations (with the exception of
|
27350
|
+
track-level date/time tags).
|
27137
27351
|
|
27138
|
-
|
27352
|
+
Alternate language tags may be accessed for
|
27353
|
+
L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
|
27354
|
+
L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags> tags by adding
|
27355
|
+
a 3-character ISO 639-2 language code and an optional ISO 3166-1 alpha 2
|
27356
|
+
country code to the tag name (eg. "ItemList:Artist-deu" or
|
27357
|
+
"ItemList::Artist-deu-DE"). Most
|
27358
|
+
L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags support a
|
27359
|
+
language code, but without a country code. If no language code is specified
|
27360
|
+
when writing, the default language is written and alternate languages for
|
27361
|
+
the tag are deleted. Use the "und" language code to write the default
|
27362
|
+
language without deleting alternate languages. Note that "eng" is treated
|
27363
|
+
as a default language when reading, but not when writing.
|
27139
27364
|
|
27140
|
-
|
27365
|
+
According to the specification, integer-format QuickTime date/time tags
|
27366
|
+
should be stored as UTC. Unfortunately, digital cameras often store local
|
27367
|
+
time values instead (presumably because they don't know the time zone). For
|
27368
|
+
this reason, by default ExifTool does not assume a time zone for these
|
27369
|
+
values. However, if the API QuickTimeUTC option is set, then ExifTool will
|
27370
|
+
assume these values are properly stored as UTC, and will convert them to
|
27371
|
+
local time when extracting.
|
27372
|
+
|
27373
|
+
When writing string-based date/time tags, the system time zone is added if
|
27374
|
+
the PrintConv option is enabled and no time zone is specified. This is
|
27375
|
+
because Apple software may display crazy values if the time zone is missing
|
27376
|
+
for some tags.
|
27377
|
+
|
27378
|
+
By default ExifTool will remove null padding from some QuickTime containers
|
27379
|
+
in Canon CR3 files when writing, but the
|
27380
|
+
QuickTimePad option may be used to preserve
|
27381
|
+
the original size by padding with nulls if necessary.
|
27382
|
+
|
27383
|
+
See
|
27384
|
+
L<https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/>
|
27385
|
+
for the official specification.
|
27141
27386
|
|
27142
27387
|
Tag ID Tag Name Writable
|
27143
27388
|
------ -------- --------
|
27144
|
-
'
|
27145
|
-
'
|
27146
|
-
'
|
27147
|
-
'
|
27148
|
-
'
|
27149
|
-
'
|
27150
|
-
'
|
27151
|
-
|
27152
|
-
|
27389
|
+
'GPS ' GPSDataList2? no
|
27390
|
+
'IDIT' DateTimeOriginal string
|
27391
|
+
'PICT' PreviewPICT no
|
27392
|
+
'_htc' HTCInfo QuickTime HTCInfo
|
27393
|
+
'ardt' ARDroneFile no
|
27394
|
+
'frea' Kodak_frea Kodak frea
|
27395
|
+
'free' KodakFree Kodak Free
|
27396
|
+
Pittasoft QuickTime Pittasoft
|
27397
|
+
ThumbnailImage no
|
27398
|
+
Free? no
|
27399
|
+
'ftyp' FileType QuickTime FileType
|
27400
|
+
'gps0' GPSTrack QuickTime Stream
|
27401
|
+
'gsen' GSensor QuickTime Stream
|
27402
|
+
'junk' Junk? no
|
27403
|
+
'mdat' MediaData? no
|
27404
|
+
'mdat-offset' MediaDataOffset no
|
27405
|
+
'mdat-size' MediaDataSize no
|
27406
|
+
'meco' OtherMeta QuickTime OtherMeta
|
27407
|
+
'meta' Meta QuickTime Meta
|
27408
|
+
'moof' MovieFragment QuickTime MovieFragment
|
27409
|
+
'moov' Movie QuickTime Movie
|
27410
|
+
'pict' PreviewPICT no
|
27411
|
+
'pnot' Preview QuickTime Preview
|
27412
|
+
'prrt' ARDroneTelemetry no
|
27413
|
+
'sefd' SamsungTrailer Samsung Trailer
|
27414
|
+
'skip' CanonSkip Canon Skip
|
27415
|
+
PreviewImage no
|
27416
|
+
SkipInfo -
|
27417
|
+
Skip? no
|
27418
|
+
'thm ' ThumbnailImage no
|
27419
|
+
'thum' ThumbnailImage no
|
27420
|
+
'udat' GPSLog no
|
27421
|
+
'udta' UserData FLIR UserData
|
27422
|
+
'uuid' XMP XMP
|
27423
|
+
UUID-PROF QuickTime Profile
|
27424
|
+
UUID-Flip QuickTime Flip
|
27425
|
+
UUID-Canon2 Canon uuid2
|
27426
|
+
SensorData QuickTime Tags360Fly
|
27427
|
+
SensorData no
|
27428
|
+
PreviewImage no
|
27429
|
+
UUID-Unknown? no
|
27430
|
+
'wide' Wide? no
|
27153
27431
|
|
27154
|
-
=head3
|
27432
|
+
=head3 QuickTime Stream Tags
|
27155
27433
|
|
27156
|
-
|
27157
|
-
|
27158
|
-
|
27159
|
-
|
27160
|
-
2 PictureDescription no
|
27161
|
-
3 PictureWidth no
|
27162
|
-
4 PictureHeight no
|
27163
|
-
5 PictureBitsPerPixel no
|
27164
|
-
6 PictureIndexedColors no
|
27165
|
-
7 PictureLength no
|
27166
|
-
8 Picture no
|
27434
|
+
The tags below are extracted from timed metadata in QuickTime and other
|
27435
|
+
formats of video files when the ExtractEmbedded option is used. Although
|
27436
|
+
most of these tags are combined into the single table below, ExifTool
|
27437
|
+
currently reads 62 different formats of timed GPS metadata from video files.
|
27167
27438
|
|
27168
|
-
|
27439
|
+
Tag Name Writable
|
27440
|
+
-------- --------
|
27441
|
+
Accelerometer no
|
27442
|
+
AccelerometerData no
|
27443
|
+
AngularVelocity no
|
27444
|
+
CTMD Canon CTMD
|
27445
|
+
CameraDateTime no
|
27446
|
+
Car no
|
27447
|
+
Distance no
|
27448
|
+
ExposureCompensation no
|
27449
|
+
ExposureTime no
|
27450
|
+
FNumber no
|
27451
|
+
FrameNumber no
|
27452
|
+
GPSAltitude no
|
27453
|
+
GPSDOP no
|
27454
|
+
GPSDateTime no
|
27455
|
+
GPSLatitude no
|
27456
|
+
GPSLongitude no
|
27457
|
+
GPSSatellites no
|
27458
|
+
GPSSpeed no
|
27459
|
+
GPSSpeedRef no
|
27460
|
+
GPSTimeStamp no
|
27461
|
+
GPSTrack no
|
27462
|
+
GPSTrackRef no
|
27463
|
+
GSensor no
|
27464
|
+
INSV QuickTime INSV_MakerNotes
|
27465
|
+
ISO no
|
27466
|
+
JpgFromRaw no
|
27467
|
+
KiloCalories no
|
27468
|
+
PreviewInfo QuickTime PreviewInfo
|
27469
|
+
RVMI_gReV QuickTime RVMI_gReV
|
27470
|
+
RVMI_sReV QuickTime RVMI_sReV
|
27471
|
+
RawGSensor no
|
27472
|
+
SampleDateTime no
|
27473
|
+
SampleDuration no
|
27474
|
+
SampleTime no
|
27475
|
+
Text no
|
27476
|
+
TimeCode no
|
27477
|
+
Unknown00? no
|
27478
|
+
Unknown01? no
|
27479
|
+
Unknown02? no
|
27480
|
+
Unknown03? no
|
27481
|
+
UserLabel no
|
27482
|
+
VerticalSpeed no
|
27483
|
+
VideoTimeStamp no
|
27484
|
+
camm0 QuickTime camm0
|
27485
|
+
camm1 QuickTime camm1
|
27486
|
+
camm2 QuickTime camm2
|
27487
|
+
camm3 QuickTime camm3
|
27488
|
+
camm4 QuickTime camm4
|
27489
|
+
camm5 QuickTime camm5
|
27490
|
+
camm6 QuickTime camm6
|
27491
|
+
camm7 QuickTime camm7
|
27492
|
+
fdsc GoPro fdsc
|
27493
|
+
gpmd_Kingslim QuickTime Stream
|
27494
|
+
gpmd_Rove QuickTime Stream
|
27495
|
+
gpmd_FMAS QuickTime Stream
|
27496
|
+
gpmd_GoPro GoPro GPMF
|
27497
|
+
marl QuickTime marl
|
27498
|
+
mebx QuickTime Keys
|
27499
|
+
mett Parrot mett
|
27500
|
+
rtmd Sony rtmd
|
27501
|
+
tx3g QuickTime tx3g
|
27169
27502
|
|
27170
|
-
|
27171
|
-
L<http://www.xiph.org/vorbis/doc/> for the Ogg specification.
|
27503
|
+
=head3 QuickTime INSV_MakerNotes Tags
|
27172
27504
|
|
27173
27505
|
Tag ID Tag Name Writable
|
27174
27506
|
------ -------- --------
|
27175
|
-
|
27176
|
-
|
27177
|
-
|
27178
|
-
|
27179
|
-
'vorbis' Vorbis Vorbis
|
27507
|
+
0x000a SerialNumber no
|
27508
|
+
0x0012 Model no
|
27509
|
+
0x001a Firmware no
|
27510
|
+
0x002a Parameters no
|
27180
27511
|
|
27181
|
-
=
|
27512
|
+
=head3 QuickTime PreviewInfo Tags
|
27182
27513
|
|
27183
|
-
|
27184
|
-
L<http://www.xiph.org/vorbis/doc/> for the Vorbis specification.
|
27514
|
+
Preview stored by TomTom Bandit ActionCam.
|
27185
27515
|
|
27186
|
-
|
27516
|
+
Index1 Tag Name Writable
|
27187
27517
|
------ -------- --------
|
27188
|
-
|
27189
|
-
0x0003 Comments Vorbis Comments
|
27190
|
-
|
27191
|
-
=head3 Vorbis Comments Tags
|
27192
|
-
|
27193
|
-
The tags below are only some common tags found in the Vorbis comments of Ogg
|
27194
|
-
Vorbis and Ogg FLAC audio files, however ExifTool will extract values from
|
27195
|
-
any tag found, even if not listed here.
|
27518
|
+
8 PreviewImage no
|
27196
27519
|
|
27197
|
-
|
27198
|
-
------ -------- --------
|
27199
|
-
'ACTOR' Actor no
|
27200
|
-
'ALBUM' Album no
|
27201
|
-
'ARTIST' Artist no+
|
27202
|
-
'COMMENT' Comment no
|
27203
|
-
'COMPOSER' Composer no
|
27204
|
-
'CONTACT' Contact no+
|
27205
|
-
'COPYRIGHT' Copyright no
|
27206
|
-
'COVERART' CoverArt no
|
27207
|
-
'COVERARTMIME' CoverArtMIMEType no
|
27208
|
-
'DATE' Date no
|
27209
|
-
'DESCRIPTION' Description no
|
27210
|
-
'DIRECTOR' Director no
|
27211
|
-
'ENCODED_BY' EncodedBy no
|
27212
|
-
'ENCODED_USING' EncodedUsing no
|
27213
|
-
'ENCODER' Encoder no
|
27214
|
-
'ENCODER_OPTIONS' EncoderOptions no
|
27215
|
-
'GENRE' Genre no
|
27216
|
-
'ISRC' ISRCNumber no
|
27217
|
-
'LICENSE' License no
|
27218
|
-
'LOCATION' Location no
|
27219
|
-
'METADATA_BLOCK_PICTURE' Picture FLAC Picture
|
27220
|
-
'ORGANIZATION' Organization no
|
27221
|
-
'PERFORMER' Performer no+
|
27222
|
-
'PRODUCER' Producer no
|
27223
|
-
'REPLAYGAIN_ALBUM_GAIN' ReplayGainAlbumGain no
|
27224
|
-
'REPLAYGAIN_ALBUM_PEAK' ReplayGainAlbumPeak no
|
27225
|
-
'REPLAYGAIN_TRACK_GAIN' ReplayGainTrackGain no
|
27226
|
-
'REPLAYGAIN_TRACK_PEAK' ReplayGainTrackPeak no
|
27227
|
-
'TITLE' Title no
|
27228
|
-
'TRACKNUMBER' TrackNumber no
|
27229
|
-
'VERSION' Version no
|
27230
|
-
'vendor' Vendor no
|
27520
|
+
=head3 QuickTime RVMI_gReV Tags
|
27231
27521
|
|
27232
|
-
|
27522
|
+
GPS information extracted from the RVMI box of MOV videos.
|
27233
27523
|
|
27234
27524
|
Index1 Tag Name Writable
|
27235
27525
|
------ -------- --------
|
27236
|
-
|
27237
|
-
|
27238
|
-
|
27239
|
-
|
27240
|
-
13 NominalBitrate no
|
27241
|
-
17 MinimumBitrate no
|
27242
|
-
|
27243
|
-
=head2 Opus Tags
|
27244
|
-
|
27245
|
-
Information extracted from Ogg Opus files. See
|
27246
|
-
L<https://www.opus-codec.org/docs/> for the specification.
|
27526
|
+
4 GPSLatitude no
|
27527
|
+
8 GPSLongitude no
|
27528
|
+
16 GPSSpeed no
|
27529
|
+
18 GPSTrack no
|
27247
27530
|
|
27248
|
-
|
27249
|
-
------ -------- --------
|
27250
|
-
'OpusHead' Header Opus Header
|
27251
|
-
'OpusTags' Comments Vorbis Comments
|
27531
|
+
=head3 QuickTime RVMI_sReV Tags
|
27252
27532
|
|
27253
|
-
|
27533
|
+
G-sensor information extracted from the RVMI box of MOV videos.
|
27254
27534
|
|
27255
27535
|
Index1 Tag Name Writable
|
27256
27536
|
------ -------- --------
|
27257
|
-
|
27258
|
-
1 AudioChannels no
|
27259
|
-
4 SampleRate no
|
27260
|
-
8 OutputGain no
|
27537
|
+
4 GSensor no
|
27261
27538
|
|
27262
|
-
=
|
27263
|
-
|
27264
|
-
Information extracted from Ogg Theora video files. See
|
27265
|
-
L<http://www.theora.org/doc/Theora.pdf> for the Theora specification.
|
27266
|
-
|
27267
|
-
Tag ID Tag Name Writable
|
27268
|
-
------ -------- --------
|
27269
|
-
0x0080 Identification Theora Identification
|
27270
|
-
0x0081 Comments Vorbis Comments
|
27271
|
-
|
27272
|
-
=head3 Theora Identification Tags
|
27273
|
-
|
27274
|
-
Tags extracted from the Theora identification header.
|
27275
|
-
|
27276
|
-
Index1 Tag Name Writable
|
27277
|
-
------ -------- --------
|
27278
|
-
0 TheoraVersion no
|
27279
|
-
7 ImageWidth no
|
27280
|
-
10 ImageHeight no
|
27281
|
-
13 XOffset no
|
27282
|
-
14 YOffset no
|
27283
|
-
15 FrameRate no
|
27284
|
-
23 PixelAspectRatio no
|
27285
|
-
29 ColorSpace no
|
27286
|
-
30 NominalVideoBitrate no
|
27287
|
-
33 Quality no
|
27288
|
-
34 PixelFormat no
|
27289
|
-
|
27290
|
-
=head2 APE Tags
|
27291
|
-
|
27292
|
-
Tags found in Monkey's Audio (APE) information. Only a few common tags are
|
27293
|
-
listed below, but ExifTool will extract any tag found. ExifTool supports
|
27294
|
-
APEv1 and APEv2 tags, as well as ID3 information in APE files, and will also
|
27295
|
-
read APE metadata from MP3 and MPC files.
|
27296
|
-
|
27297
|
-
Tag ID Tag Name Writable
|
27298
|
-
------ -------- --------
|
27299
|
-
'Album' Album no
|
27300
|
-
'Artist' Artist no
|
27301
|
-
'DURATION' Duration no
|
27302
|
-
'Genre' Genre no
|
27303
|
-
'Title' Title no
|
27304
|
-
'Tool Name' ToolName no
|
27305
|
-
'Tool Version' ToolVersion no
|
27306
|
-
'Track' Track no
|
27307
|
-
'Year' Year no
|
27308
|
-
|
27309
|
-
=head3 APE NewHeader Tags
|
27310
|
-
|
27311
|
-
APE MAC audio header for version 3.98 or later.
|
27312
|
-
|
27313
|
-
Index2 Tag Name Writable
|
27314
|
-
------ -------- --------
|
27315
|
-
0 CompressionLevel no
|
27316
|
-
2 BlocksPerFrame no
|
27317
|
-
4 FinalFrameBlocks no
|
27318
|
-
6 TotalFrames no
|
27319
|
-
8 BitsPerSample no
|
27320
|
-
9 Channels no
|
27321
|
-
10 SampleRate no
|
27322
|
-
|
27323
|
-
=head3 APE OldHeader Tags
|
27324
|
-
|
27325
|
-
APE MAC audio header for version 3.97 or earlier.
|
27326
|
-
|
27327
|
-
Index2 Tag Name Writable
|
27328
|
-
------ -------- --------
|
27329
|
-
0 APEVersion no
|
27330
|
-
1 CompressionLevel no
|
27331
|
-
3 Channels no
|
27332
|
-
4 SampleRate no
|
27333
|
-
10 TotalFrames no
|
27334
|
-
12 FinalFrameBlocks no
|
27335
|
-
|
27336
|
-
=head2 Audible Tags
|
27337
|
-
|
27338
|
-
ExifTool will extract any information found in the metadata dictionary of
|
27339
|
-
Audible .AA files, even if not listed in the table below.
|
27340
|
-
|
27341
|
-
Tag ID Tag Name Writable
|
27342
|
-
------ -------- --------
|
27343
|
-
'_chapter_count' ChapterCount no
|
27344
|
-
'_cover_art' CoverArt no
|
27345
|
-
'author' Author no
|
27346
|
-
'copyright' Copyright no
|
27347
|
-
'pub_date_start' PublishDateStart no
|
27348
|
-
'pubdate' PublishDate no
|
27349
|
-
|
27350
|
-
=head3 Audible tags Tags
|
27351
|
-
|
27352
|
-
Information found in "tags" atom of Audible M4B audio books.
|
27353
|
-
|
27354
|
-
Tag ID Tag Name Writable
|
27355
|
-
------ -------- --------
|
27356
|
-
'cvrx' Audible_cvrx Audible cvrx
|
27357
|
-
'meta' Audible_meta Audible meta
|
27358
|
-
'tseg' Audible_tseg Audible tseg
|
27359
|
-
|
27360
|
-
=head3 Audible cvrx Tags
|
27361
|
-
|
27362
|
-
Audible cover art information in M4B audio books.
|
27363
|
-
|
27364
|
-
Tag Name Writable
|
27365
|
-
-------- --------
|
27366
|
-
CoverArt no
|
27367
|
-
CoverArtType no
|
27368
|
-
|
27369
|
-
=head3 Audible meta Tags
|
27370
|
-
|
27371
|
-
Information found in Audible M4B "meta" atom.
|
27372
|
-
|
27373
|
-
Tag ID Tag Name Writable
|
27374
|
-
------ -------- --------
|
27375
|
-
'ALBUMARTIST' AlbumArtist no
|
27376
|
-
'Album' Album no
|
27377
|
-
'Artist' Artist no
|
27378
|
-
'Comment' Comment no
|
27379
|
-
'Genre' Genre no
|
27380
|
-
'SUBTITLE' Subtitle no
|
27381
|
-
'TOOL' CreatorTool no
|
27382
|
-
'Title' Title no
|
27383
|
-
'Year' Year no
|
27384
|
-
'itunesmediatype' iTunesMediaType no
|
27385
|
-
'track' ChapterName no
|
27386
|
-
|
27387
|
-
=head3 Audible tseg Tags
|
27388
|
-
|
27389
|
-
Tag ID Tag Name Writable
|
27390
|
-
------ -------- --------
|
27391
|
-
'meta' Audible_meta2 Audible meta
|
27392
|
-
'tshd' ChapterNumber no
|
27393
|
-
|
27394
|
-
=head2 MPC Tags
|
27395
|
-
|
27396
|
-
Tags used in Musepack (MPC) audio files. ExifTool also extracts ID3 and APE
|
27397
|
-
information from these files.
|
27398
|
-
|
27399
|
-
Tag ID Tag Name Writable
|
27400
|
-
------ -------- --------
|
27401
|
-
'Bit032-063' TotalFrames no
|
27402
|
-
'Bit080-081' SampleRate no
|
27403
|
-
'Bit084-087' Quality no
|
27404
|
-
'Bit088-093' MaxBand no
|
27405
|
-
'Bit096-111' ReplayGainTrackPeak no
|
27406
|
-
'Bit112-127' ReplayGainTrackGain no
|
27407
|
-
'Bit128-143' ReplayGainAlbumPeak no
|
27408
|
-
'Bit144-159' ReplayGainAlbumGain no
|
27409
|
-
'Bit179' FastSeek no
|
27410
|
-
'Bit191' Gapless no
|
27411
|
-
'Bit216-223' EncoderVersion no
|
27412
|
-
|
27413
|
-
=head2 MPEG Tags
|
27414
|
-
|
27415
|
-
The MPEG format doesn't specify any file-level meta information. In lieu of
|
27416
|
-
this, information is extracted from the first audio and video frame headers
|
27417
|
-
in the file.
|
27418
|
-
|
27419
|
-
=head3 MPEG Audio Tags
|
27420
|
-
|
27421
|
-
Tag ID Tag Name Writable
|
27422
|
-
------ -------- --------
|
27423
|
-
'Bit11-12' MPEGAudioVersion no
|
27424
|
-
'Bit13-14' AudioLayer no
|
27425
|
-
'Bit16-19' AudioBitrate no
|
27426
|
-
'Bit20-21' SampleRate no
|
27427
|
-
'Bit24-25' ChannelMode no
|
27428
|
-
'Bit26' MSStereo no
|
27429
|
-
'Bit26-27' ModeExtension no
|
27430
|
-
'Bit27' IntensityStereo no
|
27431
|
-
'Bit28' CopyrightFlag no
|
27432
|
-
'Bit29' OriginalMedia no
|
27433
|
-
'Bit30-31' Emphasis no
|
27434
|
-
|
27435
|
-
=head3 MPEG Video Tags
|
27436
|
-
|
27437
|
-
Tag ID Tag Name Writable
|
27438
|
-
------ -------- --------
|
27439
|
-
'Bit00-11' ImageWidth no
|
27440
|
-
'Bit12-23' ImageHeight no
|
27441
|
-
'Bit24-27' AspectRatio no
|
27442
|
-
'Bit28-31' FrameRate no
|
27443
|
-
'Bit32-49' VideoBitrate no
|
27444
|
-
|
27445
|
-
=head3 MPEG Xing Tags
|
27446
|
-
|
27447
|
-
These tags are extracted from the Xing/Info frame.
|
27448
|
-
|
27449
|
-
Tag Name Writable
|
27450
|
-
-------- --------
|
27451
|
-
Encoder no
|
27452
|
-
LameHeader MPEG Lame
|
27453
|
-
LameQuality no
|
27454
|
-
LameVBRQuality no
|
27455
|
-
VBRBytes no
|
27456
|
-
VBRFrames no
|
27457
|
-
VBRScale no
|
27458
|
-
|
27459
|
-
=head3 MPEG Lame Tags
|
27460
|
-
|
27461
|
-
Tags extracted from Lame 3.90 or later header.
|
27462
|
-
|
27463
|
-
Index1 Tag Name Writable
|
27464
|
-
------ -------- --------
|
27465
|
-
9 LameMethod no
|
27466
|
-
10 LameLowPassFilter no
|
27467
|
-
20 LameBitrate no
|
27468
|
-
24 LameStereoMode no
|
27469
|
-
|
27470
|
-
=head2 M2TS Tags
|
27471
|
-
|
27472
|
-
The MPEG-2 transport stream is used as a container for many different
|
27473
|
-
audio/video formats (including AVCHD). This table lists information
|
27474
|
-
extracted from M2TS files.
|
27475
|
-
|
27476
|
-
Tag Name Writable
|
27477
|
-
-------- --------
|
27478
|
-
AudioStreamType no
|
27479
|
-
Duration no
|
27480
|
-
VideoStreamType no
|
27481
|
-
_AC3 M2TS AC3
|
27482
|
-
_H264 H264
|
27483
|
-
|
27484
|
-
=head3 M2TS AC3 Tags
|
27485
|
-
|
27486
|
-
Tags extracted from AC-3 audio streams.
|
27487
|
-
|
27488
|
-
Tag Name Writable
|
27489
|
-
-------- --------
|
27490
|
-
AudioBitrate no
|
27491
|
-
AudioChannels no
|
27492
|
-
AudioSampleRate no
|
27493
|
-
SurroundMode no
|
27494
|
-
|
27495
|
-
=head2 H264 Tags
|
27496
|
-
|
27497
|
-
Tags extracted from H.264 video streams. The metadata for AVCHD videos is
|
27498
|
-
stored in this stream.
|
27499
|
-
|
27500
|
-
Tag Name Writable
|
27501
|
-
-------- --------
|
27502
|
-
ImageHeight no
|
27503
|
-
ImageWidth no
|
27504
|
-
MDPM H264 MDPM
|
27505
|
-
|
27506
|
-
=head3 H264 MDPM Tags
|
27507
|
-
|
27508
|
-
The following tags are decoded from the Modified Digital Video Pack Metadata
|
27509
|
-
(MDPM) of the unregistered user data with UUID
|
27510
|
-
17ee8c60f84d11d98cd60800200c9a66 in the H.264 Supplemental Enhancement
|
27511
|
-
Information (SEI). I<[Yes, this description is confusing, but nothing
|
27512
|
-
compared to the challenge of actually decoding the data!]> This information
|
27513
|
-
may exist at regular intervals through the entire video, but only the first
|
27514
|
-
occurrence is extracted unless the ExtractEmbedded (-ee) option is used (in
|
27515
|
-
which case subsequent occurrences are extracted as sub-documents).
|
27516
|
-
|
27517
|
-
Tag ID Tag Name Writable
|
27518
|
-
------ -------- --------
|
27519
|
-
0x0013 TimeCode no
|
27520
|
-
0x0018 DateTimeOriginal no
|
27521
|
-
0x0070 Camera1 H264 Camera1
|
27522
|
-
0x0071 Camera2 H264 Camera2
|
27523
|
-
0x007f Shutter H264 Shutter
|
27524
|
-
0x00a0 ExposureTime no
|
27525
|
-
0x00a1 FNumber no
|
27526
|
-
0x00a2 ExposureProgram no
|
27527
|
-
0x00a3 BrightnessValue no
|
27528
|
-
0x00a4 ExposureCompensation no
|
27529
|
-
0x00a5 MaxApertureValue no
|
27530
|
-
0x00a6 Flash no
|
27531
|
-
0x00a7 CustomRendered no
|
27532
|
-
0x00a8 WhiteBalance no
|
27533
|
-
0x00a9 FocalLengthIn35mmFormat no
|
27534
|
-
0x00aa SceneCaptureType no
|
27535
|
-
0x00b0 GPSVersionID no
|
27536
|
-
0x00b1 GPSLatitudeRef no
|
27537
|
-
0x00b2 GPSLatitude no
|
27538
|
-
0x00b5 GPSLongitudeRef no
|
27539
|
-
0x00b6 GPSLongitude no
|
27540
|
-
0x00b9 GPSAltitudeRef no
|
27541
|
-
0x00ba GPSAltitude no
|
27542
|
-
0x00bb GPSTimeStamp no
|
27543
|
-
0x00be GPSStatus no
|
27544
|
-
0x00bf GPSMeasureMode no
|
27545
|
-
0x00c0 GPSDOP no
|
27546
|
-
0x00c1 GPSSpeedRef no
|
27547
|
-
0x00c2 GPSSpeed no
|
27548
|
-
0x00c3 GPSTrackRef no
|
27549
|
-
0x00c4 GPSTrack no
|
27550
|
-
0x00c5 GPSImgDirectionRef no
|
27551
|
-
0x00c6 GPSImgDirection no
|
27552
|
-
0x00c7 GPSMapDatum no
|
27553
|
-
0x00ca GPSDateStamp no
|
27554
|
-
0x00e0 MakeModel H264 MakeModel
|
27555
|
-
0x00e1 RecInfo H264 RecInfo
|
27556
|
-
0x00e4 Model no
|
27557
|
-
0x00ee FrameInfo H264 FrameInfo
|
27558
|
-
|
27559
|
-
=head3 H264 Camera1 Tags
|
27560
|
-
|
27561
|
-
Index1 Tag Name Writable
|
27562
|
-
------ -------- --------
|
27563
|
-
0 ApertureSetting no
|
27564
|
-
1 Gain no
|
27565
|
-
1.1 ExposureProgram no
|
27566
|
-
2.1 WhiteBalance no
|
27567
|
-
3 Focus no
|
27568
|
-
|
27569
|
-
=head3 H264 Camera2 Tags
|
27570
|
-
|
27571
|
-
Index1 Tag Name Writable
|
27572
|
-
------ -------- --------
|
27573
|
-
1 ImageStabilization no
|
27574
|
-
|
27575
|
-
=head3 H264 Shutter Tags
|
27576
|
-
|
27577
|
-
Index2 Tag Name Writable
|
27578
|
-
------ -------- --------
|
27579
|
-
1.1 ExposureTime no
|
27580
|
-
|
27581
|
-
=head3 H264 MakeModel Tags
|
27582
|
-
|
27583
|
-
Index2 Tag Name Writable
|
27584
|
-
------ -------- --------
|
27585
|
-
0 Make no
|
27586
|
-
|
27587
|
-
=head3 H264 RecInfo Tags
|
27588
|
-
|
27589
|
-
Recording information stored by some Canon video cameras.
|
27590
|
-
|
27591
|
-
Index1 Tag Name Writable
|
27592
|
-
------ -------- --------
|
27593
|
-
0 RecordingMode no
|
27594
|
-
|
27595
|
-
=head3 H264 FrameInfo Tags
|
27596
|
-
|
27597
|
-
Frame rate information stored by some Canon video cameras.
|
27598
|
-
|
27599
|
-
Index1 Tag Name Writable
|
27600
|
-
------ -------- --------
|
27601
|
-
0 CaptureFrameRate no
|
27602
|
-
1 VideoFrameRate no
|
27603
|
-
|
27604
|
-
=head2 QuickTime Tags
|
27605
|
-
|
27606
|
-
The QuickTime format is used for many different types of audio, video and
|
27607
|
-
image files (most notably, MOV/MP4 videos and HEIC/CR3 images). ExifTool
|
27608
|
-
extracts standard meta information and a variety of audio, video and image
|
27609
|
-
parameters, as well as proprietary information written by many camera
|
27610
|
-
models. Tags with a question mark after their name are not extracted unless
|
27611
|
-
the Unknown option is set.
|
27612
|
-
|
27613
|
-
When writing, ExifTool creates both QuickTime and XMP tags by default, but
|
27614
|
-
the group may be specified to write one or the other separately. If no
|
27615
|
-
location is specified, newly created QuickTime tags are added in the
|
27616
|
-
L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> location if
|
27617
|
-
possible, otherwise in
|
27618
|
-
L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags>, and
|
27619
|
-
finally in L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags>,
|
27620
|
-
but this order may be changed by setting the PREFERRED level of the
|
27621
|
-
appropriate table in the config file (see
|
27622
|
-
example.config in the full distribution for an
|
27623
|
-
example). Note that some tags with the same name but different ID's may
|
27624
|
-
exist in the same location, but the family 7 group names may be used to
|
27625
|
-
differentiate these. ExifTool currently writes only top-level metadata in
|
27626
|
-
QuickTime-based files; it extracts other track-specific and timed metadata,
|
27627
|
-
but can not yet edit tags in these locations (with the exception of
|
27628
|
-
track-level date/time tags).
|
27629
|
-
|
27630
|
-
Alternate language tags may be accessed for
|
27631
|
-
L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
|
27632
|
-
L<Keys|Image::ExifTool::TagNames/QuickTime Keys Tags> tags by adding
|
27633
|
-
a 3-character ISO 639-2 language code and an optional ISO 3166-1 alpha 2
|
27634
|
-
country code to the tag name (eg. "ItemList:Artist-deu" or
|
27635
|
-
"ItemList::Artist-deu-DE"). Most
|
27636
|
-
L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags support a
|
27637
|
-
language code, but without a country code. If no language code is specified
|
27638
|
-
when writing, the default language is written and alternate languages for
|
27639
|
-
the tag are deleted. Use the "und" language code to write the default
|
27640
|
-
language without deleting alternate languages. Note that "eng" is treated
|
27641
|
-
as a default language when reading, but not when writing.
|
27642
|
-
|
27643
|
-
According to the specification, integer-format QuickTime date/time tags
|
27644
|
-
should be stored as UTC. Unfortunately, digital cameras often store local
|
27645
|
-
time values instead (presumably because they don't know the time zone). For
|
27646
|
-
this reason, by default ExifTool does not assume a time zone for these
|
27647
|
-
values. However, if the API QuickTimeUTC option is set, then ExifTool will
|
27648
|
-
assume these values are properly stored as UTC, and will convert them to
|
27649
|
-
local time when extracting.
|
27650
|
-
|
27651
|
-
When writing string-based date/time tags, the system time zone is added if
|
27652
|
-
the PrintConv option is enabled and no time zone is specified. This is
|
27653
|
-
because Apple software may display crazy values if the time zone is missing
|
27654
|
-
for some tags.
|
27655
|
-
|
27656
|
-
By default ExifTool will remove null padding from some QuickTime containers
|
27657
|
-
in Canon CR3 files when writing, but the
|
27658
|
-
QuickTimePad option may be used to preserve
|
27659
|
-
the original size by padding with nulls if necessary.
|
27660
|
-
|
27661
|
-
See
|
27662
|
-
L<https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/>
|
27663
|
-
for the official specification.
|
27664
|
-
|
27665
|
-
Tag ID Tag Name Writable
|
27666
|
-
------ -------- --------
|
27667
|
-
'GPS ' GPSDataList2? no
|
27668
|
-
'IDIT' DateTimeOriginal string
|
27669
|
-
'PICT' PreviewPICT no
|
27670
|
-
'_htc' HTCInfo QuickTime HTCInfo
|
27671
|
-
'ardt' ARDroneFile no
|
27672
|
-
'frea' Kodak_frea Kodak frea
|
27673
|
-
'free' KodakFree Kodak Free
|
27674
|
-
Pittasoft QuickTime Pittasoft
|
27675
|
-
ThumbnailImage no
|
27676
|
-
Free? no
|
27677
|
-
'ftyp' FileType QuickTime FileType
|
27678
|
-
'gps0' GPSTrack QuickTime Stream
|
27679
|
-
'gsen' GSensor QuickTime Stream
|
27680
|
-
'junk' Junk? no
|
27681
|
-
'mdat' MediaData? no
|
27682
|
-
'mdat-offset' MediaDataOffset no
|
27683
|
-
'mdat-size' MediaDataSize no
|
27684
|
-
'meco' OtherMeta QuickTime OtherMeta
|
27685
|
-
'meta' Meta QuickTime Meta
|
27686
|
-
'moof' MovieFragment QuickTime MovieFragment
|
27687
|
-
'moov' Movie QuickTime Movie
|
27688
|
-
'pict' PreviewPICT no
|
27689
|
-
'pnot' Preview QuickTime Preview
|
27690
|
-
'prrt' ARDroneTelemetry no
|
27691
|
-
'sefd' SamsungTrailer Samsung Trailer
|
27692
|
-
'skip' CanonSkip Canon Skip
|
27693
|
-
PreviewImage no
|
27694
|
-
Skip? no
|
27695
|
-
'thm ' ThumbnailImage no
|
27696
|
-
'thum' ThumbnailImage no
|
27697
|
-
'udat' GPSLog no
|
27698
|
-
'udta' UserData FLIR UserData
|
27699
|
-
'uuid' XMP XMP
|
27700
|
-
UUID-PROF QuickTime Profile
|
27701
|
-
UUID-Flip QuickTime Flip
|
27702
|
-
UUID-Canon2 Canon uuid2
|
27703
|
-
SensorData QuickTime Tags360Fly
|
27704
|
-
SensorData no
|
27705
|
-
PreviewImage no
|
27706
|
-
UUID-Unknown? no
|
27707
|
-
'wide' Wide? no
|
27708
|
-
|
27709
|
-
=head3 QuickTime HTCInfo Tags
|
27710
|
-
|
27711
|
-
Tags written by some HTC camera phones.
|
27712
|
-
|
27713
|
-
Tag ID Tag Name Writable
|
27714
|
-
------ -------- --------
|
27715
|
-
'slmt' Unknown_slmt? no
|
27716
|
-
|
27717
|
-
=head3 QuickTime Pittasoft Tags
|
27718
|
-
|
27719
|
-
Tags found in Pittasoft Blackvue dashcam "free" data.
|
27720
|
-
|
27721
|
-
Tag ID Tag Name Writable
|
27722
|
-
------ -------- --------
|
27723
|
-
'3gf ' AccelData QuickTime Stream
|
27724
|
-
'cprt' Copyright no
|
27725
|
-
'gps ' GPSLog no
|
27726
|
-
'ptnm' OriginalFileName no
|
27727
|
-
'ptrh' Ptrh QuickTime Pittasoft
|
27728
|
-
'sttm' StartTime no
|
27729
|
-
'thum' PreviewImage no
|
27730
|
-
|
27731
|
-
=head3 QuickTime Stream Tags
|
27732
|
-
|
27733
|
-
The tags below are extracted from timed metadata in QuickTime and other
|
27734
|
-
formats of video files when the ExtractEmbedded option is used. Although
|
27735
|
-
most of these tags are combined into the single table below, ExifTool
|
27736
|
-
currently reads 59 different formats of timed GPS metadata from video files.
|
27737
|
-
|
27738
|
-
Tag Name Writable
|
27739
|
-
-------- --------
|
27740
|
-
Accelerometer no
|
27741
|
-
AccelerometerData no
|
27742
|
-
AngularVelocity no
|
27743
|
-
CTMD Canon CTMD
|
27744
|
-
CameraDateTime no
|
27745
|
-
Car no
|
27746
|
-
Distance no
|
27747
|
-
ExposureCompensation no
|
27748
|
-
ExposureTime no
|
27749
|
-
FNumber no
|
27750
|
-
FrameNumber no
|
27751
|
-
GPSAltitude no
|
27752
|
-
GPSDOP no
|
27753
|
-
GPSDateTime no
|
27754
|
-
GPSLatitude no
|
27755
|
-
GPSLongitude no
|
27756
|
-
GPSSatellites no
|
27757
|
-
GPSSpeed no
|
27758
|
-
GPSSpeedRef no
|
27759
|
-
GPSTimeStamp no
|
27760
|
-
GPSTrack no
|
27761
|
-
GPSTrackRef no
|
27762
|
-
GSensor no
|
27763
|
-
INSV QuickTime INSV_MakerNotes
|
27764
|
-
ISO no
|
27765
|
-
JpgFromRaw no
|
27766
|
-
KiloCalories no
|
27767
|
-
PreviewInfo QuickTime PreviewInfo
|
27768
|
-
RVMI_gReV QuickTime RVMI_gReV
|
27769
|
-
RVMI_sReV QuickTime RVMI_sReV
|
27770
|
-
RawGSensor no
|
27771
|
-
SampleDateTime no
|
27772
|
-
SampleDuration no
|
27773
|
-
SampleTime no
|
27774
|
-
Text no
|
27775
|
-
TimeCode no
|
27776
|
-
Unknown00? no
|
27777
|
-
Unknown01? no
|
27778
|
-
Unknown02? no
|
27779
|
-
Unknown03? no
|
27780
|
-
UserLabel no
|
27781
|
-
VerticalSpeed no
|
27782
|
-
VideoTimeStamp no
|
27783
|
-
camm0 QuickTime camm0
|
27784
|
-
camm1 QuickTime camm1
|
27785
|
-
camm2 QuickTime camm2
|
27786
|
-
camm3 QuickTime camm3
|
27787
|
-
camm4 QuickTime camm4
|
27788
|
-
camm5 QuickTime camm5
|
27789
|
-
camm6 QuickTime camm6
|
27790
|
-
camm7 QuickTime camm7
|
27791
|
-
fdsc GoPro fdsc
|
27792
|
-
gpmd_Kingslim QuickTime Stream
|
27793
|
-
gpmd_Rove QuickTime Stream
|
27794
|
-
gpmd_FMAS QuickTime Stream
|
27795
|
-
gpmd_GoPro GoPro GPMF
|
27796
|
-
marl QuickTime marl
|
27797
|
-
mebx QuickTime Keys
|
27798
|
-
mett Parrot mett
|
27799
|
-
rtmd Sony rtmd
|
27800
|
-
tx3g QuickTime tx3g
|
27801
|
-
|
27802
|
-
=head3 QuickTime INSV_MakerNotes Tags
|
27803
|
-
|
27804
|
-
Tag ID Tag Name Writable
|
27805
|
-
------ -------- --------
|
27806
|
-
0x000a SerialNumber no
|
27807
|
-
0x0012 Model no
|
27808
|
-
0x001a Firmware no
|
27809
|
-
0x002a Parameters no
|
27810
|
-
|
27811
|
-
=head3 QuickTime PreviewInfo Tags
|
27812
|
-
|
27813
|
-
Preview stored by TomTom Bandit ActionCam.
|
27814
|
-
|
27815
|
-
Index1 Tag Name Writable
|
27816
|
-
------ -------- --------
|
27817
|
-
8 PreviewImage no
|
27818
|
-
|
27819
|
-
=head3 QuickTime RVMI_gReV Tags
|
27820
|
-
|
27821
|
-
GPS information extracted from the RVMI box of MOV videos.
|
27822
|
-
|
27823
|
-
Index1 Tag Name Writable
|
27824
|
-
------ -------- --------
|
27825
|
-
4 GPSLatitude no
|
27826
|
-
8 GPSLongitude no
|
27827
|
-
16 GPSSpeed no
|
27828
|
-
18 GPSTrack no
|
27829
|
-
|
27830
|
-
=head3 QuickTime RVMI_sReV Tags
|
27831
|
-
|
27832
|
-
G-sensor information extracted from the RVMI box of MOV videos.
|
27833
|
-
|
27834
|
-
Index1 Tag Name Writable
|
27835
|
-
------ -------- --------
|
27836
|
-
4 GSensor no
|
27837
|
-
|
27838
|
-
=head3 QuickTime camm0 Tags
|
27539
|
+
=head3 QuickTime camm0 Tags
|
27839
27540
|
|
27840
27541
|
The camm0 through camm7 tables define tags extracted from the Google Street
|
27841
27542
|
View Camera Motion Metadata of MP4 videos. See
|
@@ -28026,6 +27727,28 @@ subtitle text in some other videos.
|
|
28026
27727
|
'Text' Text no
|
28027
27728
|
'Yaw' Yaw no
|
28028
27729
|
|
27730
|
+
=head3 QuickTime HTCInfo Tags
|
27731
|
+
|
27732
|
+
Tags written by some HTC camera phones.
|
27733
|
+
|
27734
|
+
Tag ID Tag Name Writable
|
27735
|
+
------ -------- --------
|
27736
|
+
'slmt' Unknown_slmt? no
|
27737
|
+
|
27738
|
+
=head3 QuickTime Pittasoft Tags
|
27739
|
+
|
27740
|
+
Tags found in Pittasoft Blackvue dashcam "free" data.
|
27741
|
+
|
27742
|
+
Tag ID Tag Name Writable
|
27743
|
+
------ -------- --------
|
27744
|
+
'3gf ' AccelData QuickTime Stream
|
27745
|
+
'cprt' Copyright no
|
27746
|
+
'gps ' GPSLog no
|
27747
|
+
'ptnm' OriginalFileName no
|
27748
|
+
'ptrh' Ptrh QuickTime Pittasoft
|
27749
|
+
'sttm' StartTime no
|
27750
|
+
'thum' PreviewImage no
|
27751
|
+
|
28029
27752
|
=head3 QuickTime FileType Tags
|
28030
27753
|
|
28031
27754
|
Index4 Tag Name Writable
|
@@ -28301,7 +28024,7 @@ and are not currently writable.
|
|
28301
28024
|
'av1C' AV1Configuration QuickTime AV1Config
|
28302
28025
|
'clap' CleanAperture no
|
28303
28026
|
'colr' ICC_Profile ICC_Profile
|
28304
|
-
ColorRepresentation
|
28027
|
+
ColorRepresentation QuickTime ColorRep
|
28305
28028
|
'hvcC' HEVCConfiguration QuickTime HEVCConfig
|
28306
28029
|
'irot' Rotation int8u!
|
28307
28030
|
'ispe' ImageSpatialExtent no
|
@@ -28323,6 +28046,15 @@ and are not currently writable.
|
|
28323
28046
|
2.4 ChromaSamplePosition no
|
28324
28047
|
3 InitialDelaySamples? no
|
28325
28048
|
|
28049
|
+
=head3 QuickTime ColorRep Tags
|
28050
|
+
|
28051
|
+
Index1 Tag Name Writable
|
28052
|
+
------ -------- --------
|
28053
|
+
0 ColorProfiles no
|
28054
|
+
4 ColorPrimaries no
|
28055
|
+
6 TransferCharacteristics no
|
28056
|
+
8 MatrixCoefficients no
|
28057
|
+
|
28326
28058
|
=head3 QuickTime HEVCConfig Tags
|
28327
28059
|
|
28328
28060
|
Index1 Tag Name Writable
|
@@ -28392,6 +28124,8 @@ ExifTool, but these entries are not extracted as tags.
|
|
28392
28124
|
'udta' UserData QuickTime UserData
|
28393
28125
|
'uuid' UUID-USMT QuickTime UserMedia
|
28394
28126
|
UUID-Canon Canon uuid
|
28127
|
+
GarminGPS QuickTime Stream
|
28128
|
+
GarminGPS no
|
28395
28129
|
UUID-Unknown? no
|
28396
28130
|
|
28397
28131
|
=head3 QuickTime CMovie Tags
|
@@ -28663,7 +28397,7 @@ Child atoms found in "sinf" and/or "pinf" atoms.
|
|
28663
28397
|
'avcC' AVCConfiguration? no
|
28664
28398
|
'btrt' BitrateInfo QuickTime Bitrate
|
28665
28399
|
'clap' CleanAperture QuickTime CleanAperture
|
28666
|
-
'colr' ColorRepresentation
|
28400
|
+
'colr' ColorRepresentation QuickTime ColorRep
|
28667
28401
|
'fiel' VideoFieldOrder no
|
28668
28402
|
'gama' Gamma no
|
28669
28403
|
'pasp' PixelAspectRatio no
|
@@ -28750,6 +28484,7 @@ MP4 metadata sample description.
|
|
28750
28484
|
Tag ID Tag Name Writable
|
28751
28485
|
------ -------- --------
|
28752
28486
|
0x0004 MetaFormat no
|
28487
|
+
0x0008 MetaType no
|
28753
28488
|
'btrt' BitrateInfo QuickTime Bitrate
|
28754
28489
|
'keys' Keys QuickTime Keys
|
28755
28490
|
|
@@ -28758,6 +28493,7 @@ MP4 metadata sample description.
|
|
28758
28493
|
Tag ID Tag Name Writable
|
28759
28494
|
------ -------- --------
|
28760
28495
|
0x0004 OtherFormat no
|
28496
|
+
0x0018 PlaybackFrameRate no
|
28761
28497
|
'ftab' FontTable no
|
28762
28498
|
'name' OtherName no
|
28763
28499
|
|
@@ -29105,6 +28841,13 @@ Tags found in TomTom Bandit Action Cam MP4 videos.
|
|
29105
28841
|
3 PreviewAtomType no
|
29106
28842
|
5 PreviewAtomIndex no
|
29107
28843
|
|
28844
|
+
=head3 QuickTime SkipInfo Tags
|
28845
|
+
|
28846
|
+
Tag ID Tag Name Writable
|
28847
|
+
------ -------- --------
|
28848
|
+
'thma' ThumbnailImage no
|
28849
|
+
'ver ' Version no
|
28850
|
+
|
29108
28851
|
=head3 QuickTime Profile Tags
|
29109
28852
|
|
29110
28853
|
Tag ID Tag Name Writable
|
@@ -29229,15 +28972,480 @@ Timed metadata found in MP4 videos from the 360Fly.
|
|
29229
28972
|
2 SampleTime no
|
29230
28973
|
10 FusionYPR no
|
29231
28974
|
|
29232
|
-
=head3 QuickTime ImageFile Tags
|
28975
|
+
=head3 QuickTime ImageFile Tags
|
28976
|
+
|
28977
|
+
Tags used in QTIF QuickTime Image Files.
|
28978
|
+
|
28979
|
+
Tag ID Tag Name Writable
|
28980
|
+
------ -------- --------
|
28981
|
+
'idat' ImageData no
|
28982
|
+
'idsc' ImageDescription QuickTime ImageDesc
|
28983
|
+
'iicc' ICC_Profile ICC_Profile
|
28984
|
+
|
28985
|
+
=head2 RIFF Tags
|
28986
|
+
|
28987
|
+
The RIFF container format is used various types of fines including AVI, WAV,
|
28988
|
+
WEBP, LA, OFR, PAC and WV. According to the EXIF specification, Meta
|
28989
|
+
information is embedded in two types of RIFF C<LIST> chunks: C<INFO> and
|
28990
|
+
C<exif>, and information about the audio content is stored in the C<fmt >
|
28991
|
+
chunk. As well as this information, some video information and proprietary
|
28992
|
+
manufacturer-specific information is also extracted.
|
28993
|
+
|
28994
|
+
Large AVI videos may be a concatenation of two or more RIFF chunks. For
|
28995
|
+
these files, information is extracted from subsequent RIFF chunks as
|
28996
|
+
sub-documents, but the Duration is calculated for the full video.
|
28997
|
+
|
28998
|
+
ExifTool currently has the ability to write EXIF, XMP and ICC_Profile
|
28999
|
+
metadata to WEBP images, but can't yet write to other RIFF-based formats.
|
29000
|
+
|
29001
|
+
Tag ID Tag Name Writable
|
29002
|
+
------ -------- --------
|
29003
|
+
'ALPH' ALPH RIFF ALPH
|
29004
|
+
'ANIM' ANIM RIFF ANIM
|
29005
|
+
'ANMF' ANMF RIFF ANMF
|
29006
|
+
'CSET' CharacterSet RIFF CSET
|
29007
|
+
'EXIF' EXIF EXIF
|
29008
|
+
UnknownEXIF no
|
29009
|
+
'ICCP' ICC_Profile ICC_Profile
|
29010
|
+
'IDIT' DateTimeOriginal no
|
29011
|
+
'JUNK' OlympusJunk Olympus AVI
|
29012
|
+
CasioJunk EXIF
|
29013
|
+
RicohJunk Ricoh AVI
|
29014
|
+
PentaxJunk Pentax Junk
|
29015
|
+
PentaxJunk2 Pentax Junk2
|
29016
|
+
LucasJunk QuickTime Stream
|
29017
|
+
TextJunk no
|
29018
|
+
'JUNQ' OldXMP no
|
29019
|
+
'LIST_INF0' Info RIFF Info
|
29020
|
+
'LIST_INFO' Info RIFF Info
|
29021
|
+
'LIST_Tdat' Tdat RIFF Tdat
|
29022
|
+
'LIST_adtl' AssociatedDataList RIFF
|
29023
|
+
'LIST_exif' Exif RIFF Exif
|
29024
|
+
'LIST_hdrl' Hdrl RIFF Hdrl
|
29025
|
+
'LIST_hydt' PentaxData Pentax AVI
|
29026
|
+
'LIST_ncdt' NikonData Nikon AVI
|
29027
|
+
'LIST_pntx' PentaxData2 Pentax AVI
|
29028
|
+
'SGLT' BikeBroAccel QuickTime Stream
|
29029
|
+
'SLLT' BikeBroGPS QuickTime Stream
|
29030
|
+
'VP8 ' VP8Bitstream RIFF VP8
|
29031
|
+
'VP8L' VP8L RIFF VP8L
|
29032
|
+
'VP8X' VP8X RIFF VP8X
|
29033
|
+
'XMP ' XMP XMP
|
29034
|
+
'_PMX' XMP XMP
|
29035
|
+
'aXML' AXML XMP XML
|
29036
|
+
'acid' Acidizer RIFF Acidizer
|
29037
|
+
'afsp' Afsp no
|
29038
|
+
'bext' BroadcastExtension RIFF BroadcastExt
|
29039
|
+
'cue ' CuePoints no
|
29040
|
+
'ds64' DataSize64 RIFF DS64
|
29041
|
+
'fact' NumberOfSamples no
|
29042
|
+
'fmt ' AudioFormat RIFF AudioFormat
|
29043
|
+
'gps0' GPSTrack QuickTime Stream
|
29044
|
+
'gsen' GSensor QuickTime Stream
|
29045
|
+
'iXML' IXML XMP XML
|
29046
|
+
'id3 ' ID3 ID3
|
29047
|
+
'inst' Instrument RIFF Instrument
|
29048
|
+
'labl' CuePointLabel no
|
29049
|
+
'list' ListType no
|
29050
|
+
'ltxt' LabeledText no
|
29051
|
+
'note' CuePointNote no
|
29052
|
+
'olym' Olym Olympus WAV
|
29053
|
+
'plst' Playlist no
|
29054
|
+
'smpl' Sampler RIFF Sampler
|
29055
|
+
'tx_USER' UserText RIFF UserText
|
29056
|
+
'tx_Unknown' Text no
|
29057
|
+
|
29058
|
+
=head3 RIFF ALPH Tags
|
29059
|
+
|
29060
|
+
WebP alpha chunk.
|
29061
|
+
|
29062
|
+
Index1 Tag Name Writable
|
29063
|
+
------ -------- --------
|
29064
|
+
0 AlphaPreprocessing no
|
29065
|
+
0.1 AlphaFiltering no
|
29066
|
+
0.2 AlphaCompression no
|
29067
|
+
|
29068
|
+
=head3 RIFF ANIM Tags
|
29069
|
+
|
29070
|
+
WebP animation chunk.
|
29071
|
+
|
29072
|
+
Index1 Tag Name Writable
|
29073
|
+
------ -------- --------
|
29074
|
+
0 BackgroundColor no
|
29075
|
+
4 AnimationLoopCount no
|
29076
|
+
|
29077
|
+
=head3 RIFF ANMF Tags
|
29078
|
+
|
29079
|
+
WebP animation frame chunk.
|
29080
|
+
|
29081
|
+
Index1 Tag Name Writable
|
29082
|
+
------ -------- --------
|
29083
|
+
12 Duration no
|
29084
|
+
|
29085
|
+
=head3 RIFF CSET Tags
|
29086
|
+
|
29087
|
+
Index2 Tag Name Writable
|
29088
|
+
------ -------- --------
|
29089
|
+
0 CodePage no
|
29090
|
+
1 CountryCode no
|
29091
|
+
2 LanguageCode no
|
29092
|
+
3 Dialect no
|
29093
|
+
|
29094
|
+
=head3 RIFF Info Tags
|
29095
|
+
|
29096
|
+
RIFF INFO tags found in AVI video and WAV audio files. Tags which are part
|
29097
|
+
of the EXIF 2.3 specification have an underlined Tag Name in the HTML
|
29098
|
+
version of this documentation. Other tags are found in AVI files generated
|
29099
|
+
by some software.
|
29100
|
+
|
29101
|
+
Tag ID Tag Name Writable
|
29102
|
+
------ -------- --------
|
29103
|
+
'AGES' Rated no
|
29104
|
+
'CMNT' Comment no
|
29105
|
+
'CODE' EncodedBy no
|
29106
|
+
'COMM' Comments no
|
29107
|
+
'DIRC' Directory no
|
29108
|
+
'DISP' SoundSchemeTitle no
|
29109
|
+
'DTIM' DateTimeOriginal no
|
29110
|
+
'GENR' Genre no
|
29111
|
+
'IARL' ArchivalLocation no
|
29112
|
+
'IART' Artist no
|
29113
|
+
'IAS1' FirstLanguage no
|
29114
|
+
'IAS2' SecondLanguage no
|
29115
|
+
'IAS3' ThirdLanguage no
|
29116
|
+
'IAS4' FourthLanguage no
|
29117
|
+
'IAS5' FifthLanguage no
|
29118
|
+
'IAS6' SixthLanguage no
|
29119
|
+
'IAS7' SeventhLanguage no
|
29120
|
+
'IAS8' EighthLanguage no
|
29121
|
+
'IAS9' NinthLanguage no
|
29122
|
+
'IBSU' BaseURL no
|
29123
|
+
'ICAS' DefaultAudioStream no
|
29124
|
+
'ICDS' CostumeDesigner no
|
29125
|
+
'ICMS' Commissioned no
|
29126
|
+
'ICMT' Comment no
|
29127
|
+
'ICNM' Cinematographer no
|
29128
|
+
'ICNT' Country no
|
29129
|
+
'ICOP' Copyright no
|
29130
|
+
'ICRD' DateCreated no
|
29131
|
+
'ICRP' Cropped no
|
29132
|
+
'IDIM' Dimensions no
|
29133
|
+
'IDIT' DateTimeOriginal no
|
29134
|
+
'IDPI' DotsPerInch no
|
29135
|
+
'IDST' DistributedBy no
|
29136
|
+
'IEDT' EditedBy no
|
29137
|
+
'IENC' EncodedBy no
|
29138
|
+
'IENG' Engineer no
|
29139
|
+
'IGNR' Genre no
|
29140
|
+
'IKEY' Keywords no
|
29141
|
+
'ILGT' Lightness no
|
29142
|
+
'ILGU' LogoURL no
|
29143
|
+
'ILIU' LogoIconURL no
|
29144
|
+
'ILNG' Language no
|
29145
|
+
'IMBI' MoreInfoBannerImage no
|
29146
|
+
'IMBU' MoreInfoBannerURL no
|
29147
|
+
'IMED' Medium no
|
29148
|
+
'IMIT' MoreInfoText no
|
29149
|
+
'IMIU' MoreInfoURL no
|
29150
|
+
'IMUS' MusicBy no
|
29151
|
+
'INAM' Title no
|
29152
|
+
'IPDS' ProductionDesigner no
|
29153
|
+
'IPLT' NumColors no
|
29154
|
+
'IPRD' Product no
|
29155
|
+
'IPRO' ProducedBy no
|
29156
|
+
'IRIP' RippedBy no
|
29157
|
+
'IRTD' Rating no
|
29158
|
+
'ISBJ' Subject no
|
29159
|
+
'ISFT' Software no
|
29160
|
+
'ISGN' SecondaryGenre no
|
29161
|
+
'ISHP' Sharpness no
|
29162
|
+
'ISMP' TimeCode no
|
29163
|
+
'ISRC' Source no
|
29164
|
+
'ISRF' SourceForm no
|
29165
|
+
'ISTD' ProductionStudio no
|
29166
|
+
'ISTR' Starring no
|
29167
|
+
'ITCH' Technician no
|
29168
|
+
'ITRK' TrackNumber no
|
29169
|
+
'IWMU' WatermarkURL no
|
29170
|
+
'IWRI' WrittenBy no
|
29171
|
+
'LANG' Language no
|
29172
|
+
'LOCA' Location no
|
29173
|
+
'PRT1' Part no
|
29174
|
+
'PRT2' NumberOfParts no
|
29175
|
+
'RATE' Rate no
|
29176
|
+
'STAR' Starring no
|
29177
|
+
'STAT' Statistics no
|
29178
|
+
'TAPE' TapeName no
|
29179
|
+
'TCDO' EndTimecode no
|
29180
|
+
'TCOD' StartTimecode no
|
29181
|
+
'TITL' Title no
|
29182
|
+
'TLEN' Length no
|
29183
|
+
'TORG' Organization no
|
29184
|
+
'TRCK' TrackNumber no
|
29185
|
+
'TURL' URL no
|
29186
|
+
'TVER' Version no
|
29187
|
+
'VMAJ' VegasVersionMajor no
|
29188
|
+
'VMIN' VegasVersionMinor no
|
29189
|
+
'YEAR' Year no
|
29190
|
+
|
29191
|
+
=head3 RIFF Tdat Tags
|
29192
|
+
|
29193
|
+
Tag ID Tag Name Writable
|
29194
|
+
------ -------- --------
|
29195
|
+
[no tags known]
|
29196
|
+
|
29197
|
+
=head3 RIFF Exif Tags
|
29198
|
+
|
29199
|
+
These tags are part of the EXIF 2.3 specification for WAV audio files.
|
29200
|
+
|
29201
|
+
Tag ID Tag Name Writable
|
29202
|
+
------ -------- --------
|
29203
|
+
'ecor' Make no
|
29204
|
+
'emdl' Model no
|
29205
|
+
'emnt' MakerNotes no
|
29206
|
+
'erel' RelatedImageFile no
|
29207
|
+
'etim' TimeCreated no
|
29208
|
+
'eucm' UserComment no
|
29209
|
+
'ever' ExifVersion no
|
29210
|
+
|
29211
|
+
=head3 RIFF Hdrl Tags
|
29212
|
+
|
29213
|
+
Tag ID Tag Name Writable
|
29214
|
+
------ -------- --------
|
29215
|
+
'IDIT' DateTimeOriginal no
|
29216
|
+
'ISMP' TimeCode no
|
29217
|
+
'LIST_odml' OpenDML RIFF OpenDML
|
29218
|
+
'LIST_strl' Stream RIFF Stream
|
29219
|
+
'avih' AVIHeader RIFF AVIHeader
|
29220
|
+
|
29221
|
+
=head3 RIFF OpenDML Tags
|
29222
|
+
|
29223
|
+
Tag ID Tag Name Writable
|
29224
|
+
------ -------- --------
|
29225
|
+
'dmlh' ExtendedAVIHeader RIFF ExtAVIHdr
|
29226
|
+
|
29227
|
+
=head3 RIFF ExtAVIHdr Tags
|
29228
|
+
|
29229
|
+
Index4 Tag Name Writable
|
29230
|
+
------ -------- --------
|
29231
|
+
0 TotalFrameCount no
|
29232
|
+
|
29233
|
+
=head3 RIFF Stream Tags
|
29234
|
+
|
29235
|
+
Tag ID Tag Name Writable
|
29236
|
+
------ -------- --------
|
29237
|
+
'strd' StreamData RIFF StreamData
|
29238
|
+
'strf' AudioFormat RIFF AudioFormat
|
29239
|
+
VideoFormat BMP
|
29240
|
+
'strh' StreamHeader RIFF StreamHeader
|
29241
|
+
'strn' StreamName no
|
29242
|
+
|
29243
|
+
=head3 RIFF StreamData Tags
|
29244
|
+
|
29245
|
+
This chunk is used to store proprietary information in AVI videos from some
|
29246
|
+
cameras. The first 4 characters of the data are used as the Tag ID below.
|
29247
|
+
|
29248
|
+
Tag ID Tag Name Writable
|
29249
|
+
------ -------- --------
|
29250
|
+
'AVIF' AVIF EXIF
|
29251
|
+
'CASI' CasioData Casio AVI
|
29252
|
+
'Zora' VendorName no
|
29253
|
+
'unknown' UnknownData no
|
29254
|
+
|
29255
|
+
=head3 RIFF AudioFormat Tags
|
29256
|
+
|
29257
|
+
Index2 Tag Name Writable
|
29258
|
+
------ -------- --------
|
29259
|
+
0 Encoding no
|
29260
|
+
1 NumChannels no
|
29261
|
+
2 SampleRate no
|
29262
|
+
4 AvgBytesPerSec no
|
29263
|
+
7 BitsPerSample no
|
29264
|
+
|
29265
|
+
=head3 RIFF StreamHeader Tags
|
29266
|
+
|
29267
|
+
Index4 Tag Name Writable
|
29268
|
+
------ -------- --------
|
29269
|
+
0 StreamType no
|
29270
|
+
1 AudioCodec no
|
29271
|
+
VideoCodec no
|
29272
|
+
Codec no
|
29273
|
+
5 AudioSampleRate no
|
29274
|
+
VideoFrameRate no
|
29275
|
+
StreamSampleRate no
|
29276
|
+
8 AudioSampleCount no
|
29277
|
+
VideoFrameCount no
|
29278
|
+
StreamSampleCount no
|
29279
|
+
10 Quality no
|
29280
|
+
11 SampleSize no
|
29281
|
+
|
29282
|
+
=head3 RIFF AVIHeader Tags
|
29283
|
+
|
29284
|
+
Index4 Tag Name Writable
|
29285
|
+
------ -------- --------
|
29286
|
+
0 FrameRate no
|
29287
|
+
1 MaxDataRate no
|
29288
|
+
4 FrameCount no
|
29289
|
+
6 StreamCount no
|
29290
|
+
8 ImageWidth no
|
29291
|
+
9 ImageHeight no
|
29292
|
+
|
29293
|
+
=head3 RIFF VP8 Tags
|
29294
|
+
|
29295
|
+
This chunk is found in simple-format (lossy) WebP files. See
|
29296
|
+
L<https://developers.google.com/speed/webp/docs/riff_container> for the WebP
|
29297
|
+
container specification.
|
29298
|
+
|
29299
|
+
Index1 Tag Name Writable
|
29300
|
+
------ -------- --------
|
29301
|
+
0 VP8Version no
|
29302
|
+
6 ImageWidth no
|
29303
|
+
6.1 HorizontalScale no
|
29304
|
+
8 ImageHeight no
|
29305
|
+
8.1 VerticalScale no
|
29306
|
+
|
29307
|
+
=head3 RIFF VP8L Tags
|
29308
|
+
|
29309
|
+
This chunk is found in lossless WebP files.
|
29310
|
+
|
29311
|
+
Index1 Tag Name Writable
|
29312
|
+
------ -------- --------
|
29313
|
+
1 ImageWidth no
|
29314
|
+
2 ImageHeight no
|
29315
|
+
|
29316
|
+
=head3 RIFF VP8X Tags
|
29317
|
+
|
29318
|
+
This chunk is found in extended WebP files.
|
29319
|
+
|
29320
|
+
Index1 Tag Name Writable
|
29321
|
+
------ -------- --------
|
29322
|
+
0 WebP_Flags no
|
29323
|
+
4 ImageWidth no
|
29324
|
+
6 ImageHeight no
|
29325
|
+
|
29326
|
+
=head3 RIFF Acidizer Tags
|
29327
|
+
|
29328
|
+
Index1 Tag Name Writable
|
29329
|
+
------ -------- --------
|
29330
|
+
0 AcidizerFlags no
|
29331
|
+
4 RootNote no
|
29332
|
+
12 Beats no
|
29333
|
+
16 Meter no
|
29334
|
+
20 Tempo no
|
29335
|
+
|
29336
|
+
=head3 RIFF BroadcastExt Tags
|
29337
|
+
|
29338
|
+
Information found in the Broadcast Audio Extension chunk (see
|
29339
|
+
L<http://tech.ebu.ch/docs/tech/tech3285.pdf>).
|
29340
|
+
|
29341
|
+
Index1 Tag Name Writable
|
29342
|
+
------ -------- --------
|
29343
|
+
0 Description no
|
29344
|
+
256 Originator no
|
29345
|
+
288 OriginatorReference no
|
29346
|
+
320 DateTimeOriginal no
|
29347
|
+
338 TimeReference no
|
29348
|
+
346 BWFVersion no
|
29349
|
+
348 BWF_UMID no
|
29350
|
+
602 CodingHistory no
|
29351
|
+
|
29352
|
+
=head3 RIFF DS64 Tags
|
29353
|
+
|
29354
|
+
64-bit data sizes for MBWF/RF64 files. See
|
29355
|
+
L<https://tech.ebu.ch/docs/tech/tech3306-2009.pdf> for the specification.
|
29356
|
+
|
29357
|
+
Index8 Tag Name Writable
|
29358
|
+
------ -------- --------
|
29359
|
+
0 RIFFSize64 no
|
29360
|
+
1 DataSize64 no
|
29361
|
+
2 NumberOfSamples64 no
|
29362
|
+
|
29363
|
+
=head3 RIFF Instrument Tags
|
29364
|
+
|
29365
|
+
Index1 Tag Name Writable
|
29366
|
+
------ -------- --------
|
29367
|
+
0 UnshiftedNote no
|
29368
|
+
1 FineTune no
|
29369
|
+
2 Gain no
|
29370
|
+
3 LowNote no
|
29371
|
+
4 HighNote no
|
29372
|
+
5 LowVelocity no
|
29373
|
+
6 HighVelocity no
|
29374
|
+
|
29375
|
+
=head3 RIFF Sampler Tags
|
29376
|
+
|
29377
|
+
Index4 Tag Name Writable
|
29378
|
+
------ -------- --------
|
29379
|
+
0 Manufacturer no
|
29380
|
+
1 Product no
|
29381
|
+
2 SamplePeriod no
|
29382
|
+
3 MIDIUnityNote no
|
29383
|
+
4 MIDIPitchFraction no
|
29384
|
+
5 SMPTEFormat no
|
29385
|
+
6 SMPTEOffset no
|
29386
|
+
7 NumSampleLoops no
|
29387
|
+
8 SamplerDataLen no
|
29388
|
+
9 SamplerData no
|
29389
|
+
|
29390
|
+
=head3 RIFF UserText Tags
|
29391
|
+
|
29392
|
+
Tags decoded from the USER-format txts stream written by Momento M6 dashcam.
|
29393
|
+
Extracted only if the ExtractEmbedded option is used.
|
29394
|
+
|
29395
|
+
Index1 Tag Name Writable
|
29396
|
+
------ -------- --------
|
29397
|
+
28 GPSAltitude no
|
29398
|
+
40 Accelerometer no
|
29399
|
+
56 GPSSpeed no
|
29400
|
+
60 GPSLatitude no
|
29401
|
+
64 GPSLongitude no
|
29402
|
+
68 GPSDateTime no
|
29403
|
+
|
29404
|
+
=head2 FLAC Tags
|
29405
|
+
|
29406
|
+
Free Lossless Audio Codec (FLAC) meta information. ExifTool also extracts
|
29407
|
+
ID3 information from these files.
|
29408
|
+
|
29409
|
+
Tag ID Tag Name Writable
|
29410
|
+
------ -------- --------
|
29411
|
+
0x0000 StreamInfo FLAC StreamInfo
|
29412
|
+
0x0001 Padding? no
|
29413
|
+
0x0002 Application_riff RIFF
|
29414
|
+
ApplicationUnknown? no
|
29415
|
+
0x0003 SeekTable? no
|
29416
|
+
0x0004 VorbisComment Vorbis Comments
|
29417
|
+
0x0005 CueSheet? no
|
29418
|
+
0x0006 Picture FLAC Picture
|
29419
|
+
|
29420
|
+
=head3 FLAC StreamInfo Tags
|
29421
|
+
|
29422
|
+
FLAC is big-endian, so bit 0 is the high-order bit in this table.
|
29423
|
+
|
29424
|
+
Tag ID Tag Name Writable
|
29425
|
+
------ -------- --------
|
29426
|
+
'Bit000-015' BlockSizeMin no
|
29427
|
+
'Bit016-031' BlockSizeMax no
|
29428
|
+
'Bit032-055' FrameSizeMin no
|
29429
|
+
'Bit056-079' FrameSizeMax no
|
29430
|
+
'Bit080-099' SampleRate no
|
29431
|
+
'Bit100-102' Channels no
|
29432
|
+
'Bit103-107' BitsPerSample no
|
29433
|
+
'Bit108-143' TotalSamples no
|
29434
|
+
'Bit144-271' MD5Signature no
|
29233
29435
|
|
29234
|
-
|
29436
|
+
=head3 FLAC Picture Tags
|
29235
29437
|
|
29236
|
-
|
29438
|
+
Index4 Tag Name Writable
|
29237
29439
|
------ -------- --------
|
29238
|
-
|
29239
|
-
|
29240
|
-
|
29440
|
+
0 PictureType no
|
29441
|
+
1 PictureMIMEType no
|
29442
|
+
2 PictureDescription no
|
29443
|
+
3 PictureWidth no
|
29444
|
+
4 PictureHeight no
|
29445
|
+
5 PictureBitsPerPixel no
|
29446
|
+
6 PictureIndexedColors no
|
29447
|
+
7 PictureLength no
|
29448
|
+
8 Picture no
|
29241
29449
|
|
29242
29450
|
=head2 Parrot Tags
|
29243
29451
|
|
@@ -29247,14 +29455,19 @@ Streaming metadata found in Parrot drone videos. See
|
|
29247
29455
|
L<https://developer.parrot.com/docs/pdraw/metadata.html> for the
|
29248
29456
|
specification.
|
29249
29457
|
|
29250
|
-
Tag ID
|
29251
|
-
------
|
29252
|
-
'P1'
|
29253
|
-
'P2'
|
29254
|
-
'P3'
|
29255
|
-
'E1'
|
29256
|
-
'E2'
|
29257
|
-
'E3'
|
29458
|
+
Tag ID Tag Name Writable
|
29459
|
+
------ -------- --------
|
29460
|
+
'P1' ParrotV1 Parrot V1
|
29461
|
+
'P2' ParrotV2 Parrot V2
|
29462
|
+
'P3' ParrotV3 Parrot V3
|
29463
|
+
'E1' ParrotTimeStamp Parrot TimeStamp
|
29464
|
+
'E2' ParrotFollowMe Parrot FollowMe
|
29465
|
+
'E3' ParrotAutomation Parrot Automation
|
29466
|
+
'application/arcore-accel' ARCoreAccel Parrot ARCoreAccel
|
29467
|
+
'application/arcore-custom-event'
|
29468
|
+
ARCoreCustom Parrot ARCoreCustom
|
29469
|
+
'application/arcore-gyro' ARCoreGyro Parrot ARCoreGyro
|
29470
|
+
'application/arcore-video-0' ARCoreVideo Parrot ARCoreVideo
|
29258
29471
|
|
29259
29472
|
=head3 Parrot V1 Tags
|
29260
29473
|
|
@@ -29382,12 +29595,652 @@ Parrot streaming metadata automation extension.
|
|
29382
29595
|
28 AutomationAnimation no
|
29383
29596
|
29 AutomationFlags no
|
29384
29597
|
|
29598
|
+
=head3 Parrot ARCoreAccel Tags
|
29599
|
+
|
29600
|
+
ARCore accelerometer data.
|
29601
|
+
|
29602
|
+
Index1 Tag Name Writable
|
29603
|
+
------ -------- --------
|
29604
|
+
4 AccelerometerUnknown? no
|
29605
|
+
5 Accelerometer no
|
29606
|
+
|
29607
|
+
=head3 Parrot ARCoreCustom Tags
|
29608
|
+
|
29609
|
+
Index1 Tag Name Writable
|
29610
|
+
------ -------- --------
|
29611
|
+
[no tags known]
|
29612
|
+
|
29613
|
+
=head3 Parrot ARCoreGyro Tags
|
29614
|
+
|
29615
|
+
ARCore accelerometer data.
|
29616
|
+
|
29617
|
+
Index1 Tag Name Writable
|
29618
|
+
------ -------- --------
|
29619
|
+
4 GyroscopeUnknown? no
|
29620
|
+
5 Gyroscope no
|
29621
|
+
|
29622
|
+
=head3 Parrot ARCoreVideo Tags
|
29623
|
+
|
29624
|
+
Index1 Tag Name Writable
|
29625
|
+
------ -------- --------
|
29626
|
+
[no tags known]
|
29627
|
+
|
29628
|
+
=head2 Ogg Tags
|
29629
|
+
|
29630
|
+
ExifTool extracts the following types of information from Ogg files. See
|
29631
|
+
L<http://www.xiph.org/vorbis/doc/> for the Ogg specification.
|
29632
|
+
|
29633
|
+
Tag ID Tag Name Writable
|
29634
|
+
------ -------- --------
|
29635
|
+
'FLAC' FLAC FLAC
|
29636
|
+
'ID3' ID3 ID3
|
29637
|
+
'Opus' Opus Opus
|
29638
|
+
'theora' Theora Theora
|
29639
|
+
'vorbis' Vorbis Vorbis
|
29640
|
+
|
29641
|
+
=head2 Vorbis Tags
|
29642
|
+
|
29643
|
+
Information extracted from Ogg Vorbis files. See
|
29644
|
+
L<http://www.xiph.org/vorbis/doc/> for the Vorbis specification.
|
29645
|
+
|
29646
|
+
Tag ID Tag Name Writable
|
29647
|
+
------ -------- --------
|
29648
|
+
0x0001 Identification Vorbis Identification
|
29649
|
+
0x0003 Comments Vorbis Comments
|
29650
|
+
|
29651
|
+
=head3 Vorbis Comments Tags
|
29652
|
+
|
29653
|
+
The tags below are only some common tags found in the Vorbis comments of Ogg
|
29654
|
+
Vorbis and Ogg FLAC audio files, however ExifTool will extract values from
|
29655
|
+
any tag found, even if not listed here.
|
29656
|
+
|
29657
|
+
Tag ID Tag Name Writable
|
29658
|
+
------ -------- --------
|
29659
|
+
'ACTOR' Actor no
|
29660
|
+
'ALBUM' Album no
|
29661
|
+
'ARTIST' Artist no+
|
29662
|
+
'COMMENT' Comment no
|
29663
|
+
'COMPOSER' Composer no
|
29664
|
+
'CONTACT' Contact no+
|
29665
|
+
'COPYRIGHT' Copyright no
|
29666
|
+
'COVERART' CoverArt no
|
29667
|
+
'COVERARTMIME' CoverArtMIMEType no
|
29668
|
+
'DATE' Date no
|
29669
|
+
'DESCRIPTION' Description no
|
29670
|
+
'DIRECTOR' Director no
|
29671
|
+
'ENCODED_BY' EncodedBy no
|
29672
|
+
'ENCODED_USING' EncodedUsing no
|
29673
|
+
'ENCODER' Encoder no
|
29674
|
+
'ENCODER_OPTIONS' EncoderOptions no
|
29675
|
+
'GENRE' Genre no
|
29676
|
+
'ISRC' ISRCNumber no
|
29677
|
+
'LICENSE' License no
|
29678
|
+
'LOCATION' Location no
|
29679
|
+
'METADATA_BLOCK_PICTURE' Picture FLAC Picture
|
29680
|
+
'ORGANIZATION' Organization no
|
29681
|
+
'PERFORMER' Performer no+
|
29682
|
+
'PRODUCER' Producer no
|
29683
|
+
'REPLAYGAIN_ALBUM_GAIN' ReplayGainAlbumGain no
|
29684
|
+
'REPLAYGAIN_ALBUM_PEAK' ReplayGainAlbumPeak no
|
29685
|
+
'REPLAYGAIN_TRACK_GAIN' ReplayGainTrackGain no
|
29686
|
+
'REPLAYGAIN_TRACK_PEAK' ReplayGainTrackPeak no
|
29687
|
+
'TITLE' Title no
|
29688
|
+
'TRACKNUMBER' TrackNumber no
|
29689
|
+
'VERSION' Version no
|
29690
|
+
'vendor' Vendor no
|
29691
|
+
|
29692
|
+
=head3 Vorbis Identification Tags
|
29693
|
+
|
29694
|
+
Index1 Tag Name Writable
|
29695
|
+
------ -------- --------
|
29696
|
+
0 VorbisVersion no
|
29697
|
+
4 AudioChannels no
|
29698
|
+
5 SampleRate no
|
29699
|
+
9 MaximumBitrate no
|
29700
|
+
13 NominalBitrate no
|
29701
|
+
17 MinimumBitrate no
|
29702
|
+
|
29703
|
+
=head2 Opus Tags
|
29704
|
+
|
29705
|
+
Information extracted from Ogg Opus files. See
|
29706
|
+
L<https://www.opus-codec.org/docs/> for the specification.
|
29707
|
+
|
29708
|
+
Tag ID Tag Name Writable
|
29709
|
+
------ -------- --------
|
29710
|
+
'OpusHead' Header Opus Header
|
29711
|
+
'OpusTags' Comments Vorbis Comments
|
29712
|
+
|
29713
|
+
=head3 Opus Header Tags
|
29714
|
+
|
29715
|
+
Index1 Tag Name Writable
|
29716
|
+
------ -------- --------
|
29717
|
+
0 OpusVersion no
|
29718
|
+
1 AudioChannels no
|
29719
|
+
4 SampleRate no
|
29720
|
+
8 OutputGain no
|
29721
|
+
|
29722
|
+
=head2 Theora Tags
|
29723
|
+
|
29724
|
+
Information extracted from Ogg Theora video files. See
|
29725
|
+
L<http://www.theora.org/doc/Theora.pdf> for the Theora specification.
|
29726
|
+
|
29727
|
+
Tag ID Tag Name Writable
|
29728
|
+
------ -------- --------
|
29729
|
+
0x0080 Identification Theora Identification
|
29730
|
+
0x0081 Comments Vorbis Comments
|
29731
|
+
|
29732
|
+
=head3 Theora Identification Tags
|
29733
|
+
|
29734
|
+
Tags extracted from the Theora identification header.
|
29735
|
+
|
29736
|
+
Index1 Tag Name Writable
|
29737
|
+
------ -------- --------
|
29738
|
+
0 TheoraVersion no
|
29739
|
+
7 ImageWidth no
|
29740
|
+
10 ImageHeight no
|
29741
|
+
13 XOffset no
|
29742
|
+
14 YOffset no
|
29743
|
+
15 FrameRate no
|
29744
|
+
23 PixelAspectRatio no
|
29745
|
+
29 ColorSpace no
|
29746
|
+
30 NominalVideoBitrate no
|
29747
|
+
33 Quality no
|
29748
|
+
34 PixelFormat no
|
29749
|
+
|
29750
|
+
=head2 APE Tags
|
29751
|
+
|
29752
|
+
Tags found in Monkey's Audio (APE) information. Only a few common tags are
|
29753
|
+
listed below, but ExifTool will extract any tag found. ExifTool supports
|
29754
|
+
APEv1 and APEv2 tags, as well as ID3 information in APE files, and will also
|
29755
|
+
read APE metadata from MP3 and MPC files.
|
29756
|
+
|
29757
|
+
Tag ID Tag Name Writable
|
29758
|
+
------ -------- --------
|
29759
|
+
'Album' Album no
|
29760
|
+
'Artist' Artist no
|
29761
|
+
'DURATION' Duration no
|
29762
|
+
'Genre' Genre no
|
29763
|
+
'Title' Title no
|
29764
|
+
'Tool Name' ToolName no
|
29765
|
+
'Tool Version' ToolVersion no
|
29766
|
+
'Track' Track no
|
29767
|
+
'Year' Year no
|
29768
|
+
|
29769
|
+
=head3 APE NewHeader Tags
|
29770
|
+
|
29771
|
+
APE MAC audio header for version 3.98 or later.
|
29772
|
+
|
29773
|
+
Index2 Tag Name Writable
|
29774
|
+
------ -------- --------
|
29775
|
+
0 CompressionLevel no
|
29776
|
+
2 BlocksPerFrame no
|
29777
|
+
4 FinalFrameBlocks no
|
29778
|
+
6 TotalFrames no
|
29779
|
+
8 BitsPerSample no
|
29780
|
+
9 Channels no
|
29781
|
+
10 SampleRate no
|
29782
|
+
|
29783
|
+
=head3 APE OldHeader Tags
|
29784
|
+
|
29785
|
+
APE MAC audio header for version 3.97 or earlier.
|
29786
|
+
|
29787
|
+
Index2 Tag Name Writable
|
29788
|
+
------ -------- --------
|
29789
|
+
0 APEVersion no
|
29790
|
+
1 CompressionLevel no
|
29791
|
+
3 Channels no
|
29792
|
+
4 SampleRate no
|
29793
|
+
10 TotalFrames no
|
29794
|
+
12 FinalFrameBlocks no
|
29795
|
+
|
29796
|
+
=head2 Audible Tags
|
29797
|
+
|
29798
|
+
ExifTool will extract any information found in the metadata dictionary of
|
29799
|
+
Audible .AA files, even if not listed in the table below.
|
29800
|
+
|
29801
|
+
Tag ID Tag Name Writable
|
29802
|
+
------ -------- --------
|
29803
|
+
'_chapter_count' ChapterCount no
|
29804
|
+
'_cover_art' CoverArt no
|
29805
|
+
'author' Author no
|
29806
|
+
'copyright' Copyright no
|
29807
|
+
'pub_date_start' PublishDateStart no
|
29808
|
+
'pubdate' PublishDate no
|
29809
|
+
|
29810
|
+
=head3 Audible tags Tags
|
29811
|
+
|
29812
|
+
Information found in "tags" atom of Audible M4B audio books.
|
29813
|
+
|
29814
|
+
Tag ID Tag Name Writable
|
29815
|
+
------ -------- --------
|
29816
|
+
'cvrx' Audible_cvrx Audible cvrx
|
29817
|
+
'meta' Audible_meta Audible meta
|
29818
|
+
'tseg' Audible_tseg Audible tseg
|
29819
|
+
|
29820
|
+
=head3 Audible cvrx Tags
|
29821
|
+
|
29822
|
+
Audible cover art information in M4B audio books.
|
29823
|
+
|
29824
|
+
Tag Name Writable
|
29825
|
+
-------- --------
|
29826
|
+
CoverArt no
|
29827
|
+
CoverArtType no
|
29828
|
+
|
29829
|
+
=head3 Audible meta Tags
|
29830
|
+
|
29831
|
+
Information found in Audible M4B "meta" atom.
|
29832
|
+
|
29833
|
+
Tag ID Tag Name Writable
|
29834
|
+
------ -------- --------
|
29835
|
+
'ALBUMARTIST' AlbumArtist no
|
29836
|
+
'Album' Album no
|
29837
|
+
'Artist' Artist no
|
29838
|
+
'Comment' Comment no
|
29839
|
+
'Genre' Genre no
|
29840
|
+
'SUBTITLE' Subtitle no
|
29841
|
+
'TOOL' CreatorTool no
|
29842
|
+
'Title' Title no
|
29843
|
+
'Year' Year no
|
29844
|
+
'itunesmediatype' iTunesMediaType no
|
29845
|
+
'track' ChapterName no
|
29846
|
+
|
29847
|
+
=head3 Audible tseg Tags
|
29848
|
+
|
29849
|
+
Tag ID Tag Name Writable
|
29850
|
+
------ -------- --------
|
29851
|
+
'meta' Audible_meta2 Audible meta
|
29852
|
+
'tshd' ChapterNumber no
|
29853
|
+
|
29854
|
+
=head2 MPC Tags
|
29855
|
+
|
29856
|
+
Tags used in Musepack (MPC) audio files. ExifTool also extracts ID3 and APE
|
29857
|
+
information from these files.
|
29858
|
+
|
29859
|
+
Tag ID Tag Name Writable
|
29860
|
+
------ -------- --------
|
29861
|
+
'Bit032-063' TotalFrames no
|
29862
|
+
'Bit080-081' SampleRate no
|
29863
|
+
'Bit084-087' Quality no
|
29864
|
+
'Bit088-093' MaxBand no
|
29865
|
+
'Bit096-111' ReplayGainTrackPeak no
|
29866
|
+
'Bit112-127' ReplayGainTrackGain no
|
29867
|
+
'Bit128-143' ReplayGainAlbumPeak no
|
29868
|
+
'Bit144-159' ReplayGainAlbumGain no
|
29869
|
+
'Bit179' FastSeek no
|
29870
|
+
'Bit191' Gapless no
|
29871
|
+
'Bit216-223' EncoderVersion no
|
29872
|
+
|
29873
|
+
=head2 MPEG Tags
|
29874
|
+
|
29875
|
+
The MPEG format doesn't specify any file-level meta information. In lieu of
|
29876
|
+
this, information is extracted from the first audio and video frame headers
|
29877
|
+
in the file.
|
29878
|
+
|
29879
|
+
=head3 MPEG Audio Tags
|
29880
|
+
|
29881
|
+
Tag ID Tag Name Writable
|
29882
|
+
------ -------- --------
|
29883
|
+
'Bit11-12' MPEGAudioVersion no
|
29884
|
+
'Bit13-14' AudioLayer no
|
29885
|
+
'Bit16-19' AudioBitrate no
|
29886
|
+
'Bit20-21' SampleRate no
|
29887
|
+
'Bit24-25' ChannelMode no
|
29888
|
+
'Bit26' MSStereo no
|
29889
|
+
'Bit26-27' ModeExtension no
|
29890
|
+
'Bit27' IntensityStereo no
|
29891
|
+
'Bit28' CopyrightFlag no
|
29892
|
+
'Bit29' OriginalMedia no
|
29893
|
+
'Bit30-31' Emphasis no
|
29894
|
+
|
29895
|
+
=head3 MPEG Video Tags
|
29896
|
+
|
29897
|
+
Tag ID Tag Name Writable
|
29898
|
+
------ -------- --------
|
29899
|
+
'Bit00-11' ImageWidth no
|
29900
|
+
'Bit12-23' ImageHeight no
|
29901
|
+
'Bit24-27' AspectRatio no
|
29902
|
+
'Bit28-31' FrameRate no
|
29903
|
+
'Bit32-49' VideoBitrate no
|
29904
|
+
|
29905
|
+
=head3 MPEG Xing Tags
|
29906
|
+
|
29907
|
+
These tags are extracted from the Xing/Info frame.
|
29908
|
+
|
29909
|
+
Tag Name Writable
|
29910
|
+
-------- --------
|
29911
|
+
Encoder no
|
29912
|
+
LameHeader MPEG Lame
|
29913
|
+
LameQuality no
|
29914
|
+
LameVBRQuality no
|
29915
|
+
VBRBytes no
|
29916
|
+
VBRFrames no
|
29917
|
+
VBRScale no
|
29918
|
+
|
29919
|
+
=head3 MPEG Lame Tags
|
29920
|
+
|
29921
|
+
Tags extracted from Lame 3.90 or later header.
|
29922
|
+
|
29923
|
+
Index1 Tag Name Writable
|
29924
|
+
------ -------- --------
|
29925
|
+
9 LameMethod no
|
29926
|
+
10 LameLowPassFilter no
|
29927
|
+
20 LameBitrate no
|
29928
|
+
24 LameStereoMode no
|
29929
|
+
|
29930
|
+
=head2 M2TS Tags
|
29931
|
+
|
29932
|
+
The MPEG-2 transport stream is used as a container for many different
|
29933
|
+
audio/video formats (including AVCHD). This table lists information
|
29934
|
+
extracted from M2TS files.
|
29935
|
+
|
29936
|
+
Tag Name Writable
|
29937
|
+
-------- --------
|
29938
|
+
AudioStreamType no
|
29939
|
+
Duration no
|
29940
|
+
VideoStreamType no
|
29941
|
+
_AC3 M2TS AC3
|
29942
|
+
_H264 H264
|
29943
|
+
_MISB MISB
|
29944
|
+
|
29945
|
+
=head3 M2TS AC3 Tags
|
29946
|
+
|
29947
|
+
Tags extracted from AC-3 audio streams.
|
29948
|
+
|
29949
|
+
Tag Name Writable
|
29950
|
+
-------- --------
|
29951
|
+
AudioBitrate no
|
29952
|
+
AudioChannels no
|
29953
|
+
AudioSampleRate no
|
29954
|
+
SurroundMode no
|
29955
|
+
|
29956
|
+
=head2 H264 Tags
|
29957
|
+
|
29958
|
+
Tags extracted from H.264 video streams. The metadata for AVCHD videos is
|
29959
|
+
stored in this stream.
|
29960
|
+
|
29961
|
+
Tag Name Writable
|
29962
|
+
-------- --------
|
29963
|
+
ImageHeight no
|
29964
|
+
ImageWidth no
|
29965
|
+
MDPM H264 MDPM
|
29966
|
+
|
29967
|
+
=head3 H264 MDPM Tags
|
29968
|
+
|
29969
|
+
The following tags are decoded from the Modified Digital Video Pack Metadata
|
29970
|
+
(MDPM) of the unregistered user data with UUID
|
29971
|
+
17ee8c60f84d11d98cd60800200c9a66 in the H.264 Supplemental Enhancement
|
29972
|
+
Information (SEI). I<[Yes, this description is confusing, but nothing
|
29973
|
+
compared to the challenge of actually decoding the data!]> This information
|
29974
|
+
may exist at regular intervals through the entire video, but only the first
|
29975
|
+
occurrence is extracted unless the ExtractEmbedded (-ee) option is used (in
|
29976
|
+
which case subsequent occurrences are extracted as sub-documents).
|
29977
|
+
|
29978
|
+
Tag ID Tag Name Writable
|
29979
|
+
------ -------- --------
|
29980
|
+
0x0013 TimeCode no
|
29981
|
+
0x0018 DateTimeOriginal no
|
29982
|
+
0x0070 Camera1 H264 Camera1
|
29983
|
+
0x0071 Camera2 H264 Camera2
|
29984
|
+
0x007f Shutter H264 Shutter
|
29985
|
+
0x00a0 ExposureTime no
|
29986
|
+
0x00a1 FNumber no
|
29987
|
+
0x00a2 ExposureProgram no
|
29988
|
+
0x00a3 BrightnessValue no
|
29989
|
+
0x00a4 ExposureCompensation no
|
29990
|
+
0x00a5 MaxApertureValue no
|
29991
|
+
0x00a6 Flash no
|
29992
|
+
0x00a7 CustomRendered no
|
29993
|
+
0x00a8 WhiteBalance no
|
29994
|
+
0x00a9 FocalLengthIn35mmFormat no
|
29995
|
+
0x00aa SceneCaptureType no
|
29996
|
+
0x00b0 GPSVersionID no
|
29997
|
+
0x00b1 GPSLatitudeRef no
|
29998
|
+
0x00b2 GPSLatitude no
|
29999
|
+
0x00b5 GPSLongitudeRef no
|
30000
|
+
0x00b6 GPSLongitude no
|
30001
|
+
0x00b9 GPSAltitudeRef no
|
30002
|
+
0x00ba GPSAltitude no
|
30003
|
+
0x00bb GPSTimeStamp no
|
30004
|
+
0x00be GPSStatus no
|
30005
|
+
0x00bf GPSMeasureMode no
|
30006
|
+
0x00c0 GPSDOP no
|
30007
|
+
0x00c1 GPSSpeedRef no
|
30008
|
+
0x00c2 GPSSpeed no
|
30009
|
+
0x00c3 GPSTrackRef no
|
30010
|
+
0x00c4 GPSTrack no
|
30011
|
+
0x00c5 GPSImgDirectionRef no
|
30012
|
+
0x00c6 GPSImgDirection no
|
30013
|
+
0x00c7 GPSMapDatum no
|
30014
|
+
0x00ca GPSDateStamp no
|
30015
|
+
0x00e0 MakeModel H264 MakeModel
|
30016
|
+
0x00e1 RecInfo H264 RecInfo
|
30017
|
+
0x00e4 Model no
|
30018
|
+
0x00ee FrameInfo H264 FrameInfo
|
30019
|
+
|
30020
|
+
=head3 H264 Camera1 Tags
|
30021
|
+
|
30022
|
+
Index1 Tag Name Writable
|
30023
|
+
------ -------- --------
|
30024
|
+
0 ApertureSetting no
|
30025
|
+
1 Gain no
|
30026
|
+
1.1 ExposureProgram no
|
30027
|
+
2.1 WhiteBalance no
|
30028
|
+
3 Focus no
|
30029
|
+
|
30030
|
+
=head3 H264 Camera2 Tags
|
30031
|
+
|
30032
|
+
Index1 Tag Name Writable
|
30033
|
+
------ -------- --------
|
30034
|
+
1 ImageStabilization no
|
30035
|
+
|
30036
|
+
=head3 H264 Shutter Tags
|
30037
|
+
|
30038
|
+
Index2 Tag Name Writable
|
30039
|
+
------ -------- --------
|
30040
|
+
1.1 ExposureTime no
|
30041
|
+
|
30042
|
+
=head3 H264 MakeModel Tags
|
30043
|
+
|
30044
|
+
Index2 Tag Name Writable
|
30045
|
+
------ -------- --------
|
30046
|
+
0 Make no
|
30047
|
+
|
30048
|
+
=head3 H264 RecInfo Tags
|
30049
|
+
|
30050
|
+
Recording information stored by some Canon video cameras.
|
30051
|
+
|
30052
|
+
Index1 Tag Name Writable
|
30053
|
+
------ -------- --------
|
30054
|
+
0 RecordingMode no
|
30055
|
+
|
30056
|
+
=head3 H264 FrameInfo Tags
|
30057
|
+
|
30058
|
+
Frame rate information stored by some Canon video cameras.
|
30059
|
+
|
30060
|
+
Index1 Tag Name Writable
|
30061
|
+
------ -------- --------
|
30062
|
+
0 CaptureFrameRate no
|
30063
|
+
1 VideoFrameRate no
|
30064
|
+
|
30065
|
+
=head2 MISB Tags
|
30066
|
+
|
30067
|
+
These tags are extracted from STANAG-4609 MISB (Motion Industry Standards
|
30068
|
+
Board) KLV-format metadata in M2TS videos.
|
30069
|
+
|
30070
|
+
Tag ID Tag Name Writable
|
30071
|
+
------ -------- --------
|
30072
|
+
'060E2B34030101010E01030302000000' Security MISB Security
|
30073
|
+
'060e2b3402030101434e415644494147'
|
30074
|
+
ChurchillNav MISB ChurchillNav
|
30075
|
+
'060e2b34020b01010e01030101000000'
|
30076
|
+
UASDataLink MISB UASDatalink
|
30077
|
+
'<other>' Unknown MISB Unknown
|
30078
|
+
|
30079
|
+
=head3 MISB Security Tags
|
30080
|
+
|
30081
|
+
Tags extracted from the MISB ST 0102.11 Security Metadata local set.
|
30082
|
+
|
30083
|
+
Tag ID Tag Name Writable
|
30084
|
+
------ -------- --------
|
30085
|
+
0x0001 SecurityClassification no
|
30086
|
+
0x0002 ClassifyingCountryCodeMethod no
|
30087
|
+
0x0003 ClassifyingCountry no
|
30088
|
+
0x0004 SecuritySCI-SHIInformation no
|
30089
|
+
0x0005 Caveats no
|
30090
|
+
0x0006 ReleasingInstructions no
|
30091
|
+
0x0007 ClassifiedBy no
|
30092
|
+
0x0008 DerivedFrom no
|
30093
|
+
0x0009 ClassificationReason no
|
30094
|
+
0x000a DeclassificationDate no
|
30095
|
+
0x000b ClassificationAndMarkingSystem no
|
30096
|
+
0x000c ObjectCountryCodingMethod no
|
30097
|
+
0x000d ObjectCountryCodes no
|
30098
|
+
0x000e ClassificationComments no
|
30099
|
+
0x000f UMID no
|
30100
|
+
0x0010 StreamID no
|
30101
|
+
0x0011 TransportStreamID no
|
30102
|
+
0x0015 ItemDesignatorID no
|
30103
|
+
0x0016 SecurityVersion no
|
30104
|
+
0x0017 ClassifyingCountryCodingMethodDate no
|
30105
|
+
0x0018 ObjectCountryCodingMethodDate no
|
30106
|
+
|
30107
|
+
=head3 MISB ChurchillNav Tags
|
30108
|
+
|
30109
|
+
Proprietary tags used by Churchill Navigation units. These tags are all
|
30110
|
+
currently unknown, but extracted with the Unknown option.
|
30111
|
+
|
30112
|
+
Tag ID Tag Name Writable
|
30113
|
+
------ -------- --------
|
30114
|
+
[no tags known]
|
30115
|
+
|
30116
|
+
=head3 MISB UASDatalink Tags
|
30117
|
+
|
30118
|
+
Tags extracted from the MISB ST 0601.11 UAS Datalink local set.
|
30119
|
+
|
30120
|
+
Tag ID Tag Name Writable
|
30121
|
+
------ -------- --------
|
30122
|
+
0x0001 Checksum no
|
30123
|
+
0x0002 GPSDateTime no
|
30124
|
+
0x0003 MissionID no
|
30125
|
+
0x0004 TailNumber no
|
30126
|
+
0x0005 GPSTrack no
|
30127
|
+
0x0006 PitchAngle no
|
30128
|
+
0x0007 RollAngle no
|
30129
|
+
0x0008 TrueAirspeed no
|
30130
|
+
0x0009 IndicatedAirspeed no
|
30131
|
+
0x000a ProjectIDCode no
|
30132
|
+
0x000b SensorName no
|
30133
|
+
0x000c ImageCoordinateSystem no
|
30134
|
+
0x000d GPSLatitude no
|
30135
|
+
0x000e GPSLongitude no
|
30136
|
+
0x000f GPSAltitude no
|
30137
|
+
0x0010 HorizontalFieldOfView no
|
30138
|
+
0x0011 VerticalFieldOfView no
|
30139
|
+
0x0012 SensorRelativeAzimuthAngle no
|
30140
|
+
0x0013 SensorRelativeElevationAngle no
|
30141
|
+
0x0014 SensorRelativeRollAngle no
|
30142
|
+
0x0015 SlantRange no
|
30143
|
+
0x0016 TargetWidth no
|
30144
|
+
0x0017 FrameCenterLatitude no
|
30145
|
+
0x0018 FrameCenterLongitude no
|
30146
|
+
0x0019 FrameCenterElevation no
|
30147
|
+
0x001a OffsetCornerLatitude1 no
|
30148
|
+
0x001b OffsetCornerLongitude1 no
|
30149
|
+
0x001c OffsetCornerLatitude2 no
|
30150
|
+
0x001d OffsetCornerLongitude2 no
|
30151
|
+
0x001e OffsetCornerLatitude3 no
|
30152
|
+
0x001f OffsetCornerLongitude3 no
|
30153
|
+
0x0020 OffsetCornerLatitude4 no
|
30154
|
+
0x0021 OffsetCornerLongitude4 no
|
30155
|
+
0x0022 IcingDetected no
|
30156
|
+
0x0023 WindDirection no
|
30157
|
+
0x0024 WindSpeed no
|
30158
|
+
0x0025 StaticPressure no
|
30159
|
+
0x0026 DensityAltitude no
|
30160
|
+
0x0027 AirTemperature no
|
30161
|
+
0x0028 TargetLocationLatitude no
|
30162
|
+
0x0029 TargetLocationLongitude no
|
30163
|
+
0x002a TargetLocationElevation no
|
30164
|
+
0x002b TargetTrackGateWidth no
|
30165
|
+
0x002c TargetTrackGateHeight no
|
30166
|
+
0x002d TargetErrorEstimateCE90 no
|
30167
|
+
0x002e TargetErrorEstimateLE90 no
|
30168
|
+
0x002f GenericFlagData01 no
|
30169
|
+
0x0030 SecurityLocalMetadataSet MISB Security
|
30170
|
+
0x0031 DifferentialPressure no
|
30171
|
+
0x0032 AngleOfAttack no
|
30172
|
+
0x0033 VerticalSpeed no
|
30173
|
+
0x0034 SideslipAngle no
|
30174
|
+
0x0035 AirfieldBarometricPressure no
|
30175
|
+
0x0036 AirfieldElevation no
|
30176
|
+
0x0037 RelativeHumidity no
|
30177
|
+
0x0038 GPSSpeed no
|
30178
|
+
0x0039 GroundRange no
|
30179
|
+
0x003a FuelRemaining no
|
30180
|
+
0x003b CallSign no
|
30181
|
+
0x003c WeaponLoad no
|
30182
|
+
0x003d WeaponFired no
|
30183
|
+
0x003e LaserPRFCode no
|
30184
|
+
0x003f SensorFieldOfViewName no
|
30185
|
+
0x0040 MagneticHeading no
|
30186
|
+
0x0041 UAS_LSVersionNumber no
|
30187
|
+
0x0042 TargetLocationCovarianceMatrix no
|
30188
|
+
0x0043 AlternateLatitude no
|
30189
|
+
0x0044 AlternateLongitude no
|
30190
|
+
0x0045 AlternateAltitude no
|
30191
|
+
0x0046 AlternateName no
|
30192
|
+
0x0047 AlternateHeading no
|
30193
|
+
0x0048 EventStartTime no
|
30194
|
+
0x0049 RVTLocalSet MISB Unknown
|
30195
|
+
0x004a VMTIDataSet MISB Unknown
|
30196
|
+
0x004b SensorEllipsoidHeight no
|
30197
|
+
0x004c AlternateEllipsoidHeight no
|
30198
|
+
0x004d OperationalMode no
|
30199
|
+
0x004e FrameCenterHeightAboveEllipsoid no
|
30200
|
+
0x004f SensorVelocityNorth no
|
30201
|
+
0x0050 SensorVelocityEast no
|
30202
|
+
0x0051 ImageHorizonPixelPack no
|
30203
|
+
0x0052 CornerLatitude1 no
|
30204
|
+
0x0053 CornerLongitude1 no
|
30205
|
+
0x0054 CornerLatitude2 no
|
30206
|
+
0x0055 CornerLongitude2 no
|
30207
|
+
0x0056 CornerLatitude3 no
|
30208
|
+
0x0057 CornerLongitude3 no
|
30209
|
+
0x0058 CornerLatitude4 no
|
30210
|
+
0x0059 CornerLongitude4 no
|
30211
|
+
0x005a FullPitchAngle no
|
30212
|
+
0x005b FullRollAngle no
|
30213
|
+
0x005c FullAngleOfAttack no
|
30214
|
+
0x005d FullSideslipAngle no
|
30215
|
+
0x005e MIISCoreIdentifier no
|
30216
|
+
0x005f SARMotionImageryData MISB Unknown
|
30217
|
+
0x0060 TargetWidthExtended no
|
30218
|
+
0x0061 RangeImageLocalSet MISB Unknown
|
30219
|
+
0x0062 GeoregistrationLocalSet MISB Unknown
|
30220
|
+
0x0063 CompositeImagingLocalSet MISB Unknown
|
30221
|
+
0x0064 SegmentLocalSet MISB Unknown
|
30222
|
+
0x0065 AmendLocalSet MISB Unknown
|
30223
|
+
0x0066 SDCC-FLP no
|
30224
|
+
0x0067 DensityAltitudeExtended no
|
30225
|
+
0x0068 SensorEllipsoidHeightExtended no
|
30226
|
+
0x0069 AlternateEllipsoidHeightExtended no
|
30227
|
+
|
30228
|
+
=head3 MISB Unknown Tags
|
30229
|
+
|
30230
|
+
Other tags are extracted with the Unknown option.
|
30231
|
+
|
30232
|
+
Tag ID Tag Name Writable
|
30233
|
+
------ -------- --------
|
30234
|
+
[no tags known]
|
30235
|
+
|
29385
30236
|
=head2 Matroska Tags
|
29386
30237
|
|
29387
30238
|
The following tags are extracted from Matroska multimedia container files.
|
29388
30239
|
This container format is used by file types such as MKA, MKV, MKS and WEBM.
|
29389
|
-
For speed, ExifTool extracts tags only up to the first Cluster
|
29390
|
-
Verbose (-v)
|
30240
|
+
For speed, by default ExifTool extracts tags only up to the first Cluster.
|
30241
|
+
However, the Verbose (-v) and Unknown = 2 (-U) options force processing of
|
30242
|
+
Cluster data, and the ExtractEmbedded (-ee) option skips over Clusters to
|
30243
|
+
read subsequent tags. See
|
29391
30244
|
L<http://www.matroska.org/technical/specs/index.html> for the official
|
29392
30245
|
Matroska specification.
|
29393
30246
|
|
@@ -29569,6 +30422,7 @@ Matroska specification.
|
|
29569
30422
|
0x3eb5 Signature? no
|
29570
30423
|
0x7670 Projection Matroska Projection
|
29571
30424
|
0x2b59c TrackLanguage no
|
30425
|
+
0x2b59d TrackLanguageIETF no
|
29572
30426
|
0x3314f TrackTimecodeScale no
|
29573
30427
|
0x383e3 FrameRate no
|
29574
30428
|
0x3e383 VideoFrameRate no
|
@@ -31715,410 +32569,6 @@ Redcode version 2 header.
|
|
31715
32569
|
80 ImageHeight no
|
31716
32570
|
86 FrameRate no
|
31717
32571
|
|
31718
|
-
=head2 RIFF Tags
|
31719
|
-
|
31720
|
-
The RIFF container format is used various types of fines including AVI, WAV,
|
31721
|
-
WEBP, LA, OFR, PAC and WV. According to the EXIF specification, Meta
|
31722
|
-
information is embedded in two types of RIFF C<LIST> chunks: C<INFO> and
|
31723
|
-
C<exif>, and information about the audio content is stored in the C<fmt >
|
31724
|
-
chunk. As well as this information, some video information and proprietary
|
31725
|
-
manufacturer-specific information is also extracted.
|
31726
|
-
|
31727
|
-
Large AVI videos may be a concatenation of two or more RIFF chunks. For
|
31728
|
-
these files, information is extracted from subsequent RIFF chunks as
|
31729
|
-
sub-documents, but the Duration is calculated for the full video.
|
31730
|
-
|
31731
|
-
Tag ID Tag Name Writable
|
31732
|
-
------ -------- --------
|
31733
|
-
'ALPH' ALPH RIFF ALPH
|
31734
|
-
'ANIM' ANIM RIFF ANIM
|
31735
|
-
'ANMF' ANMF RIFF ANMF
|
31736
|
-
'CSET' CharacterSet RIFF CSET
|
31737
|
-
'EXIF' EXIF EXIF
|
31738
|
-
UnknownEXIF no
|
31739
|
-
'ICCP' ICC_Profile ICC_Profile
|
31740
|
-
'IDIT' DateTimeOriginal no
|
31741
|
-
'JUNK' OlympusJunk Olympus AVI
|
31742
|
-
CasioJunk EXIF
|
31743
|
-
RicohJunk Ricoh AVI
|
31744
|
-
PentaxJunk Pentax Junk
|
31745
|
-
PentaxJunk2 Pentax Junk2
|
31746
|
-
LucasJunk QuickTime Stream
|
31747
|
-
TextJunk no
|
31748
|
-
'JUNQ' OldXMP no
|
31749
|
-
'LIST_INF0' Info RIFF Info
|
31750
|
-
'LIST_INFO' Info RIFF Info
|
31751
|
-
'LIST_Tdat' Tdat RIFF Tdat
|
31752
|
-
'LIST_adtl' AssociatedDataList RIFF
|
31753
|
-
'LIST_exif' Exif RIFF Exif
|
31754
|
-
'LIST_hdrl' Hdrl RIFF Hdrl
|
31755
|
-
'LIST_hydt' PentaxData Pentax AVI
|
31756
|
-
'LIST_ncdt' NikonData Nikon AVI
|
31757
|
-
'LIST_pntx' PentaxData2 Pentax AVI
|
31758
|
-
'SGLT' BikeBroAccel QuickTime Stream
|
31759
|
-
'SLLT' BikeBroGPS QuickTime Stream
|
31760
|
-
'VP8 ' VP8Bitstream RIFF VP8
|
31761
|
-
'VP8L' VP8L RIFF VP8L
|
31762
|
-
'VP8X' VP8X RIFF VP8X
|
31763
|
-
'XMP ' XMP XMP
|
31764
|
-
'_PMX' XMP XMP
|
31765
|
-
'aXML' AXML XMP XML
|
31766
|
-
'afsp' Afsp no
|
31767
|
-
'bext' BroadcastExtension RIFF BroadcastExt
|
31768
|
-
'cue ' CuePoints no
|
31769
|
-
'ds64' DataSize64 RIFF DS64
|
31770
|
-
'fact' NumberOfSamples no
|
31771
|
-
'fmt ' AudioFormat RIFF AudioFormat
|
31772
|
-
'gps0' GPSTrack QuickTime Stream
|
31773
|
-
'gsen' GSensor QuickTime Stream
|
31774
|
-
'iXML' IXML XMP XML
|
31775
|
-
'id3 ' ID3 ID3
|
31776
|
-
'inst' Instrument RIFF Instrument
|
31777
|
-
'labl' CuePointLabel no
|
31778
|
-
'list' ListType no
|
31779
|
-
'ltxt' LabeledText no
|
31780
|
-
'note' CuePointNote no
|
31781
|
-
'olym' Olym Olympus WAV
|
31782
|
-
'plst' Playlist no
|
31783
|
-
'smpl' Sampler RIFF Sampler
|
31784
|
-
'tx_USER' UserText RIFF UserText
|
31785
|
-
'tx_Unknown' Text no
|
31786
|
-
|
31787
|
-
=head3 RIFF ALPH Tags
|
31788
|
-
|
31789
|
-
WebP alpha chunk.
|
31790
|
-
|
31791
|
-
Index1 Tag Name Writable
|
31792
|
-
------ -------- --------
|
31793
|
-
0 AlphaPreprocessing no
|
31794
|
-
0.1 AlphaFiltering no
|
31795
|
-
0.2 AlphaCompression no
|
31796
|
-
|
31797
|
-
=head3 RIFF ANIM Tags
|
31798
|
-
|
31799
|
-
WebP animation chunk.
|
31800
|
-
|
31801
|
-
Index1 Tag Name Writable
|
31802
|
-
------ -------- --------
|
31803
|
-
0 BackgroundColor no
|
31804
|
-
4 AnimationLoopCount no
|
31805
|
-
|
31806
|
-
=head3 RIFF ANMF Tags
|
31807
|
-
|
31808
|
-
WebP animation frame chunk.
|
31809
|
-
|
31810
|
-
Index1 Tag Name Writable
|
31811
|
-
------ -------- --------
|
31812
|
-
12 Duration no
|
31813
|
-
|
31814
|
-
=head3 RIFF CSET Tags
|
31815
|
-
|
31816
|
-
Index2 Tag Name Writable
|
31817
|
-
------ -------- --------
|
31818
|
-
0 CodePage no
|
31819
|
-
1 CountryCode no
|
31820
|
-
2 LanguageCode no
|
31821
|
-
3 Dialect no
|
31822
|
-
|
31823
|
-
=head3 RIFF Info Tags
|
31824
|
-
|
31825
|
-
RIFF INFO tags found in AVI video and WAV audio files. Tags which are part
|
31826
|
-
of the EXIF 2.3 specification have an underlined Tag Name in the HTML
|
31827
|
-
version of this documentation. Other tags are found in AVI files generated
|
31828
|
-
by some software.
|
31829
|
-
|
31830
|
-
Tag ID Tag Name Writable
|
31831
|
-
------ -------- --------
|
31832
|
-
'AGES' Rated no
|
31833
|
-
'CMNT' Comment no
|
31834
|
-
'CODE' EncodedBy no
|
31835
|
-
'COMM' Comments no
|
31836
|
-
'DIRC' Directory no
|
31837
|
-
'DISP' SoundSchemeTitle no
|
31838
|
-
'DTIM' DateTimeOriginal no
|
31839
|
-
'GENR' Genre no
|
31840
|
-
'IARL' ArchivalLocation no
|
31841
|
-
'IART' Artist no
|
31842
|
-
'IAS1' FirstLanguage no
|
31843
|
-
'IAS2' SecondLanguage no
|
31844
|
-
'IAS3' ThirdLanguage no
|
31845
|
-
'IAS4' FourthLanguage no
|
31846
|
-
'IAS5' FifthLanguage no
|
31847
|
-
'IAS6' SixthLanguage no
|
31848
|
-
'IAS7' SeventhLanguage no
|
31849
|
-
'IAS8' EighthLanguage no
|
31850
|
-
'IAS9' NinthLanguage no
|
31851
|
-
'IBSU' BaseURL no
|
31852
|
-
'ICAS' DefaultAudioStream no
|
31853
|
-
'ICDS' CostumeDesigner no
|
31854
|
-
'ICMS' Commissioned no
|
31855
|
-
'ICMT' Comment no
|
31856
|
-
'ICNM' Cinematographer no
|
31857
|
-
'ICNT' Country no
|
31858
|
-
'ICOP' Copyright no
|
31859
|
-
'ICRD' DateCreated no
|
31860
|
-
'ICRP' Cropped no
|
31861
|
-
'IDIM' Dimensions no
|
31862
|
-
'IDIT' DateTimeOriginal no
|
31863
|
-
'IDPI' DotsPerInch no
|
31864
|
-
'IDST' DistributedBy no
|
31865
|
-
'IEDT' EditedBy no
|
31866
|
-
'IENC' EncodedBy no
|
31867
|
-
'IENG' Engineer no
|
31868
|
-
'IGNR' Genre no
|
31869
|
-
'IKEY' Keywords no
|
31870
|
-
'ILGT' Lightness no
|
31871
|
-
'ILGU' LogoURL no
|
31872
|
-
'ILIU' LogoIconURL no
|
31873
|
-
'ILNG' Language no
|
31874
|
-
'IMBI' MoreInfoBannerImage no
|
31875
|
-
'IMBU' MoreInfoBannerURL no
|
31876
|
-
'IMED' Medium no
|
31877
|
-
'IMIT' MoreInfoText no
|
31878
|
-
'IMIU' MoreInfoURL no
|
31879
|
-
'IMUS' MusicBy no
|
31880
|
-
'INAM' Title no
|
31881
|
-
'IPDS' ProductionDesigner no
|
31882
|
-
'IPLT' NumColors no
|
31883
|
-
'IPRD' Product no
|
31884
|
-
'IPRO' ProducedBy no
|
31885
|
-
'IRIP' RippedBy no
|
31886
|
-
'IRTD' Rating no
|
31887
|
-
'ISBJ' Subject no
|
31888
|
-
'ISFT' Software no
|
31889
|
-
'ISGN' SecondaryGenre no
|
31890
|
-
'ISHP' Sharpness no
|
31891
|
-
'ISMP' TimeCode no
|
31892
|
-
'ISRC' Source no
|
31893
|
-
'ISRF' SourceForm no
|
31894
|
-
'ISTD' ProductionStudio no
|
31895
|
-
'ISTR' Starring no
|
31896
|
-
'ITCH' Technician no
|
31897
|
-
'ITRK' TrackNumber no
|
31898
|
-
'IWMU' WatermarkURL no
|
31899
|
-
'IWRI' WrittenBy no
|
31900
|
-
'LANG' Language no
|
31901
|
-
'LOCA' Location no
|
31902
|
-
'PRT1' Part no
|
31903
|
-
'PRT2' NumberOfParts no
|
31904
|
-
'RATE' Rate no
|
31905
|
-
'STAR' Starring no
|
31906
|
-
'STAT' Statistics no
|
31907
|
-
'TAPE' TapeName no
|
31908
|
-
'TCDO' EndTimecode no
|
31909
|
-
'TCOD' StartTimecode no
|
31910
|
-
'TITL' Title no
|
31911
|
-
'TLEN' Length no
|
31912
|
-
'TORG' Organization no
|
31913
|
-
'TRCK' TrackNumber no
|
31914
|
-
'TURL' URL no
|
31915
|
-
'TVER' Version no
|
31916
|
-
'VMAJ' VegasVersionMajor no
|
31917
|
-
'VMIN' VegasVersionMinor no
|
31918
|
-
'YEAR' Year no
|
31919
|
-
|
31920
|
-
=head3 RIFF Tdat Tags
|
31921
|
-
|
31922
|
-
Tag ID Tag Name Writable
|
31923
|
-
------ -------- --------
|
31924
|
-
[no tags known]
|
31925
|
-
|
31926
|
-
=head3 RIFF Exif Tags
|
31927
|
-
|
31928
|
-
These tags are part of the EXIF 2.3 specification for WAV audio files.
|
31929
|
-
|
31930
|
-
Tag ID Tag Name Writable
|
31931
|
-
------ -------- --------
|
31932
|
-
'ecor' Make no
|
31933
|
-
'emdl' Model no
|
31934
|
-
'emnt' MakerNotes no
|
31935
|
-
'erel' RelatedImageFile no
|
31936
|
-
'etim' TimeCreated no
|
31937
|
-
'eucm' UserComment no
|
31938
|
-
'ever' ExifVersion no
|
31939
|
-
|
31940
|
-
=head3 RIFF Hdrl Tags
|
31941
|
-
|
31942
|
-
Tag ID Tag Name Writable
|
31943
|
-
------ -------- --------
|
31944
|
-
'IDIT' DateTimeOriginal no
|
31945
|
-
'ISMP' TimeCode no
|
31946
|
-
'LIST_odml' OpenDML RIFF OpenDML
|
31947
|
-
'LIST_strl' Stream RIFF Stream
|
31948
|
-
'avih' AVIHeader RIFF AVIHeader
|
31949
|
-
|
31950
|
-
=head3 RIFF OpenDML Tags
|
31951
|
-
|
31952
|
-
Tag ID Tag Name Writable
|
31953
|
-
------ -------- --------
|
31954
|
-
'dmlh' ExtendedAVIHeader RIFF ExtAVIHdr
|
31955
|
-
|
31956
|
-
=head3 RIFF ExtAVIHdr Tags
|
31957
|
-
|
31958
|
-
Index4 Tag Name Writable
|
31959
|
-
------ -------- --------
|
31960
|
-
0 TotalFrameCount no
|
31961
|
-
|
31962
|
-
=head3 RIFF Stream Tags
|
31963
|
-
|
31964
|
-
Tag ID Tag Name Writable
|
31965
|
-
------ -------- --------
|
31966
|
-
'strd' StreamData RIFF StreamData
|
31967
|
-
'strf' AudioFormat RIFF AudioFormat
|
31968
|
-
VideoFormat BMP
|
31969
|
-
'strh' StreamHeader RIFF StreamHeader
|
31970
|
-
'strn' StreamName no
|
31971
|
-
|
31972
|
-
=head3 RIFF StreamData Tags
|
31973
|
-
|
31974
|
-
This chunk is used to store proprietary information in AVI videos from some
|
31975
|
-
cameras. The first 4 characters of the data are used as the Tag ID below.
|
31976
|
-
|
31977
|
-
Tag ID Tag Name Writable
|
31978
|
-
------ -------- --------
|
31979
|
-
'AVIF' AVIF EXIF
|
31980
|
-
'CASI' CasioData Casio AVI
|
31981
|
-
'Zora' VendorName no
|
31982
|
-
'unknown' UnknownData no
|
31983
|
-
|
31984
|
-
=head3 RIFF AudioFormat Tags
|
31985
|
-
|
31986
|
-
Index2 Tag Name Writable
|
31987
|
-
------ -------- --------
|
31988
|
-
0 Encoding no
|
31989
|
-
1 NumChannels no
|
31990
|
-
2 SampleRate no
|
31991
|
-
4 AvgBytesPerSec no
|
31992
|
-
7 BitsPerSample no
|
31993
|
-
|
31994
|
-
=head3 RIFF StreamHeader Tags
|
31995
|
-
|
31996
|
-
Index4 Tag Name Writable
|
31997
|
-
------ -------- --------
|
31998
|
-
0 StreamType no
|
31999
|
-
1 AudioCodec no
|
32000
|
-
VideoCodec no
|
32001
|
-
Codec no
|
32002
|
-
5 AudioSampleRate no
|
32003
|
-
VideoFrameRate no
|
32004
|
-
StreamSampleRate no
|
32005
|
-
8 AudioSampleCount no
|
32006
|
-
VideoFrameCount no
|
32007
|
-
StreamSampleCount no
|
32008
|
-
10 Quality no
|
32009
|
-
11 SampleSize no
|
32010
|
-
|
32011
|
-
=head3 RIFF AVIHeader Tags
|
32012
|
-
|
32013
|
-
Index4 Tag Name Writable
|
32014
|
-
------ -------- --------
|
32015
|
-
0 FrameRate no
|
32016
|
-
1 MaxDataRate no
|
32017
|
-
4 FrameCount no
|
32018
|
-
6 StreamCount no
|
32019
|
-
8 ImageWidth no
|
32020
|
-
9 ImageHeight no
|
32021
|
-
|
32022
|
-
=head3 RIFF VP8 Tags
|
32023
|
-
|
32024
|
-
This chunk is found in simple-format (lossy) WebP files. See
|
32025
|
-
L<https://developers.google.com/speed/webp/docs/riff_container> for the WebP
|
32026
|
-
container specification.
|
32027
|
-
|
32028
|
-
Index1 Tag Name Writable
|
32029
|
-
------ -------- --------
|
32030
|
-
0 VP8Version no
|
32031
|
-
6 ImageWidth no
|
32032
|
-
6.1 HorizontalScale no
|
32033
|
-
8 ImageHeight no
|
32034
|
-
8.1 VerticalScale no
|
32035
|
-
|
32036
|
-
=head3 RIFF VP8L Tags
|
32037
|
-
|
32038
|
-
This chunk is found in lossless WebP files.
|
32039
|
-
|
32040
|
-
Index1 Tag Name Writable
|
32041
|
-
------ -------- --------
|
32042
|
-
1 ImageWidth no
|
32043
|
-
2 ImageHeight no
|
32044
|
-
|
32045
|
-
=head3 RIFF VP8X Tags
|
32046
|
-
|
32047
|
-
This chunk is found in extended WebP files.
|
32048
|
-
|
32049
|
-
Index1 Tag Name Writable
|
32050
|
-
------ -------- --------
|
32051
|
-
4 ImageWidth no
|
32052
|
-
6 ImageHeight no
|
32053
|
-
|
32054
|
-
=head3 RIFF BroadcastExt Tags
|
32055
|
-
|
32056
|
-
Information found in the Broadcast Audio Extension chunk (see
|
32057
|
-
L<http://tech.ebu.ch/docs/tech/tech3285.pdf>).
|
32058
|
-
|
32059
|
-
Index1 Tag Name Writable
|
32060
|
-
------ -------- --------
|
32061
|
-
0 Description no
|
32062
|
-
256 Originator no
|
32063
|
-
288 OriginatorReference no
|
32064
|
-
320 DateTimeOriginal no
|
32065
|
-
338 TimeReference no
|
32066
|
-
346 BWFVersion no
|
32067
|
-
348 BWF_UMID no
|
32068
|
-
602 CodingHistory no
|
32069
|
-
|
32070
|
-
=head3 RIFF DS64 Tags
|
32071
|
-
|
32072
|
-
64-bit data sizes for MBWF/RF64 files. See
|
32073
|
-
L<https://tech.ebu.ch/docs/tech/tech3306-2009.pdf> for the specification.
|
32074
|
-
|
32075
|
-
Index8 Tag Name Writable
|
32076
|
-
------ -------- --------
|
32077
|
-
0 RIFFSize64 no
|
32078
|
-
1 DataSize64 no
|
32079
|
-
2 NumberOfSamples64 no
|
32080
|
-
|
32081
|
-
=head3 RIFF Instrument Tags
|
32082
|
-
|
32083
|
-
Index1 Tag Name Writable
|
32084
|
-
------ -------- --------
|
32085
|
-
0 UnshiftedNote no
|
32086
|
-
1 FineTune no
|
32087
|
-
2 Gain no
|
32088
|
-
3 LowNote no
|
32089
|
-
4 HighNote no
|
32090
|
-
5 LowVelocity no
|
32091
|
-
6 HighVelocity no
|
32092
|
-
|
32093
|
-
=head3 RIFF Sampler Tags
|
32094
|
-
|
32095
|
-
Index4 Tag Name Writable
|
32096
|
-
------ -------- --------
|
32097
|
-
0 Manufacturer no
|
32098
|
-
1 Product no
|
32099
|
-
2 SamplePeriod no
|
32100
|
-
3 MIDIUnityNote no
|
32101
|
-
4 MIDIPitchFraction no
|
32102
|
-
5 SMPTEFormat no
|
32103
|
-
6 SMPTEOffset no
|
32104
|
-
7 NumSampleLoops no
|
32105
|
-
8 SamplerDataLen no
|
32106
|
-
9 SamplerData no
|
32107
|
-
|
32108
|
-
=head3 RIFF UserText Tags
|
32109
|
-
|
32110
|
-
Tags decoded from the USER-format txts stream written by Momento M6 dashcam.
|
32111
|
-
Extracted only if the ExtractEmbedded option is used.
|
32112
|
-
|
32113
|
-
Index1 Tag Name Writable
|
32114
|
-
------ -------- --------
|
32115
|
-
28 GPSAltitude no
|
32116
|
-
40 Accelerometer no
|
32117
|
-
56 GPSSpeed no
|
32118
|
-
60 GPSLatitude no
|
32119
|
-
64 GPSLongitude no
|
32120
|
-
68 GPSDateTime no
|
32121
|
-
|
32122
32572
|
=head2 AIFF Tags
|
32123
32573
|
|
32124
32574
|
Tags extracted from Audio Interchange File Format (AIFF) files. See
|
@@ -37188,14 +37638,14 @@ values, may created via the ExifTool configuration file.
|
|
37188
37638
|
GPSDestLongitude GPS:GPSDestLongitude no
|
37189
37639
|
GPS:GPSDestLongitudeRef
|
37190
37640
|
GPSDestLongitudeRef XMP-exif:GPSDestLongitude no
|
37191
|
-
GPSLatitude GPS:GPSLatitude
|
37641
|
+
GPSLatitude GPS:GPSLatitude yes/
|
37192
37642
|
GPS:GPSLatitudeRef
|
37193
37643
|
GPSLatitude QuickTime:GPSCoordinates no
|
37194
37644
|
GPSLatitude QuickTime:LocationInformation no
|
37195
37645
|
GPSLatitude Sony:GPSLatitude no
|
37196
37646
|
Sony:GPSLatitudeRef
|
37197
37647
|
GPSLatitudeRef XMP-exif:GPSLatitude no
|
37198
|
-
GPSLongitude GPS:GPSLongitude
|
37648
|
+
GPSLongitude GPS:GPSLongitude yes/
|
37199
37649
|
GPS:GPSLongitudeRef
|
37200
37650
|
GPSLongitude QuickTime:GPSCoordinates no
|
37201
37651
|
GPSLongitude QuickTime:LocationInformation no
|
@@ -37496,6 +37946,7 @@ for more details.
|
|
37496
37946
|
MakerNoteCasio
|
37497
37947
|
MakerNoteCasio2
|
37498
37948
|
MakerNoteDJI
|
37949
|
+
MakerNoteDJIInfo
|
37499
37950
|
MakerNoteFLIR
|
37500
37951
|
MakerNoteFujiFilm
|
37501
37952
|
MakerNoteGE
|