exiftool-vendored.exe 12.26.0 → 12.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/exiftool_files/Changes +119 -4
- package/bin/exiftool_files/README +44 -43
- package/bin/exiftool_files/arg_files/xmp2exif.args +2 -1
- package/bin/exiftool_files/config_files/convert_regions.config +25 -14
- package/bin/exiftool_files/config_files/example.config +1 -1
- package/bin/exiftool_files/exiftool.pl +79 -66
- package/bin/exiftool_files/fmt_files/gpx.fmt +1 -1
- package/bin/exiftool_files/fmt_files/gpx_wpt.fmt +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +11 -3
- package/bin/exiftool_files/lib/Image/ExifTool/CBOR.pm +331 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +26 -7
- package/bin/exiftool_files/lib/Image/ExifTool/DPX.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +98 -4
- package/bin/exiftool_files/lib/Image/ExifTool/FlashPix.pm +35 -10
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +13 -2
- package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +16 -1
- package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +15 -3
- package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +7 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +60 -26
- package/bin/exiftool_files/lib/Image/ExifTool/LIF.pm +153 -0
- package/bin/exiftool_files/lib/Image/ExifTool/Lang/nl.pm +60 -59
- package/bin/exiftool_files/lib/Image/ExifTool/M2TS.pm +103 -7
- package/bin/exiftool_files/lib/Image/ExifTool/MacOS.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +14 -3
- package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +10 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +9 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Other.pm +93 -0
- package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +9 -12
- package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +7 -6
- package/bin/exiftool_files/lib/Image/ExifTool/Panasonic.pm +14 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +27 -5
- package/bin/exiftool_files/lib/Image/ExifTool/Photoshop.pm +6 -0
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +105 -24
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +203 -121
- package/bin/exiftool_files/lib/Image/ExifTool/README +5 -2
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +6 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +47 -10
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +85 -34
- package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +65 -5
- package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +153 -32
- package/bin/exiftool_files/lib/Image/ExifTool/Torrent.pm +18 -11
- package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WritePNG.pl +2 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +8 -4
- package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +3 -0
- package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +21 -4
- package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +3 -1
- package/bin/exiftool_files/lib/Image/ExifTool/XMPStruct.pl +3 -1
- package/bin/exiftool_files/lib/Image/ExifTool/ZISRAW.pm +121 -2
- package/bin/exiftool_files/lib/Image/ExifTool.pm +8867 -8835
- package/bin/exiftool_files/lib/Image/ExifTool.pod +58 -56
- package/package.json +3 -3
|
@@ -892,6 +892,7 @@ my %tagLookup = (
|
|
|
892
892
|
'alternatetitletext' => { 484 => [\'alternateTitle','alternateTitleText'] },
|
|
893
893
|
'altitude' => { 192 => 0x6 },
|
|
894
894
|
'alttapename' => { 494 => 'altTapeName' },
|
|
895
|
+
'alttextaccessibility' => { 479 => 'AltTextAccessibility' },
|
|
895
896
|
'alttimecode' => { 494 => 'altTimecode' },
|
|
896
897
|
'alttimecodetimeformat' => { 494 => [\'altTimecode','altTimecodeTimeFormat'] },
|
|
897
898
|
'alttimecodetimevalue' => { 494 => [\'altTimecode','altTimecodeTimeValue'] },
|
|
@@ -1180,6 +1181,7 @@ my %tagLookup = (
|
|
|
1180
1181
|
'calibrationhistory' => { 135 => 0x9c9 },
|
|
1181
1182
|
'calibrationilluminant1' => { 117 => 0xc65a },
|
|
1182
1183
|
'calibrationilluminant2' => { 117 => 0xc65b },
|
|
1184
|
+
'calibrationilluminant3' => { 117 => 0xcd31 },
|
|
1183
1185
|
'calibrationversion' => { 135 => 0x9c6 },
|
|
1184
1186
|
'callforimage' => { 458 => 'CallForImage' },
|
|
1185
1187
|
'camera' => { 448 => [\'Cameras','CamerasCamera'] },
|
|
@@ -1192,6 +1194,7 @@ my %tagLookup = (
|
|
|
1192
1194
|
'cameracalibration' => { 388 => 0x11f },
|
|
1193
1195
|
'cameracalibration1' => { 117 => 0xc623 },
|
|
1194
1196
|
'cameracalibration2' => { 117 => 0xc624 },
|
|
1197
|
+
'cameracalibration3' => { 117 => 0xcd32 },
|
|
1195
1198
|
'cameracalibrationsig' => { 117 => 0xc6f3 },
|
|
1196
1199
|
'cameracolorcalibration01' => { 36 => 0x0, 37 => 0x0 },
|
|
1197
1200
|
'cameracolorcalibration02' => { 36 => 0x4, 37 => 0x5 },
|
|
@@ -1542,9 +1545,12 @@ my %tagLookup = (
|
|
|
1542
1545
|
'colormatrix' => { 292 => 0x200, 293 => 0x1011, 385 => 0xa030 },
|
|
1543
1546
|
'colormatrix1' => { 117 => 0xc621, 355 => 0x106 },
|
|
1544
1547
|
'colormatrix2' => { 117 => 0xc622, 296 => 0x200, 355 => 0x226 },
|
|
1548
|
+
'colormatrix3' => { 117 => 0xcd33 },
|
|
1545
1549
|
'colormatrixa' => { 346 => 0x203 },
|
|
1550
|
+
'colormatrixa2' => { 346 => 0x21c },
|
|
1546
1551
|
'colormatrixadobergb' => { 385 => 0xa032 },
|
|
1547
1552
|
'colormatrixb' => { 346 => 0x204 },
|
|
1553
|
+
'colormatrixb2' => { 346 => 0x21d },
|
|
1548
1554
|
'colormatrixnumber' => { 293 => 0x1019 },
|
|
1549
1555
|
'colormatrixsrgb' => { 385 => 0xa031 },
|
|
1550
1556
|
'colormode' => { 111 => 0x3015, 125 => 0x1210, 137 => 0x66, 178 => 0x28, 181 => 0x16, 183 => 0x101, 184 => 0x36, 186 => 0x7, 222 => 0x3, 254 => 0x4, 311 => 0x32, 388 => 0x2c, 411 => 0xb029, 482 => 'ColorMode' },
|
|
@@ -2339,7 +2345,7 @@ my %tagLookup = (
|
|
|
2339
2345
|
'eventfieldnotes' => { 116 => [\'Event','EventFieldNotes'] },
|
|
2340
2346
|
'eventfieldnumber' => { 116 => [\'Event','EventFieldNumber'] },
|
|
2341
2347
|
'eventhabitat' => { 116 => [\'Event','EventHabitat'] },
|
|
2342
|
-
'eventid' => { 116 => [\'Event','EventEventID'] },
|
|
2348
|
+
'eventid' => { 116 => [\'Event','EventEventID'], 480 => 'EventID' },
|
|
2343
2349
|
'eventlatestdate' => { 116 => [\'Event','EventLatestDate'] },
|
|
2344
2350
|
'eventmonth' => { 116 => [\'Event','EventMonth'] },
|
|
2345
2351
|
'eventnumber' => { 372 => 0x9, 373 => 0x37, 374 => 0x3a },
|
|
@@ -2414,6 +2420,7 @@ my %tagLookup = (
|
|
|
2414
2420
|
'exposurewarning' => { 125 => 0x1302 },
|
|
2415
2421
|
'exrauto' => { 125 => 0x1033 },
|
|
2416
2422
|
'exrmode' => { 125 => 0x1034 },
|
|
2423
|
+
'extdescraccessibility' => { 479 => 'ExtDescrAccessibility' },
|
|
2417
2424
|
'extendedwbdetect' => { 288 => 0x902 },
|
|
2418
2425
|
'extender' => { 289 => 0x301 },
|
|
2419
2426
|
'extenderfirmwareversion' => { 289 => 0x304 },
|
|
@@ -2786,6 +2793,7 @@ my %tagLookup = (
|
|
|
2786
2793
|
'forwardlock' => { 489 => 'forwardlock' },
|
|
2787
2794
|
'forwardmatrix1' => { 117 => 0xc714 },
|
|
2788
2795
|
'forwardmatrix2' => { 117 => 0xc715 },
|
|
2796
|
+
'forwardmatrix3' => { 117 => 0xcd34 },
|
|
2789
2797
|
'fossilspecimen' => { 116 => 'FossilSpecimen' },
|
|
2790
2798
|
'fossilspecimenmaterialsampleid' => { 116 => [\'FossilSpecimen','FossilSpecimenMaterialSampleID'] },
|
|
2791
2799
|
'framecount' => { 65 => [0x2,0x4] },
|
|
@@ -3138,6 +3146,9 @@ my %tagLookup = (
|
|
|
3138
3146
|
'identifiedby' => { 116 => [\'Identification','IdentificationIdentifiedBy'] },
|
|
3139
3147
|
'identifier' => { 471 => 'identifier', 492 => 'Identifier' },
|
|
3140
3148
|
'ifcameramodel' => { 135 => 0x9c8 },
|
|
3149
|
+
'illuminantdata1' => { 117 => 0xcd35 },
|
|
3150
|
+
'illuminantdata2' => { 117 => 0xcd36 },
|
|
3151
|
+
'illuminantdata3' => { 117 => 0xcd37 },
|
|
3141
3152
|
'illumination' => { 282 => '0.5', 373 => 0x48 },
|
|
3142
3153
|
'imageabsolutex' => { 135 => 0x3fe },
|
|
3143
3154
|
'imageabsolutey' => { 135 => 0x3ff },
|
|
@@ -3544,7 +3555,7 @@ my %tagLookup = (
|
|
|
3544
3555
|
'lenstype2' => { 400 => 0x3f7, 423 => 0x1893, 425 => 0x18bf, 426 => 0x18ef, 427 => 0x17f3, 429 => 0x107, 430 => 0x107, 440 => 0x605, 441 => 0x60 },
|
|
3545
3556
|
'lenstype3' => { 444 => 0x9 },
|
|
3546
3557
|
'lenstypemake' => { 311 => 0xc4 },
|
|
3547
|
-
'lenstypemodel' => { 311 => 0xc5 },
|
|
3558
|
+
'lenstypemodel' => { 311 => [0xc5,0xe4] },
|
|
3548
3559
|
'lenszoomposition' => { 437 => 0x19, 438 => 0x1e, 441 => [0x342,0x34e,0x35a] },
|
|
3549
3560
|
'levelindicator' => { 319 => 0x15 },
|
|
3550
3561
|
'levelmeter' => { 371 => ['Lvlm','lvlm'] },
|
|
@@ -3679,6 +3690,9 @@ my %tagLookup = (
|
|
|
3679
3690
|
'lookparameterslooktable' => { 468 => [\'Look','LookParametersLookTable'], 470 => [\'Look','LookParametersLookTable'] },
|
|
3680
3691
|
'lookparametersprocessversion' => { 468 => [\'Look','LookParametersProcessVersion'], 470 => [\'Look','LookParametersProcessVersion'] },
|
|
3681
3692
|
'lookparameterstonecurvepv2012' => { 468 => [\'Look','LookParametersToneCurvePV2012'], 470 => [\'Look','LookParametersToneCurvePV2012'] },
|
|
3693
|
+
'lookparameterstonecurvepv2012blue' => { 468 => [\'Look','LookParametersToneCurvePV2012Blue'], 470 => [\'Look','LookParametersToneCurvePV2012Blue'] },
|
|
3694
|
+
'lookparameterstonecurvepv2012green' => { 468 => [\'Look','LookParametersToneCurvePV2012Green'], 470 => [\'Look','LookParametersToneCurvePV2012Green'] },
|
|
3695
|
+
'lookparameterstonecurvepv2012red' => { 468 => [\'Look','LookParametersToneCurvePV2012Red'], 470 => [\'Look','LookParametersToneCurvePV2012Red'] },
|
|
3682
3696
|
'lookparametersversion' => { 468 => [\'Look','LookParametersVersion'], 470 => [\'Look','LookParametersVersion'] },
|
|
3683
3697
|
'looksupportsamount' => { 468 => [\'Look','LookSupportsAmount'], 470 => [\'Look','LookSupportsAmount'] },
|
|
3684
3698
|
'looksupportsmonochrome' => { 468 => [\'Look','LookSupportsMonochrome'], 470 => [\'Look','LookSupportsMonochrome'] },
|
|
@@ -4778,7 +4792,7 @@ my %tagLookup = (
|
|
|
4778
4792
|
'previewcroptop' => { 357 => 0xed },
|
|
4779
4793
|
'previewdate' => { 369 => 0x0 },
|
|
4780
4794
|
'previewdatetime' => { 117 => 0xc71b },
|
|
4781
|
-
'previewimage' => { 111 => 0x2000, 112 => 'Exif-PreviewImage', 118 => 'PreviewImage', 120 => 0x4, 163 => 'data', 183 => 0x81, 293 => 0x280, 309 => 0x300, 411 => 0x2001 },
|
|
4795
|
+
'previewimage' => { 111 => 0x2000, 112 => 'Exif-PreviewImage', 118 => 'PreviewImage', 120 => 0x4, 163 => 'data', 183 => 0x81, 293 => 0x280, 309 => 0x300, 371 => 'mcvr', 411 => 0x2001 },
|
|
4782
4796
|
'previewimageborders' => { 346 => 0x3e },
|
|
4783
4797
|
'previewimageheight' => { 71 => 0x4, 139 => 0xfa58 },
|
|
4784
4798
|
'previewimagelength' => { 71 => 0x2, 111 => 0x3, 117 => [0x117,0x202], 183 => 0x89, 227 => 0x202, 288 => 0x102, 293 => 0x1037, 346 => 0x3, 377 => 0x1e, 382 => 0x3, 388 => [0x1b,0x1d], 401 => 0x202 },
|
|
@@ -4823,8 +4837,10 @@ my %tagLookup = (
|
|
|
4823
4837
|
'profilecameraindices' => { 448 => [\'Profiles','ProfilesProfileCameraIndices'] },
|
|
4824
4838
|
'profilecopyright' => { 117 => 0xc6fe },
|
|
4825
4839
|
'profileembedpolicy' => { 117 => 0xc6fd },
|
|
4840
|
+
'profilegaintablemap' => { 117 => 0xcd2d },
|
|
4826
4841
|
'profilehuesatmapdata1' => { 117 => 0xc6fa },
|
|
4827
4842
|
'profilehuesatmapdata2' => { 117 => 0xc6fb },
|
|
4843
|
+
'profilehuesatmapdata3' => { 117 => 0xcd39 },
|
|
4828
4844
|
'profilehuesatmapdims' => { 117 => 0xc6f9 },
|
|
4829
4845
|
'profilehuesatmapencoding' => { 117 => 0xc7a3 },
|
|
4830
4846
|
'profilelooktabledata' => { 117 => 0xc726 },
|
|
@@ -5016,6 +5032,7 @@ my %tagLookup = (
|
|
|
5016
5032
|
'redsaturation' => { 468 => 'RedSaturation', 470 => 'RedSaturation' },
|
|
5017
5033
|
'reductionmatrix1' => { 117 => 0xc625 },
|
|
5018
5034
|
'reductionmatrix2' => { 117 => 0xc626 },
|
|
5035
|
+
'reductionmatrix3' => { 117 => 0xcd3a },
|
|
5019
5036
|
'reelname' => { 117 => 0xc789, 371 => 'reel' },
|
|
5020
5037
|
'reference1' => { 478 => [\'TagStructure','TagStructureReference'] },
|
|
5021
5038
|
'reference2' => { 478 => [\'TagStructure','TagStructureSubLabelsReference'] },
|
|
@@ -5195,6 +5212,7 @@ my %tagLookup = (
|
|
|
5195
5212
|
'rflenstype' => { 56 => 0x3d },
|
|
5196
5213
|
'rgbcurvelimits' => { 106 => 0x238 },
|
|
5197
5214
|
'rgbcurvepoints' => { 105 => 0x7, 106 => 0x20e },
|
|
5215
|
+
'rgbtables' => { 117 => 0xcd3b },
|
|
5198
5216
|
'richtextcomment' => { 477 => 'RichTextComment' },
|
|
5199
5217
|
'ricohdate' => { 377 => 0x6 },
|
|
5200
5218
|
'ricohimageheight' => { 377 => 0x2 },
|
|
@@ -5428,7 +5446,7 @@ my %tagLookup = (
|
|
|
5428
5446
|
'shuttercount2' => { 429 => 0x4c, 430 => [0x50,0x52,0x58], 431 => 0x50 },
|
|
5429
5447
|
'shuttercount3' => { 429 => [0x1a0,0x1aa,0x1bd], 430 => [0x19f,0x1cb,0x1cd] },
|
|
5430
5448
|
'shuttercurtainsync' => { 80 => 0xf, 81 => 0xf, 82 => 0x305, 83 => 0xe, 84 => 0xf, 85 => 0x8, 86 => 0x8, 87 => 0xf, 88 => 0x8 },
|
|
5431
|
-
'shuttermode' => { 137 => 0x1b, 222 => 0x34 },
|
|
5449
|
+
'shuttermode' => { 56 => 0x17, 137 => 0x1b, 222 => 0x34 },
|
|
5432
5450
|
'shutterreleasebuttonae-l' => { 271 => '17.7', 272 => '18.4', 274 => '78.4', 275 => '78.4', 276 => '16.1', 277 => '17.1', 278 => '17.1', 279 => '17.1', 280 => '7.1', 281 => '17.5', 284 => '18.4', 285 => '78.4', 286 => '18.2' },
|
|
5433
5451
|
'shutterreleasemethod' => { 95 => 0x1010 },
|
|
5434
5452
|
'shutterreleasenocfcard' => { 80 => 0x2, 81 => 0x2, 88 => 0xf },
|
|
@@ -6437,6 +6455,7 @@ my %tagExists = (
|
|
|
6437
6455
|
'abstractfilename' => 1,
|
|
6438
6456
|
'accel360fly' => 1,
|
|
6439
6457
|
'acceldata' => 1,
|
|
6458
|
+
'accelerometermatrix' => 1,
|
|
6440
6459
|
'accelerometertime' => 1,
|
|
6441
6460
|
'accelmode' => 1,
|
|
6442
6461
|
'accelypr' => 1,
|
|
@@ -6610,6 +6629,7 @@ my %tagExists = (
|
|
|
6610
6629
|
'ardronetelemetry' => 1,
|
|
6611
6630
|
'artist2' => 1,
|
|
6612
6631
|
'artistlen' => 1,
|
|
6632
|
+
'artists' => 1,
|
|
6613
6633
|
'artisturl' => 1,
|
|
6614
6634
|
'ascender' => 1,
|
|
6615
6635
|
'ascent' => 1,
|
|
@@ -6708,8 +6728,10 @@ my %tagExists = (
|
|
|
6708
6728
|
'audiozeroframespadded' => 1,
|
|
6709
6729
|
'authenticationtime' => 1,
|
|
6710
6730
|
'authenticationtype' => 1,
|
|
6731
|
+
'authoridentifier' => 1,
|
|
6711
6732
|
'authoringsoftwarerelease' => 1,
|
|
6712
6733
|
'authorlen' => 1,
|
|
6734
|
+
'authorname' => 1,
|
|
6713
6735
|
'authorship' => 1,
|
|
6714
6736
|
'authorsortorder' => 1,
|
|
6715
6737
|
'autoareaafstartingpoint' => 1,
|
|
@@ -6792,6 +6814,8 @@ my %tagExists = (
|
|
|
6792
6814
|
'bikebroaccel' => 1,
|
|
6793
6815
|
'bikebrogps' => 1,
|
|
6794
6816
|
'billinginformation' => 1,
|
|
6817
|
+
'binarydata' => 1,
|
|
6818
|
+
'binarydatatype' => 1,
|
|
6795
6819
|
'binaryfilter' => 1,
|
|
6796
6820
|
'binaryxml' => 1,
|
|
6797
6821
|
'binning' => 1,
|
|
@@ -7064,6 +7088,8 @@ my %tagExists = (
|
|
|
7064
7088
|
'casioquality' => 1,
|
|
7065
7089
|
'casioqvmi' => 1,
|
|
7066
7090
|
'cast' => 1,
|
|
7091
|
+
'catalognumber' => 1,
|
|
7092
|
+
'cbordata' => 1,
|
|
7067
7093
|
'cc' => 1,
|
|
7068
7094
|
'ccaddresses' => 1,
|
|
7069
7095
|
'ccdrect' => 1,
|
|
@@ -7446,6 +7472,7 @@ my %tagExists = (
|
|
|
7446
7472
|
'crossref' => 1,
|
|
7447
7473
|
'crs' => 1,
|
|
7448
7474
|
'crwparam' => 1,
|
|
7475
|
+
'cs0' => 1,
|
|
7449
7476
|
'cs1' => 1,
|
|
7450
7477
|
'ctmd' => 1,
|
|
7451
7478
|
'cubemapproj' => 1,
|
|
@@ -7608,6 +7635,7 @@ my %tagExists = (
|
|
|
7608
7635
|
'depthhwheight' => 1,
|
|
7609
7636
|
'depthhwwidth' => 1,
|
|
7610
7637
|
'depthmapdata' => 1,
|
|
7638
|
+
'depthmapdata2' => 1,
|
|
7611
7639
|
'depthmapheight' => 1,
|
|
7612
7640
|
'depthmapname' => 1,
|
|
7613
7641
|
'depthmaptiff' => 1,
|
|
@@ -7773,6 +7801,7 @@ my %tagExists = (
|
|
|
7773
7801
|
'dvdid' => 1,
|
|
7774
7802
|
'dwc' => 1,
|
|
7775
7803
|
'dynamicareaafassist' => 1,
|
|
7804
|
+
'dynamicranger128' => 1,
|
|
7776
7805
|
'e-mail2' => 1,
|
|
7777
7806
|
'e-mail3' => 1,
|
|
7778
7807
|
'e-mailaddress' => 1,
|
|
@@ -7804,6 +7833,7 @@ my %tagExists = (
|
|
|
7804
7833
|
'embeddedfilename' => 1,
|
|
7805
7834
|
'embeddedfileusagerights' => 1,
|
|
7806
7835
|
'embeddedimage' => 1,
|
|
7836
|
+
'embeddedimage2' => 1,
|
|
7807
7837
|
'embeddedimagecolorspace' => 1,
|
|
7808
7838
|
'embeddedimagefilter' => 1,
|
|
7809
7839
|
'embeddedimageheight' => 1,
|
|
@@ -8284,7 +8314,9 @@ my %tagExists = (
|
|
|
8284
8314
|
'gopro' => 1,
|
|
8285
8315
|
'goprogpmf' => 1,
|
|
8286
8316
|
'gpano' => 1,
|
|
8317
|
+
'gpmd_fmas' => 1,
|
|
8287
8318
|
'gpmd_gopro' => 1,
|
|
8319
|
+
'gpmd_kingslim' => 1,
|
|
8288
8320
|
'gpmd_rove' => 1,
|
|
8289
8321
|
'gps' => 1,
|
|
8290
8322
|
'gps360fly' => 1,
|
|
@@ -8583,6 +8615,8 @@ my %tagExists = (
|
|
|
8583
8615
|
'inputdevicename' => 1,
|
|
8584
8616
|
'inputdeviceserialnumber' => 1,
|
|
8585
8617
|
'inputheight' => 1,
|
|
8618
|
+
'inputorientation' => 1,
|
|
8619
|
+
'inputuniformity' => 1,
|
|
8586
8620
|
'inputwidth' => 1,
|
|
8587
8621
|
'insertmode' => 1,
|
|
8588
8622
|
'insetnwpixelx' => 1,
|
|
@@ -8726,10 +8760,10 @@ my %tagExists = (
|
|
|
8726
8760
|
'jumbf' => 1,
|
|
8727
8761
|
'jumbfbox' => 1,
|
|
8728
8762
|
'jumbfdescr' => 1,
|
|
8729
|
-
'jumdflags' => 1,
|
|
8730
8763
|
'jumdid' => 1,
|
|
8731
8764
|
'jumdlabel' => 1,
|
|
8732
8765
|
'jumdsignature' => 1,
|
|
8766
|
+
'jumdtoggles' => 1,
|
|
8733
8767
|
'jumdtype' => 1,
|
|
8734
8768
|
'jumptoxpep' => 1,
|
|
8735
8769
|
'junk' => 1,
|
|
@@ -8740,6 +8774,7 @@ my %tagExists = (
|
|
|
8740
8774
|
'k4' => 1,
|
|
8741
8775
|
'kbytesize' => 1,
|
|
8742
8776
|
'kdc_ifd' => 1,
|
|
8777
|
+
'keepexposurewithteleconverter' => 1,
|
|
8743
8778
|
'keepuntil' => 1,
|
|
8744
8779
|
'kelvinwb' => 1,
|
|
8745
8780
|
'keycode' => 1,
|
|
@@ -9019,6 +9054,7 @@ my %tagExists = (
|
|
|
9019
9054
|
'makernotes' => 1,
|
|
9020
9055
|
'mandatorybackground' => 1,
|
|
9021
9056
|
'manualfocuspointillumination' => 1,
|
|
9057
|
+
'manualfocusringinafmode' => 1,
|
|
9022
9058
|
'manufacturecode' => 1,
|
|
9023
9059
|
'manufactureindex' => 1,
|
|
9024
9060
|
'manufacturername' => 1,
|
|
@@ -9033,6 +9069,7 @@ my %tagExists = (
|
|
|
9033
9069
|
'markerid' => 1,
|
|
9034
9070
|
'markinfo' => 1,
|
|
9035
9071
|
'marl' => 1,
|
|
9072
|
+
'masksubarea' => 1,
|
|
9036
9073
|
'mastergainadjustment' => 1,
|
|
9037
9074
|
'matrixworldtocamera' => 1,
|
|
9038
9075
|
'matrixworldtoscreen' => 1,
|
|
@@ -9047,6 +9084,7 @@ my %tagExists = (
|
|
|
9047
9084
|
'maximumimageindex' => 1,
|
|
9048
9085
|
'maximumobjectsize' => 1,
|
|
9049
9086
|
'maximumoperationindex' => 1,
|
|
9087
|
+
'maximumshutterangle' => 1,
|
|
9050
9088
|
'maximumtransformindex' => 1,
|
|
9051
9089
|
'maxjpegtableindex' => 1,
|
|
9052
9090
|
'maxpacketsize' => 1,
|
|
@@ -9057,6 +9095,7 @@ my %tagExists = (
|
|
|
9057
9095
|
'maxval' => 1,
|
|
9058
9096
|
'maxwidth' => 1,
|
|
9059
9097
|
'mc' => 1,
|
|
9098
|
+
'mccdata' => 1,
|
|
9060
9099
|
'mcdi' => 1,
|
|
9061
9100
|
'md5signature' => 1,
|
|
9062
9101
|
'md5sum' => 1,
|
|
@@ -9251,6 +9290,7 @@ my %tagExists = (
|
|
|
9251
9290
|
'mediathumbwidth' => 1,
|
|
9252
9291
|
'mediatimescale' => 1,
|
|
9253
9292
|
'mediatrackbytes' => 1,
|
|
9293
|
+
'mediauniqueid' => 1,
|
|
9254
9294
|
'mediaweight' => 1,
|
|
9255
9295
|
'mediawhitepoint' => 1,
|
|
9256
9296
|
'medium' => 1,
|
|
@@ -9603,6 +9643,7 @@ my %tagExists = (
|
|
|
9603
9643
|
'organizername' => 1,
|
|
9604
9644
|
'orientationinfo' => 1,
|
|
9605
9645
|
'originalalbum' => 1,
|
|
9646
|
+
'originaldate' => 1,
|
|
9606
9647
|
'originaldocumentsize' => 1,
|
|
9607
9648
|
'originalfilesize' => 1,
|
|
9608
9649
|
'originalfiletype' => 1,
|
|
@@ -9624,6 +9665,7 @@ my %tagExists = (
|
|
|
9624
9665
|
'originalthmfiletype' => 1,
|
|
9625
9666
|
'originalthmimage' => 1,
|
|
9626
9667
|
'originalthmresource' => 1,
|
|
9668
|
+
'originalyear' => 1,
|
|
9627
9669
|
'originator' => 1,
|
|
9628
9670
|
'originatorreference' => 1,
|
|
9629
9671
|
'originpathinfo' => 1,
|
|
@@ -9650,6 +9692,7 @@ my %tagExists = (
|
|
|
9650
9692
|
'outputdataobjectlist' => 1,
|
|
9651
9693
|
'outputgain' => 1,
|
|
9652
9694
|
'outputheight' => 1,
|
|
9695
|
+
'outputorientation' => 1,
|
|
9653
9696
|
'outputresponse' => 1,
|
|
9654
9697
|
'outputwidth' => 1,
|
|
9655
9698
|
'overclockcolsright' => 1,
|
|
@@ -9734,6 +9777,8 @@ my %tagExists = (
|
|
|
9734
9777
|
'pdf' => 1,
|
|
9735
9778
|
'pdfx' => 1,
|
|
9736
9779
|
'peakbitrate' => 1,
|
|
9780
|
+
'peaklevelr128' => 1,
|
|
9781
|
+
'peaklevelsample' => 1,
|
|
9737
9782
|
'peakspectralsensitivity' => 1,
|
|
9738
9783
|
'peakvalue' => 1,
|
|
9739
9784
|
'pefversion' => 1,
|
|
@@ -9802,6 +9847,7 @@ my %tagExists = (
|
|
|
9802
9847
|
'pipy1' => 1,
|
|
9803
9848
|
'pipy2' => 1,
|
|
9804
9849
|
'pitchandfamily' => 1,
|
|
9850
|
+
'pitchrollyaw' => 1,
|
|
9805
9851
|
'pittasoft' => 1,
|
|
9806
9852
|
'pixelaspectratiox' => 1,
|
|
9807
9853
|
'pixelaspectratioy' => 1,
|
|
@@ -10158,6 +10204,7 @@ my %tagExists = (
|
|
|
10158
10204
|
'regionxformtackpoint' => 1,
|
|
10159
10205
|
'registerreadtiming' => 1,
|
|
10160
10206
|
'relatedimagefile' => 1,
|
|
10207
|
+
'relationship' => 1,
|
|
10161
10208
|
'relativeexposure' => 1,
|
|
10162
10209
|
'relativehumidity' => 1,
|
|
10163
10210
|
'relativelocation' => 1,
|
|
@@ -10183,6 +10230,9 @@ my %tagExists = (
|
|
|
10183
10230
|
'replaygainalbumpeak' => 1,
|
|
10184
10231
|
'replaygaintrackgain' => 1,
|
|
10185
10232
|
'replaygaintrackpeak' => 1,
|
|
10233
|
+
'replaytrackgain' => 1,
|
|
10234
|
+
'replaytrackpeak' => 1,
|
|
10235
|
+
'replayvolumelevel' => 1,
|
|
10186
10236
|
'replyto' => 1,
|
|
10187
10237
|
'representativedisparityfar' => 1,
|
|
10188
10238
|
'representativedisparitynear' => 1,
|
|
@@ -10322,6 +10372,7 @@ my %tagExists = (
|
|
|
10322
10372
|
'samsungsmta' => 1,
|
|
10323
10373
|
'samsungsvss' => 1,
|
|
10324
10374
|
'samsungtags' => 1,
|
|
10375
|
+
'samsungtrailer' => 1,
|
|
10325
10376
|
'samsunguniqueid' => 1,
|
|
10326
10377
|
'sanyomov' => 1,
|
|
10327
10378
|
'sanyomp4' => 1,
|
|
@@ -10388,6 +10439,7 @@ my %tagExists = (
|
|
|
10388
10439
|
'screenwindowcenter' => 1,
|
|
10389
10440
|
'screenwindowwidth' => 1,
|
|
10390
10441
|
'screenwriters' => 1,
|
|
10442
|
+
'script' => 1,
|
|
10391
10443
|
'scriptcommand' => 1,
|
|
10392
10444
|
'searchranking' => 1,
|
|
10393
10445
|
'secondarygenre' => 1,
|
|
@@ -10405,6 +10457,8 @@ my %tagExists = (
|
|
|
10405
10457
|
'selobjname' => 1,
|
|
10406
10458
|
'selobjtype' => 1,
|
|
10407
10459
|
'selobjversion' => 1,
|
|
10460
|
+
'semanticinstanceifd' => 1,
|
|
10461
|
+
'semanticname' => 1,
|
|
10408
10462
|
'sendduration' => 1,
|
|
10409
10463
|
'senderaddress' => 1,
|
|
10410
10464
|
'sendername' => 1,
|
|
@@ -10415,6 +10469,7 @@ my %tagExists = (
|
|
|
10415
10469
|
'sensordefects' => 1,
|
|
10416
10470
|
'sensorid' => 1,
|
|
10417
10471
|
'sensorinfo' => 1,
|
|
10472
|
+
'sensorreadouttime' => 1,
|
|
10418
10473
|
'sensorrightborder' => 1,
|
|
10419
10474
|
'seqlevelidx0' => 1,
|
|
10420
10475
|
'seqprofile' => 1,
|
|
@@ -10840,9 +10895,11 @@ my %tagExists = (
|
|
|
10840
10895
|
'thumbnailclip' => 1,
|
|
10841
10896
|
'thumbnailcompressiontable' => 1,
|
|
10842
10897
|
'thumbnailexpansiontable' => 1,
|
|
10898
|
+
'thumbnailhash' => 1,
|
|
10843
10899
|
'thumbnailref' => 1,
|
|
10844
10900
|
'thumbnailresizeratio' => 1,
|
|
10845
10901
|
'thumbnailtiff' => 1,
|
|
10902
|
+
'thumbnailurl' => 1,
|
|
10846
10903
|
'tickspersecond' => 1,
|
|
10847
10904
|
'tiff' => 1,
|
|
10848
10905
|
'tiff-epstandardid' => 1,
|
|
@@ -10863,6 +10920,7 @@ my %tagExists = (
|
|
|
10863
10920
|
'timeoffset' => 1,
|
|
10864
10921
|
'timereference' => 1,
|
|
10865
10922
|
'timescale' => 1,
|
|
10923
|
+
'timestamplist' => 1,
|
|
10866
10924
|
'timestamprandomoffset' => 1,
|
|
10867
10925
|
'timetosampletable' => 1,
|
|
10868
10926
|
'title2' => 1,
|
|
@@ -11072,6 +11130,7 @@ my %tagExists = (
|
|
|
11072
11130
|
'usptomiscellaneous' => 1,
|
|
11073
11131
|
'usptooriginalcontenttype' => 1,
|
|
11074
11132
|
'utm' => 1,
|
|
11133
|
+
'uuid-c2paclaimsignature' => 1,
|
|
11075
11134
|
'uuid-canon' => 1,
|
|
11076
11135
|
'uuid-canon2' => 1,
|
|
11077
11136
|
'uuid-exif' => 1,
|
|
@@ -11188,6 +11247,7 @@ my %tagExists = (
|
|
|
11188
11247
|
'volumeexpirationdate' => 1,
|
|
11189
11248
|
'volumeid' => 1,
|
|
11190
11249
|
'volumelabel' => 1,
|
|
11250
|
+
'volumelevelr128' => 1,
|
|
11191
11251
|
'volumemodifydate' => 1,
|
|
11192
11252
|
'volumename' => 1,
|
|
11193
11253
|
'volumenormalization' => 1,
|