exiftool-vendored.pl 12.44.0 → 12.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/Changes +112 -3
- package/bin/MANIFEST +9 -0
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +45 -44
- package/bin/config_files/acdsee.config +2 -1
- package/bin/config_files/frameCount.config +56 -0
- package/bin/config_files/tiff_version.config +1 -1
- package/bin/exiftool +85 -73
- package/bin/fmt_files/gpx.fmt +3 -0
- package/bin/fmt_files/gpx_wpt.fmt +3 -0
- package/bin/lib/Image/ExifTool/Apple.pm +6 -2
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +17 -9
- package/bin/lib/Image/ExifTool/Canon.pm +33 -15
- package/bin/lib/Image/ExifTool/CanonRaw.pm +8 -1
- package/bin/lib/Image/ExifTool/CanonVRD.pm +7 -8
- package/bin/lib/Image/ExifTool/EXE.pm +9 -1
- package/bin/lib/Image/ExifTool/Exif.pm +11 -7
- package/bin/lib/Image/ExifTool/FLAC.pm +17 -3
- package/bin/lib/Image/ExifTool/FLIR.pm +4 -3
- package/bin/lib/Image/ExifTool/FlashPix.pm +4 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +31 -5
- package/bin/lib/Image/ExifTool/GPS.pm +2 -2
- package/bin/lib/Image/ExifTool/ICC_Profile.pm +3 -2
- package/bin/lib/Image/ExifTool/ICO.pm +141 -0
- package/bin/lib/Image/ExifTool/ID3.pm +6 -6
- package/bin/lib/Image/ExifTool/M2TS.pm +55 -8
- package/bin/lib/Image/ExifTool/MIE.pm +9 -3
- package/bin/lib/Image/ExifTool/MISB.pm +494 -0
- package/bin/lib/Image/ExifTool/MakerNotes.pm +3 -1
- package/bin/lib/Image/ExifTool/Matroska.pm +24 -16
- package/bin/lib/Image/ExifTool/Nikon.pm +39 -31
- package/bin/lib/Image/ExifTool/NikonSettings.pm +5 -3
- package/bin/lib/Image/ExifTool/Panasonic.pm +21 -4
- package/bin/lib/Image/ExifTool/PanasonicRaw.pm +25 -5
- package/bin/lib/Image/ExifTool/Photoshop.pm +29 -3
- package/bin/lib/Image/ExifTool/QuickTime.pm +113 -8
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +44 -6
- package/bin/lib/Image/ExifTool/README +1 -1
- package/bin/lib/Image/ExifTool/RIFF.pm +106 -9
- package/bin/lib/Image/ExifTool/Samsung.pm +2 -2
- package/bin/lib/Image/ExifTool/Sigma.pm +27 -1
- package/bin/lib/Image/ExifTool/SigmaRaw.pm +37 -13
- package/bin/lib/Image/ExifTool/Sony.pm +8 -3
- package/bin/lib/Image/ExifTool/TagLookup.pm +188 -7
- package/bin/lib/Image/ExifTool/TagNames.pod +3051 -2732
- package/bin/lib/Image/ExifTool/Text.pm +3 -4
- package/bin/lib/Image/ExifTool/Torrent.pm +2 -3
- package/bin/lib/Image/ExifTool/Validate.pm +3 -3
- package/bin/lib/Image/ExifTool/WriteCanonRaw.pl +7 -0
- package/bin/lib/Image/ExifTool/WriteExif.pl +100 -23
- package/bin/lib/Image/ExifTool/WriteIPTC.pl +2 -6
- package/bin/lib/Image/ExifTool/WriteRIFF.pl +359 -0
- package/bin/lib/Image/ExifTool/Writer.pl +10 -3
- package/bin/lib/Image/ExifTool/XMP.pm +76 -58
- package/bin/lib/Image/ExifTool/XMP2.pl +11 -4
- package/bin/lib/Image/ExifTool.pm +75 -15
- package/bin/lib/Image/ExifTool.pod +61 -57
- package/bin/perl-Image-ExifTool.spec +43 -43
- package/bin/pp_build_exe.args +7 -4
- package/package.json +2 -2
|
@@ -1298,6 +1298,29 @@ my %tagLookup = (
|
|
|
1298
1298
|
'cameraposetimestamp' => { 458 => [\'Cameras','CamerasCameraPoseTimestamp'] },
|
|
1299
1299
|
'cameraprofile' => { 478 => 'CameraProfile', 480 => 'CameraProfile' },
|
|
1300
1300
|
'cameraprofiledigest' => { 478 => 'CameraProfileDigest', 480 => 'CameraProfileDigest' },
|
|
1301
|
+
'cameraprofiles' => { 492 => 'CameraProfiles' },
|
|
1302
|
+
'cameraprofilesaperturevalue' => { 492 => [\'CameraProfiles','CameraProfilesApertureValue'] },
|
|
1303
|
+
'cameraprofilesauthor' => { 492 => [\'CameraProfiles','CameraProfilesAuthor'] },
|
|
1304
|
+
'cameraprofilesautoscale' => { 492 => [\'CameraProfiles','CameraProfilesAutoScale'] },
|
|
1305
|
+
'cameraprofilescameraprettyname' => { 492 => [\'CameraProfiles','CameraProfilesCameraPrettyName'] },
|
|
1306
|
+
'cameraprofilescamerarawprofile' => { 492 => [\'CameraProfiles','CameraProfilesCameraRawProfile'] },
|
|
1307
|
+
'cameraprofilesfocallength' => { 492 => [\'CameraProfiles','CameraProfilesFocalLength'] },
|
|
1308
|
+
'cameraprofilesfocusdistance' => { 492 => [\'CameraProfiles','CameraProfilesFocusDistance'] },
|
|
1309
|
+
'cameraprofileslens' => { 492 => [\'CameraProfiles','CameraProfilesLens'] },
|
|
1310
|
+
'cameraprofileslensprettyname' => { 492 => [\'CameraProfiles','CameraProfilesLensPrettyName'] },
|
|
1311
|
+
'cameraprofilesmake' => { 492 => [\'CameraProfiles','CameraProfilesMake'] },
|
|
1312
|
+
'cameraprofilesmodel' => { 492 => [\'CameraProfiles','CameraProfilesModel'] },
|
|
1313
|
+
'cameraprofilesperspectivemodel' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModel'] },
|
|
1314
|
+
'cameraprofilesperspectivemodelimagexcenter' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageXCenter'] },
|
|
1315
|
+
'cameraprofilesperspectivemodelimageycenter' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelImageYCenter'] },
|
|
1316
|
+
'cameraprofilesperspectivemodelradialdistortparam1' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam1'] },
|
|
1317
|
+
'cameraprofilesperspectivemodelradialdistortparam2' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam2'] },
|
|
1318
|
+
'cameraprofilesperspectivemodelradialdistortparam3' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelRadialDistortParam3'] },
|
|
1319
|
+
'cameraprofilesperspectivemodelscalefactor' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelScaleFactor'] },
|
|
1320
|
+
'cameraprofilesperspectivemodelversion' => { 492 => [\'CameraProfiles','CameraProfilesPerspectiveModelVersion'] },
|
|
1321
|
+
'cameraprofilesprofilename' => { 492 => [\'CameraProfiles','CameraProfilesProfileName'] },
|
|
1322
|
+
'cameraprofilessensorformatfactor' => { 492 => [\'CameraProfiles','CameraProfilesSensorFormatFactor'] },
|
|
1323
|
+
'cameraprofilesuniquecameramodel' => { 492 => [\'CameraProfiles','CameraProfilesUniqueCameraModel'] },
|
|
1301
1324
|
'camerarawcolortone' => { 109 => 0xe1 },
|
|
1302
1325
|
'camerarawcontrast' => { 109 => 0xe3 },
|
|
1303
1326
|
'camerarawhighlightpoint' => { 109 => 0xe6 },
|
|
@@ -1559,7 +1582,7 @@ my %tagLookup = (
|
|
|
1559
1582
|
'circulargradientbasedcorrections' => { 478 => 'CircularGradientBasedCorrections', 480 => 'CircularGradientBasedCorrections' },
|
|
1560
1583
|
'city' => { 131 => 0x5a, 161 => 'City', 320 => 0x6d, 492 => 'City' },
|
|
1561
1584
|
'city2' => { 320 => 0x80 },
|
|
1562
|
-
'clarity' => { 232 => 0x35, 233 => 0x3d, 420 => 0x2036, 478 => 'Clarity', 480 => 'Clarity' },
|
|
1585
|
+
'clarity' => { 127 => 0x100f, 232 => 0x35, 233 => 0x3d, 420 => 0x2036, 478 => 'Clarity', 480 => 'Clarity' },
|
|
1563
1586
|
'clarity2012' => { 478 => 'Clarity2012', 480 => 'Clarity2012' },
|
|
1564
1587
|
'claritycontrol' => { 355 => 0x96 },
|
|
1565
1588
|
'classification' => { 380 => 'clsf' },
|
|
@@ -2359,6 +2382,7 @@ my %tagLookup = (
|
|
|
2359
2382
|
'dynamicareaafassist' => { 295 => 0x18 },
|
|
2360
2383
|
'dynamicareaafdisplay' => { 280 => '46.1', 282 => '47.1', 283 => '47.1', 292 => '47.1', 293 => '47.1' },
|
|
2361
2384
|
'dynamicrange' => { 127 => 0x1400 },
|
|
2385
|
+
'dynamicrangeboost' => { 320 => 0xee },
|
|
2362
2386
|
'dynamicrangeexpansion' => { 355 => 0x69, 387 => 0x100e },
|
|
2363
2387
|
'dynamicrangemax' => { 108 => 0x7c },
|
|
2364
2388
|
'dynamicrangemin' => { 108 => 0x7a },
|
|
@@ -2436,10 +2460,15 @@ my %tagLookup = (
|
|
|
2436
2460
|
'energysavingmode' => { 229 => 0x648 },
|
|
2437
2461
|
'engineer' => { 504 => 'engineer' },
|
|
2438
2462
|
'enhancedarktones' => { 265 => 0x8 },
|
|
2463
|
+
'enhancedetailsalreadyapplied' => { 475 => 'EnhanceDetailsAlreadyApplied' },
|
|
2464
|
+
'enhancedetailsversion' => { 475 => 'EnhanceDetailsVersion' },
|
|
2439
2465
|
'enhancement' => { 112 => 0x16, 113 => 0x3016 },
|
|
2440
2466
|
'enhanceparams' => { 119 => 0xc7ee },
|
|
2441
2467
|
'enhancer' => { 301 => 0x300 },
|
|
2442
2468
|
'enhancervalues' => { 301 => 0x301 },
|
|
2469
|
+
'enhancesuperresolutionalreadyapplied' => { 475 => 'EnhanceSuperResolutionAlreadyApplied' },
|
|
2470
|
+
'enhancesuperresolutionscale' => { 475 => 'EnhanceSuperResolutionScale' },
|
|
2471
|
+
'enhancesuperresolutionversion' => { 475 => 'EnhanceSuperResolutionVersion' },
|
|
2443
2472
|
'envelopenumber' => { 132 => 0x28 },
|
|
2444
2473
|
'envelopepriority' => { 132 => 0x3c },
|
|
2445
2474
|
'enveloperecordversion' => { 132 => 0x0 },
|
|
@@ -2742,8 +2771,7 @@ my %tagLookup = (
|
|
|
2742
2771
|
'firmwarename' => { 394 => 0xa001 },
|
|
2743
2772
|
'firmwarerevision' => { 19 => 0xa4, 64 => 0x1e, 385 => 0x0 },
|
|
2744
2773
|
'firmwarerevision2' => { 385 => 0xc },
|
|
2745
|
-
'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107,
|
|
2746
|
-
'firmwareversion2' => { 127 => 0x1448 },
|
|
2774
|
+
'firmwareversion' => { 7 => 0x10b, 11 => 0x136, 14 => 0xff, 15 => 0x107, 138 => [0x415,0xce5], 154 => 0x57, 156 => 'FirmwareVersion', 318 => 0x320, 320 => 0x2, 322 => 0x3109, 355 => 0x230, 380 => ['CNFV','FIRM'], 382 => 0x18, 383 => 0x2a, 387 => 0x2 },
|
|
2747
2775
|
'firmwareversions' => { 364 => 0x301 },
|
|
2748
2776
|
'firstphotodate' => { 466 => 'FirstPhotoDate' },
|
|
2749
2777
|
'firstpublicationdate' => { 307 => 'FirstPublicationDate' },
|
|
@@ -2913,12 +2941,13 @@ my %tagLookup = (
|
|
|
2913
2941
|
'focusprocess' => { 297 => 0x302 },
|
|
2914
2942
|
'focusrange' => { 34 => 0x12, 302 => 0x100a },
|
|
2915
2943
|
'focusrangeindex' => { 346 => '3.1' },
|
|
2944
|
+
'focusresult' => { 194 => 0x4a },
|
|
2916
2945
|
'focusringrotation' => { 84 => 0x713 },
|
|
2917
2946
|
'focussetting' => { 397 => 0x6 },
|
|
2918
2947
|
'focusshiftexposurelock' => { 228 => 0xe8, 229 => 0xf4, 252 => 0xc446 },
|
|
2919
2948
|
'focusshiftinterval' => { 228 => 0xe4, 229 => 0xf0, 252 => 0xc442 },
|
|
2920
2949
|
'focusshiftnumbershots' => { 228 => 0xdc, 229 => 0xe8, 252 => 0xc43a },
|
|
2921
|
-
'focusshiftshooting' => { 261 =>
|
|
2950
|
+
'focusshiftshooting' => { 261 => 0x6c90 },
|
|
2922
2951
|
'focusshiftstepwidth' => { 228 => 0xe0, 229 => 0xec, 252 => 0xc43e },
|
|
2923
2952
|
'focusstatus' => { 406 => 0x19, 407 => 0x53, 408 => 0x53 },
|
|
2924
2953
|
'focusstepcount' => { 300 => 0x301, 302 => 0x100e },
|
|
@@ -2956,6 +2985,8 @@ my %tagLookup = (
|
|
|
2956
2985
|
'freebytes' => { 97 => 0x1 },
|
|
2957
2986
|
'freememorycardimages' => { 182 => [0x37,0x54], 183 => [0x2d,0x4a], 184 => 0x32 },
|
|
2958
2987
|
'fujiflashmode' => { 127 => 0x1010 },
|
|
2988
|
+
'fujimodel' => { 127 => 0x1447 },
|
|
2989
|
+
'fujimodel2' => { 127 => 0x1448 },
|
|
2959
2990
|
'fullhdhighspeedrec' => { 127 => 0x3824 },
|
|
2960
2991
|
'fullimagesize' => { 420 => 0xb02b },
|
|
2961
2992
|
'fullpanoheightpixels' => { 466 => 'FullPanoHeightPixels', 467 => 'FullPanoHeightPixels' },
|
|
@@ -3219,7 +3250,8 @@ my %tagLookup = (
|
|
|
3219
3250
|
'gradientbasedcorrwhat' => { 478 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'], 480 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
|
|
3220
3251
|
'gradientbasedcorrwhites2012' => { 478 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'], 480 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalWhites2012'] },
|
|
3221
3252
|
'grainamount' => { 478 => 'GrainAmount', 480 => 'GrainAmount' },
|
|
3222
|
-
'
|
|
3253
|
+
'graineffectroughness' => { 127 => 0x1047 },
|
|
3254
|
+
'graineffectsize' => { 127 => 0x104c },
|
|
3223
3255
|
'grainfrequency' => { 478 => 'GrainFrequency', 480 => 'GrainFrequency' },
|
|
3224
3256
|
'grainseed' => { 478 => 'GrainSeed', 480 => 'GrainSeed' },
|
|
3225
3257
|
'grainsize' => { 478 => 'GrainSize', 480 => 'GrainSize' },
|
|
@@ -3886,6 +3918,7 @@ my %tagLookup = (
|
|
|
3886
3918
|
'linlogcoring' => { 138 => 0x904 },
|
|
3887
3919
|
'lithostratigraphicterms' => { 118 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] },
|
|
3888
3920
|
'livephotoauto' => { 374 => 'live-photo.auto' },
|
|
3921
|
+
'livephotovideoindex' => { 1 => 0x17 },
|
|
3889
3922
|
'livephotovitalityscore' => { 374 => 'live-photo.vitality-score' },
|
|
3890
3923
|
'livephotovitalityscoringversion' => { 374 => 'live-photo.vitality-scoring-version' },
|
|
3891
3924
|
'liveviewaf' => { 284 => '32.1', 294 => '34.1' },
|
|
@@ -4436,7 +4469,14 @@ my %tagLookup = (
|
|
|
4436
4469
|
'menubuttonreturn' => { 90 => 0xb },
|
|
4437
4470
|
'menumonitorofftime' => { 279 => '26.1', 280 => '22.1', 282 => '22.1', 283 => '22.1', 287 => '21.1', 288 => '8.2', 289 => '21.1', 292 => '22.1', 293 => '22.1', 294 => '22.1', 295 => 0x35 },
|
|
4438
4471
|
'menusettingsz7iioffset' => { 260 => 0xceb6 },
|
|
4472
|
+
'metadataauthority' => { 490 => 'metadataAuthority' },
|
|
4473
|
+
'metadataauthorityidentifier' => { 490 => [\'metadataAuthority','metadataAuthorityIdentifier'] },
|
|
4474
|
+
'metadataauthorityname' => { 490 => [\'metadataAuthority','metadataAuthorityName'] },
|
|
4439
4475
|
'metadatadate' => { 502 => 'MetadataDate' },
|
|
4476
|
+
'metadatalastedited' => { 490 => 'metadataLastEdited' },
|
|
4477
|
+
'metadatalasteditor' => { 490 => 'metadataLastEditor' },
|
|
4478
|
+
'metadatalasteditoridentifier' => { 490 => [\'metadataLastEditor','metadataLastEditorIdentifier'] },
|
|
4479
|
+
'metadatalasteditorname' => { 490 => [\'metadataLastEditor','metadataLastEditorName'] },
|
|
4440
4480
|
'metadatamoddate' => { 504 => 'metadataModDate' },
|
|
4441
4481
|
'metaversion' => { 428 => 0x34 },
|
|
4442
4482
|
'meterinfo1row1' => { 421 => 0x0, 422 => 0x0 },
|
|
@@ -4478,6 +4518,7 @@ my %tagLookup = (
|
|
|
4478
4518
|
'minaperturevalue' => { 364 => 0x415 },
|
|
4479
4519
|
'minfocallength' => { 7 => 0xe4, 8 => 0xe, 9 => 0x1a9, 10 => 0x11, 11 => 0x113, 12 => 0x11, 13 => 0x151, 14 => 0xd8, 16 => 0xf8, 17 => 0xec, 18 => 0x101, 19 => 0x93, 20 => 0xe8, 21 => 0x155, 22 => 0xec, 23 => 0xea, 24 => 0x129, 25 => 0x163, 26 => 0x168, 27 => 0x186, 28 => 0x114, 29 => 0x18b, 34 => 0x18, 127 => 0x1404, 163 => 'MinFocalLength', 218 => 0x8, 219 => 0xd, 220 => 0xe, 224 => 0xf, 298 => 0x207, 433 => 0x127a, 434 => 0x1136, 435 => 0x32e, 436 => 0x32e, 437 => 0x30c },
|
|
4480
4520
|
'minfocusdistance' => { 346 => 0x3 },
|
|
4521
|
+
'minimumiso' => { 320 => 0xe8 },
|
|
4481
4522
|
'minintegrationrows' => { 138 => 0x1874 },
|
|
4482
4523
|
'minoltadate' => { 181 => 0x15 },
|
|
4483
4524
|
'minoltaimagesize' => { 181 => 0x4, 182 => 0xc, 183 => 0x2, 186 => 0x103 },
|
|
@@ -4808,6 +4849,7 @@ my %tagLookup = (
|
|
|
4808
4849
|
'originaldocumentid' => { 505 => 'OriginalDocumentID' },
|
|
4809
4850
|
'originalfilename' => { 97 => 0x816, 138 => 0x3e9, 150 => 0x20, 317 => 0x407, 468 => 'OriginalFilename' },
|
|
4810
4851
|
'originalimageheight' => { 79 => 0xc, 123 => 0x1 },
|
|
4852
|
+
'originalimagesize' => { 162 => 'OriginalImageSize' },
|
|
4811
4853
|
'originalimagewidth' => { 79 => 0xb, 123 => 0x0 },
|
|
4812
4854
|
'originallyricist' => { 179 => 'WM/OriginalLyricist' },
|
|
4813
4855
|
'originalrawfiledata' => { 119 => 0xc68c },
|
|
@@ -5035,6 +5077,7 @@ my %tagLookup = (
|
|
|
5035
5077
|
'parametricshadows' => { 478 => 'ParametricShadows', 480 => 'ParametricShadows' },
|
|
5036
5078
|
'parametricshadowsplit' => { 478 => 'ParametricShadowSplit', 480 => 'ParametricShadowSplit' },
|
|
5037
5079
|
'parentalrating' => { 179 => 'WM/ParentalRating' },
|
|
5080
|
+
'parentid' => { 490 => 'parentId' },
|
|
5038
5081
|
'parentmediaeventid' => { 468 => 'ParentMediaEventID' },
|
|
5039
5082
|
'parentmeid' => { 468 => 'ParentMEID' },
|
|
5040
5083
|
'parentproductid' => { 372 => '@ppi' },
|
|
@@ -6637,7 +6680,12 @@ my %tagLookup = (
|
|
|
6637
6680
|
'uprightdependentdigest' => { 478 => 'UprightDependentDigest', 480 => 'UprightDependentDigest' },
|
|
6638
6681
|
'uprightfocallength35mm' => { 478 => 'UprightFocalLength35mm', 480 => 'UprightFocalLength35mm' },
|
|
6639
6682
|
'uprightfocalmode' => { 478 => 'UprightFocalMode', 480 => 'UprightFocalMode' },
|
|
6683
|
+
'uprightfoursegments_0' => { 478 => 'UprightFourSegments_0', 480 => 'UprightFourSegments_0' },
|
|
6684
|
+
'uprightfoursegments_1' => { 478 => 'UprightFourSegments_1', 480 => 'UprightFourSegments_1' },
|
|
6685
|
+
'uprightfoursegments_2' => { 478 => 'UprightFourSegments_2', 480 => 'UprightFourSegments_2' },
|
|
6686
|
+
'uprightfoursegments_3' => { 478 => 'UprightFourSegments_3', 480 => 'UprightFourSegments_3' },
|
|
6640
6687
|
'uprightfoursegmentscount' => { 478 => 'UprightFourSegmentsCount', 480 => 'UprightFourSegmentsCount' },
|
|
6688
|
+
'uprightguideddependentdigest' => { 478 => 'UprightGuidedDependentDigest', 480 => 'UprightGuidedDependentDigest' },
|
|
6641
6689
|
'uprightpreview' => { 478 => 'UprightPreview', 480 => 'UprightPreview' },
|
|
6642
6690
|
'uprighttransform_0' => { 478 => 'UprightTransform_0', 480 => 'UprightTransform_0' },
|
|
6643
6691
|
'uprighttransform_1' => { 478 => 'UprightTransform_1', 480 => 'UprightTransform_1' },
|
|
@@ -7036,7 +7084,7 @@ my %tagLookup = (
|
|
|
7036
7084
|
'whitebalancebuttonplaybackmode' => { 295 => 0x1c5 },
|
|
7037
7085
|
'whitebalancecomp' => { 305 => 0x1001 },
|
|
7038
7086
|
'whitebalancedetected' => { 138 => 0x3fb },
|
|
7039
|
-
'whitebalancefinetune' => { 127 => 0x100a, 184 => 0x38, 186 => 0x112, 226 => 0xb, 387 => 0x1004, 407 => 0x6, 408 => 0x5, 420 => 0x112 },
|
|
7087
|
+
'whitebalancefinetune' => { 127 => 0x100a, 184 => 0x38, 186 => 0x112, 226 => [0xb,0x3f], 387 => 0x1004, 407 => 0x6, 408 => 0x5, 420 => 0x112 },
|
|
7040
7088
|
'whitebalancemode' => { 138 => 0x3fa, 355 => 0x1a },
|
|
7041
7089
|
'whitebalancered' => { 74 => 0x6 },
|
|
7042
7090
|
'whitebalanceset' => { 336 => 0xa },
|
|
@@ -7113,6 +7161,7 @@ my %tagLookup = (
|
|
|
7113
7161
|
my %tagExists = (
|
|
7114
7162
|
'_ac3' => 1,
|
|
7115
7163
|
'_h264' => 1,
|
|
7164
|
+
'_misb' => 1,
|
|
7116
7165
|
'_stream' => 1,
|
|
7117
7166
|
'a100dataoffset' => 1,
|
|
7118
7167
|
'aas' => 1,
|
|
@@ -7129,6 +7178,8 @@ my %tagExists = (
|
|
|
7129
7178
|
'accessdate' => 1,
|
|
7130
7179
|
'accountname' => 1,
|
|
7131
7180
|
'acdsee' => 1,
|
|
7181
|
+
'acidizer' => 1,
|
|
7182
|
+
'acidizerflags' => 1,
|
|
7132
7183
|
'acquisitiontime' => 1,
|
|
7133
7184
|
'acquisitiontimeday' => 1,
|
|
7134
7185
|
'acquisitiontimemonth' => 1,
|
|
@@ -7221,7 +7272,10 @@ my %tagExists = (
|
|
|
7221
7272
|
'ainumlayers' => 1,
|
|
7222
7273
|
'aipdfprivatedata' => 1,
|
|
7223
7274
|
'aiprivatedata' => 1,
|
|
7275
|
+
'airfieldbarometricpressure' => 1,
|
|
7276
|
+
'airfieldelevation' => 1,
|
|
7224
7277
|
'airspeed' => 1,
|
|
7278
|
+
'airtemperature' => 1,
|
|
7225
7279
|
'airulerunits' => 1,
|
|
7226
7280
|
'aitargetresolution' => 1,
|
|
7227
7281
|
'album2' => 1,
|
|
@@ -7251,12 +7305,21 @@ my %tagExists = (
|
|
|
7251
7305
|
'alphaoffset' => 1,
|
|
7252
7306
|
'alphapreprocessing' => 1,
|
|
7253
7307
|
'alphasample' => 1,
|
|
7308
|
+
'alternatealtitude' => 1,
|
|
7254
7309
|
'alternateduotonecolors' => 1,
|
|
7310
|
+
'alternateellipsoidheight' => 1,
|
|
7311
|
+
'alternateellipsoidheightextended' => 1,
|
|
7312
|
+
'alternateheading' => 1,
|
|
7313
|
+
'alternatelatitude' => 1,
|
|
7314
|
+
'alternatelongitude' => 1,
|
|
7315
|
+
'alternatename' => 1,
|
|
7255
7316
|
'alternatesourceurl' => 1,
|
|
7256
7317
|
'alternatespotcolors' => 1,
|
|
7257
7318
|
'altitudefromtakeoff' => 1,
|
|
7258
7319
|
'ambienceinfo' => 1,
|
|
7320
|
+
'amendlocalset' => 1,
|
|
7259
7321
|
'angleaxis' => 1,
|
|
7322
|
+
'angleofattack' => 1,
|
|
7260
7323
|
'angularvelocity' => 1,
|
|
7261
7324
|
'anim' => 1,
|
|
7262
7325
|
'animation' => 1,
|
|
@@ -7291,8 +7354,10 @@ my %tagExists = (
|
|
|
7291
7354
|
'applemailread' => 1,
|
|
7292
7355
|
'applemailrepliedto' => 1,
|
|
7293
7356
|
'application' => 1,
|
|
7357
|
+
'application_riff' => 1,
|
|
7294
7358
|
'applicationdata' => 1,
|
|
7295
7359
|
'applicationmissingmsg' => 1,
|
|
7360
|
+
'applicationunknown' => 1,
|
|
7296
7361
|
'applicationversion' => 1,
|
|
7297
7362
|
'applysettingstoliveview' => 1,
|
|
7298
7363
|
'appname' => 1,
|
|
@@ -7486,6 +7551,7 @@ my %tagExists = (
|
|
|
7486
7551
|
'bavpver' => 1,
|
|
7487
7552
|
'bccaddresses' => 1,
|
|
7488
7553
|
'bccnames' => 1,
|
|
7554
|
+
'beats' => 1,
|
|
7489
7555
|
'beats-per-minute' => 1,
|
|
7490
7556
|
'beautycolorlevel' => 1,
|
|
7491
7557
|
'beautyretouchlevel' => 1,
|
|
@@ -7658,6 +7724,7 @@ my %tagExists = (
|
|
|
7658
7724
|
'calibrationlog' => 1,
|
|
7659
7725
|
'callbacknumber' => 1,
|
|
7660
7726
|
'callletters' => 1,
|
|
7727
|
+
'callsign' => 1,
|
|
7661
7728
|
'camcore' => 1,
|
|
7662
7729
|
'camera1' => 1,
|
|
7663
7730
|
'camera2' => 1,
|
|
@@ -7800,6 +7867,7 @@ my %tagExists = (
|
|
|
7800
7867
|
'casioqvmi' => 1,
|
|
7801
7868
|
'cast' => 1,
|
|
7802
7869
|
'catalognumber' => 1,
|
|
7870
|
+
'caveats' => 1,
|
|
7803
7871
|
'cbordata' => 1,
|
|
7804
7872
|
'cc' => 1,
|
|
7805
7873
|
'ccaddresses' => 1,
|
|
@@ -7880,6 +7948,7 @@ my %tagExists = (
|
|
|
7880
7948
|
'chartsourceedition' => 1,
|
|
7881
7949
|
'chartwgsnsshift' => 1,
|
|
7882
7950
|
'checkedby' => 1,
|
|
7951
|
+
'checksum' => 1,
|
|
7883
7952
|
'children' => 1,
|
|
7884
7953
|
'chmversion' => 1,
|
|
7885
7954
|
'chromaformat' => 1,
|
|
@@ -7896,6 +7965,7 @@ my %tagExists = (
|
|
|
7896
7965
|
'chromaticitycolorant' => 1,
|
|
7897
7966
|
'chunkoffset' => 1,
|
|
7898
7967
|
'chunkoffset64' => 1,
|
|
7968
|
+
'churchillnav' => 1,
|
|
7899
7969
|
'ciff' => 1,
|
|
7900
7970
|
'cinematographer' => 1,
|
|
7901
7971
|
'cip3datafile' => 1,
|
|
@@ -7903,6 +7973,13 @@ my %tagExists = (
|
|
|
7903
7973
|
'cip3side' => 1,
|
|
7904
7974
|
'circleofconfusion' => 1,
|
|
7905
7975
|
'class' => 1,
|
|
7976
|
+
'classificationandmarkingsystem' => 1,
|
|
7977
|
+
'classificationcomments' => 1,
|
|
7978
|
+
'classificationreason' => 1,
|
|
7979
|
+
'classifiedby' => 1,
|
|
7980
|
+
'classifyingcountry' => 1,
|
|
7981
|
+
'classifyingcountrycodemethod' => 1,
|
|
7982
|
+
'classifyingcountrycodingmethoddate' => 1,
|
|
7906
7983
|
'cleanaperture' => 1,
|
|
7907
7984
|
'cleanaperturedimensions' => 1,
|
|
7908
7985
|
'cleanapertureheight' => 1,
|
|
@@ -8008,6 +8085,7 @@ my %tagExists = (
|
|
|
8008
8085
|
'colorpalette' => 1,
|
|
8009
8086
|
'colorpopstrength' => 1,
|
|
8010
8087
|
'colorprimaries' => 1,
|
|
8088
|
+
'colorprofiles' => 1,
|
|
8011
8089
|
'colorresolutiondepth' => 1,
|
|
8012
8090
|
'colorresponseunit' => 1,
|
|
8013
8091
|
'colors' => 1,
|
|
@@ -8054,6 +8132,7 @@ my %tagExists = (
|
|
|
8054
8132
|
'componenttable' => 1,
|
|
8055
8133
|
'composers' => 1,
|
|
8056
8134
|
'composersortorder' => 1,
|
|
8135
|
+
'compositeimaginglocalset' => 1,
|
|
8057
8136
|
'compositinglayerheader' => 1,
|
|
8058
8137
|
'compositionmode' => 1,
|
|
8059
8138
|
'compositionoptions' => 1,
|
|
@@ -8118,6 +8197,14 @@ my %tagExists = (
|
|
|
8118
8197
|
'coringtablebest' => 1,
|
|
8119
8198
|
'coringtablebetter' => 1,
|
|
8120
8199
|
'coringtablegood' => 1,
|
|
8200
|
+
'cornerlatitude1' => 1,
|
|
8201
|
+
'cornerlatitude2' => 1,
|
|
8202
|
+
'cornerlatitude3' => 1,
|
|
8203
|
+
'cornerlatitude4' => 1,
|
|
8204
|
+
'cornerlongitude1' => 1,
|
|
8205
|
+
'cornerlongitude2' => 1,
|
|
8206
|
+
'cornerlongitude3' => 1,
|
|
8207
|
+
'cornerlongitude4' => 1,
|
|
8121
8208
|
'correctionmethod' => 1,
|
|
8122
8209
|
'costumedesigner' => 1,
|
|
8123
8210
|
'count' => 1,
|
|
@@ -8313,6 +8400,7 @@ my %tagExists = (
|
|
|
8313
8400
|
'dealeridnumber' => 1,
|
|
8314
8401
|
'decimationmethod' => 1,
|
|
8315
8402
|
'decimationprefilterwidth' => 1,
|
|
8403
|
+
'declassificationdate' => 1,
|
|
8316
8404
|
'decode' => 1,
|
|
8317
8405
|
'decodeconfig' => 1,
|
|
8318
8406
|
'decodertable' => 1,
|
|
@@ -8342,6 +8430,8 @@ my %tagExists = (
|
|
|
8342
8430
|
'deltapngheader' => 1,
|
|
8343
8431
|
'deltatype' => 1,
|
|
8344
8432
|
'deltaxy' => 1,
|
|
8433
|
+
'densityaltitude' => 1,
|
|
8434
|
+
'densityaltitudeextended' => 1,
|
|
8345
8435
|
'department' => 1,
|
|
8346
8436
|
'dependentimage1entrynumber' => 1,
|
|
8347
8437
|
'dependentimage2entrynumber' => 1,
|
|
@@ -8383,6 +8473,7 @@ my %tagExists = (
|
|
|
8383
8473
|
'dicom' => 1,
|
|
8384
8474
|
'dictionary' => 1,
|
|
8385
8475
|
'dictionaryshortname' => 1,
|
|
8476
|
+
'differentialpressure' => 1,
|
|
8386
8477
|
'difftilegains24t852822' => 1,
|
|
8387
8478
|
'difftilegains602832' => 1,
|
|
8388
8479
|
'digikam' => 1,
|
|
@@ -8636,6 +8727,7 @@ my %tagExists = (
|
|
|
8636
8727
|
'eventlogcapture' => 1,
|
|
8637
8728
|
'eventlogprocess' => 1,
|
|
8638
8729
|
'events' => 1,
|
|
8730
|
+
'eventstarttime' => 1,
|
|
8639
8731
|
'evstepinfo' => 1,
|
|
8640
8732
|
'exif_profile' => 1,
|
|
8641
8733
|
'exifdata' => 1,
|
|
@@ -8936,6 +9028,10 @@ my %tagExists = (
|
|
|
8936
9028
|
'fragmenttable' => 1,
|
|
8937
9029
|
'frame' => 1,
|
|
8938
9030
|
'framebaseview' => 1,
|
|
9031
|
+
'framecenterelevation' => 1,
|
|
9032
|
+
'framecenterheightaboveellipsoid' => 1,
|
|
9033
|
+
'framecenterlatitude' => 1,
|
|
9034
|
+
'framecenterlongitude' => 1,
|
|
8939
9035
|
'frameexposuretime' => 1,
|
|
8940
9036
|
'frameid' => 1,
|
|
8941
9037
|
'frameinfo' => 1,
|
|
@@ -8954,14 +9050,19 @@ my %tagExists = (
|
|
|
8954
9050
|
'fromaddresses' => 1,
|
|
8955
9051
|
'fromnames' => 1,
|
|
8956
9052
|
'fstype' => 1,
|
|
9053
|
+
'fuelremaining' => 1,
|
|
8957
9054
|
'fujifilm' => 1,
|
|
8958
9055
|
'fujifilmffmv' => 1,
|
|
8959
9056
|
'fujifilmmvtg' => 1,
|
|
8960
9057
|
'fujifilmtags' => 1,
|
|
8961
9058
|
'fujiifd' => 1,
|
|
8962
9059
|
'fujilayout' => 1,
|
|
9060
|
+
'fullangleofattack' => 1,
|
|
8963
9061
|
'fullname' => 1,
|
|
9062
|
+
'fullpitchangle' => 1,
|
|
9063
|
+
'fullrollangle' => 1,
|
|
8964
9064
|
'fullscreen' => 1,
|
|
9065
|
+
'fullsideslipangle' => 1,
|
|
8965
9066
|
'fusion360fly' => 1,
|
|
8966
9067
|
'fusionmode' => 1,
|
|
8967
9068
|
'fusionypr' => 1,
|
|
@@ -8982,6 +9083,7 @@ my %tagExists = (
|
|
|
8982
9083
|
'gamutboundarydescription2' => 1,
|
|
8983
9084
|
'gamutboundarydescription3' => 1,
|
|
8984
9085
|
'gapless' => 1,
|
|
9086
|
+
'garmingps' => 1,
|
|
8985
9087
|
'gaudio' => 1,
|
|
8986
9088
|
'gaussianweights' => 1,
|
|
8987
9089
|
'gcamera' => 1,
|
|
@@ -8996,6 +9098,7 @@ my %tagExists = (
|
|
|
8996
9098
|
'generaltierflag' => 1,
|
|
8997
9099
|
'generator' => 1,
|
|
8998
9100
|
'generatorversion' => 1,
|
|
9101
|
+
'genericflagdata01' => 1,
|
|
8999
9102
|
'genflags' => 1,
|
|
9000
9103
|
'gengraphicsmode' => 1,
|
|
9001
9104
|
'genmediaheader' => 1,
|
|
@@ -9021,6 +9124,7 @@ my %tagExists = (
|
|
|
9021
9124
|
'geogsemiminoraxis' => 1,
|
|
9022
9125
|
'geogtowgs84' => 1,
|
|
9023
9126
|
'geometricdistortionparams' => 1,
|
|
9127
|
+
'georegistrationlocalset' => 1,
|
|
9024
9128
|
'geotiffversion' => 1,
|
|
9025
9129
|
'getty' => 1,
|
|
9026
9130
|
'gfocus' => 1,
|
|
@@ -9101,6 +9205,7 @@ my %tagExists = (
|
|
|
9101
9205
|
'greenx' => 1,
|
|
9102
9206
|
'greeny' => 1,
|
|
9103
9207
|
'gridguidesinfo' => 1,
|
|
9208
|
+
'groundrange' => 1,
|
|
9104
9209
|
'groupareac1' => 1,
|
|
9105
9210
|
'groupcaption' => 1,
|
|
9106
9211
|
'groupmutualexclusion' => 1,
|
|
@@ -9189,10 +9294,13 @@ my %tagExists = (
|
|
|
9189
9294
|
'homepostalcode' => 1,
|
|
9190
9295
|
'homestateorprovince' => 1,
|
|
9191
9296
|
'homestreet' => 1,
|
|
9297
|
+
'horizontalfieldofview' => 1,
|
|
9192
9298
|
'horizontalresolution' => 1,
|
|
9193
9299
|
'horizontalscale' => 1,
|
|
9194
9300
|
'hostsoftwareexportversion' => 1,
|
|
9195
9301
|
'hotkey' => 1,
|
|
9302
|
+
'hotspotx' => 1,
|
|
9303
|
+
'hotspoty' => 1,
|
|
9196
9304
|
'howpublished' => 1,
|
|
9197
9305
|
'hp_tdhd' => 1,
|
|
9198
9306
|
'hrnoiselines' => 1,
|
|
@@ -9213,6 +9321,8 @@ my %tagExists = (
|
|
|
9213
9321
|
'iad1' => 1,
|
|
9214
9322
|
'icc_untagged' => 1,
|
|
9215
9323
|
'iccbased' => 1,
|
|
9324
|
+
'icingdetected' => 1,
|
|
9325
|
+
'icondir' => 1,
|
|
9216
9326
|
'iconenvdata' => 1,
|
|
9217
9327
|
'iconfilename' => 1,
|
|
9218
9328
|
'iconindex' => 1,
|
|
@@ -9258,6 +9368,7 @@ my %tagExists = (
|
|
|
9258
9368
|
'imagecolorindicator' => 1,
|
|
9259
9369
|
'imagecolorvalue' => 1,
|
|
9260
9370
|
'imagecompressiontable' => 1,
|
|
9371
|
+
'imagecoordinatesystem' => 1,
|
|
9261
9372
|
'imagedatadiscard' => 1,
|
|
9262
9373
|
'imagedataoffset' => 1,
|
|
9263
9374
|
'imagedepth' => 1,
|
|
@@ -9270,6 +9381,7 @@ my %tagExists = (
|
|
|
9270
9381
|
'imagefullheight' => 1,
|
|
9271
9382
|
'imagefullwidth' => 1,
|
|
9272
9383
|
'imageheader' => 1,
|
|
9384
|
+
'imagehorizonpixelpack' => 1,
|
|
9273
9385
|
'imageid' => 1,
|
|
9274
9386
|
'imageinfo' => 1,
|
|
9275
9387
|
'imagelayer' => 1,
|
|
@@ -9337,6 +9449,7 @@ my %tagExists = (
|
|
|
9337
9449
|
'indexedcolortablecount' => 1,
|
|
9338
9450
|
'indexoffset' => 1,
|
|
9339
9451
|
'indexparameters' => 1,
|
|
9452
|
+
'indicatedairspeed' => 1,
|
|
9340
9453
|
'indications' => 1,
|
|
9341
9454
|
'info' => 1,
|
|
9342
9455
|
'ingrreserved' => 1,
|
|
@@ -9430,6 +9543,7 @@ my %tagExists = (
|
|
|
9430
9543
|
'itch' => 1,
|
|
9431
9544
|
'item' => 1,
|
|
9432
9545
|
'item0032' => 1,
|
|
9546
|
+
'itemdesignatorid' => 1,
|
|
9433
9547
|
'itemid' => 1,
|
|
9434
9548
|
'iteminfoentry' => 1,
|
|
9435
9549
|
'iteminformation' => 1,
|
|
@@ -9568,6 +9682,7 @@ my %tagExists = (
|
|
|
9568
9682
|
'languagelist' => 1,
|
|
9569
9683
|
'largestpacketduration' => 1,
|
|
9570
9684
|
'largestpacketsize' => 1,
|
|
9685
|
+
'laserprfcode' => 1,
|
|
9571
9686
|
'lastauthor' => 1,
|
|
9572
9687
|
'lastbackupdate' => 1,
|
|
9573
9688
|
'lastchar' => 1,
|
|
@@ -9760,6 +9875,7 @@ my %tagExists = (
|
|
|
9760
9875
|
'mag360fly' => 1,
|
|
9761
9876
|
'magmode' => 1,
|
|
9762
9877
|
'magneticfield' => 1,
|
|
9878
|
+
'magneticheading' => 1,
|
|
9763
9879
|
'magnetometer' => 1,
|
|
9764
9880
|
'magnetometerxyz' => 1,
|
|
9765
9881
|
'magnification' => 1,
|
|
@@ -9793,6 +9909,7 @@ my %tagExists = (
|
|
|
9793
9909
|
'marl' => 1,
|
|
9794
9910
|
'masksubarea' => 1,
|
|
9795
9911
|
'mastergainadjustment' => 1,
|
|
9912
|
+
'matrixcoefficients' => 1,
|
|
9796
9913
|
'matrixworldtocamera' => 1,
|
|
9797
9914
|
'matrixworldtoscreen' => 1,
|
|
9798
9915
|
'mattcolor' => 1,
|
|
@@ -10036,6 +10153,7 @@ my %tagExists = (
|
|
|
10036
10153
|
'metasampledesc' => 1,
|
|
10037
10154
|
'metatype' => 1,
|
|
10038
10155
|
'metdata' => 1,
|
|
10156
|
+
'meter' => 1,
|
|
10039
10157
|
'meterinfo' => 1,
|
|
10040
10158
|
'meteringbutton' => 1,
|
|
10041
10159
|
'meterlink' => 1,
|
|
@@ -10050,6 +10168,7 @@ my %tagExists = (
|
|
|
10050
10168
|
'midisong' => 1,
|
|
10051
10169
|
'midiunitynote' => 1,
|
|
10052
10170
|
'mie' => 1,
|
|
10171
|
+
'miiscoreidentifier' => 1,
|
|
10053
10172
|
'mileage' => 1,
|
|
10054
10173
|
'mimeencoding' => 1,
|
|
10055
10174
|
'mimetype' => 1,
|
|
@@ -10076,6 +10195,7 @@ my %tagExists = (
|
|
|
10076
10195
|
'minpacketsize' => 1,
|
|
10077
10196
|
'minspatialsegmentationidc' => 1,
|
|
10078
10197
|
'mintransmissiontime' => 1,
|
|
10198
|
+
'missionid' => 1,
|
|
10079
10199
|
'mmclips' => 1,
|
|
10080
10200
|
'mngheader' => 1,
|
|
10081
10201
|
'mobitype' => 1,
|
|
@@ -10262,6 +10382,9 @@ my %tagExists = (
|
|
|
10262
10382
|
'numslices' => 1,
|
|
10263
10383
|
'numstreams' => 1,
|
|
10264
10384
|
'numtemporallayers' => 1,
|
|
10385
|
+
'objectcountrycodes' => 1,
|
|
10386
|
+
'objectcountrycodingmethod' => 1,
|
|
10387
|
+
'objectcountrycodingmethoddate' => 1,
|
|
10265
10388
|
'objectfiletype' => 1,
|
|
10266
10389
|
'objectflags' => 1,
|
|
10267
10390
|
'objectid' => 1,
|
|
@@ -10285,6 +10408,14 @@ my %tagExists = (
|
|
|
10285
10408
|
'officelocation' => 1,
|
|
10286
10409
|
'offlineavailability' => 1,
|
|
10287
10410
|
'offlinestatus' => 1,
|
|
10411
|
+
'offsetcornerlatitude1' => 1,
|
|
10412
|
+
'offsetcornerlatitude2' => 1,
|
|
10413
|
+
'offsetcornerlatitude3' => 1,
|
|
10414
|
+
'offsetcornerlatitude4' => 1,
|
|
10415
|
+
'offsetcornerlongitude1' => 1,
|
|
10416
|
+
'offsetcornerlongitude2' => 1,
|
|
10417
|
+
'offsetcornerlongitude3' => 1,
|
|
10418
|
+
'offsetcornerlongitude4' => 1,
|
|
10288
10419
|
'offsetmaphorizontal' => 1,
|
|
10289
10420
|
'offsetmapvertical' => 1,
|
|
10290
10421
|
'offsetorigin' => 1,
|
|
@@ -10359,6 +10490,7 @@ my %tagExists = (
|
|
|
10359
10490
|
'openwithapplication' => 1,
|
|
10360
10491
|
'operatingsystem' => 1,
|
|
10361
10492
|
'operation' => 1,
|
|
10493
|
+
'operationalmode' => 1,
|
|
10362
10494
|
'operationclassid' => 1,
|
|
10363
10495
|
'operationid' => 1,
|
|
10364
10496
|
'operationnumber' => 1,
|
|
@@ -10603,6 +10735,7 @@ my %tagExists = (
|
|
|
10603
10735
|
'planckr2' => 1,
|
|
10604
10736
|
'playbackflickdownrating' => 1,
|
|
10605
10737
|
'playbackflickuprating' => 1,
|
|
10738
|
+
'playbackframerate' => 1,
|
|
10606
10739
|
'playcounter' => 1,
|
|
10607
10740
|
'playlist' => 1,
|
|
10608
10741
|
'playlistdelay' => 1,
|
|
@@ -10737,6 +10870,7 @@ my %tagExists = (
|
|
|
10737
10870
|
'projcoordtrans' => 1,
|
|
10738
10871
|
'project' => 1,
|
|
10739
10872
|
'projectedcstype' => 1,
|
|
10873
|
+
'projectidcode' => 1,
|
|
10740
10874
|
'projection' => 1,
|
|
10741
10875
|
'projectionboundsbottom' => 1,
|
|
10742
10876
|
'projectionboundsleft' => 1,
|
|
@@ -10818,6 +10952,7 @@ my %tagExists = (
|
|
|
10818
10952
|
'radiostationowner' => 1,
|
|
10819
10953
|
'rafdata' => 1,
|
|
10820
10954
|
'rafversion' => 1,
|
|
10955
|
+
'rangeimagelocalset' => 1,
|
|
10821
10956
|
'rasterpadding' => 1,
|
|
10822
10957
|
'rate' => 1,
|
|
10823
10958
|
'rated' => 1,
|
|
@@ -10947,6 +11082,7 @@ my %tagExists = (
|
|
|
10947
11082
|
'releasedateyear' => 1,
|
|
10948
11083
|
'releasedateyearmonth' => 1,
|
|
10949
11084
|
'releasedateyearmonthday' => 1,
|
|
11085
|
+
'releasinginstructions' => 1,
|
|
10950
11086
|
'rembrandtconsumertonescale' => 1,
|
|
10951
11087
|
'rembrandtportraittonescale' => 1,
|
|
10952
11088
|
'rembrandttonescale' => 1,
|
|
@@ -11052,6 +11188,7 @@ my %tagExists = (
|
|
|
11052
11188
|
'rollingshutterskewtime' => 1,
|
|
11053
11189
|
'root' => 1,
|
|
11054
11190
|
'rootdirectorycreatedate' => 1,
|
|
11191
|
+
'rootnote' => 1,
|
|
11055
11192
|
'rot360fly' => 1,
|
|
11056
11193
|
'rotationangle' => 1,
|
|
11057
11194
|
'rotationxyz' => 1,
|
|
@@ -11071,6 +11208,7 @@ my %tagExists = (
|
|
|
11071
11208
|
'runwindow' => 1,
|
|
11072
11209
|
'rvmi_grev' => 1,
|
|
11073
11210
|
'rvmi_srev' => 1,
|
|
11211
|
+
'rvtlocalset' => 1,
|
|
11074
11212
|
's2n' => 1,
|
|
11075
11213
|
'sampleblacksequence' => 1,
|
|
11076
11214
|
'sampledatetime' => 1,
|
|
@@ -11108,6 +11246,7 @@ my %tagExists = (
|
|
|
11108
11246
|
'sanyomov' => 1,
|
|
11109
11247
|
'sanyomp4' => 1,
|
|
11110
11248
|
'sap' => 1,
|
|
11249
|
+
'sarmotionimagerydata' => 1,
|
|
11111
11250
|
'saturationinfo' => 1,
|
|
11112
11251
|
'saturationrenderingintentgamut' => 1,
|
|
11113
11252
|
'savefocus' => 1,
|
|
@@ -11174,14 +11313,19 @@ my %tagExists = (
|
|
|
11174
11313
|
'script' => 1,
|
|
11175
11314
|
'scriptcommand' => 1,
|
|
11176
11315
|
'sdc' => 1,
|
|
11316
|
+
'sdcc-flp' => 1,
|
|
11177
11317
|
'searchranking' => 1,
|
|
11178
11318
|
'secondarygenre' => 1,
|
|
11179
11319
|
'secondlanguage' => 1,
|
|
11180
11320
|
'security' => 1,
|
|
11321
|
+
'securitylocalmetadataset' => 1,
|
|
11322
|
+
'securitysci-shiinformation' => 1,
|
|
11323
|
+
'securityversion' => 1,
|
|
11181
11324
|
'seekable' => 1,
|
|
11182
11325
|
'seekpoint' => 1,
|
|
11183
11326
|
'seektable' => 1,
|
|
11184
11327
|
'segheight' => 1,
|
|
11328
|
+
'segmentlocalset' => 1,
|
|
11185
11329
|
'segwidth' => 1,
|
|
11186
11330
|
'selection' => 1,
|
|
11187
11331
|
'selectionduration' => 1,
|
|
@@ -11190,7 +11334,7 @@ my %tagExists = (
|
|
|
11190
11334
|
'selobjname' => 1,
|
|
11191
11335
|
'selobjtype' => 1,
|
|
11192
11336
|
'selobjversion' => 1,
|
|
11193
|
-
'
|
|
11337
|
+
'semanticinstanceid' => 1,
|
|
11194
11338
|
'semanticname' => 1,
|
|
11195
11339
|
'sendduration' => 1,
|
|
11196
11340
|
'senderaddress' => 1,
|
|
@@ -11200,10 +11344,19 @@ my %tagExists = (
|
|
|
11200
11344
|
'sensorbottomborder' => 1,
|
|
11201
11345
|
'sensordata' => 1,
|
|
11202
11346
|
'sensordefects' => 1,
|
|
11347
|
+
'sensorellipsoidheight' => 1,
|
|
11348
|
+
'sensorellipsoidheightextended' => 1,
|
|
11349
|
+
'sensorfieldofviewname' => 1,
|
|
11203
11350
|
'sensorid' => 1,
|
|
11204
11351
|
'sensorinfo' => 1,
|
|
11352
|
+
'sensorname' => 1,
|
|
11205
11353
|
'sensorreadouttime' => 1,
|
|
11354
|
+
'sensorrelativeazimuthangle' => 1,
|
|
11355
|
+
'sensorrelativeelevationangle' => 1,
|
|
11356
|
+
'sensorrelativerollangle' => 1,
|
|
11206
11357
|
'sensorrightborder' => 1,
|
|
11358
|
+
'sensorvelocityeast' => 1,
|
|
11359
|
+
'sensorvelocitynorth' => 1,
|
|
11207
11360
|
'seqlevelidx0' => 1,
|
|
11208
11361
|
'seqprofile' => 1,
|
|
11209
11362
|
'seqtier0' => 1,
|
|
@@ -11288,6 +11441,7 @@ my %tagExists = (
|
|
|
11288
11441
|
'shutterspeeddisplayed' => 1,
|
|
11289
11442
|
'sidebars' => 1,
|
|
11290
11443
|
'sidelightstrength' => 1,
|
|
11444
|
+
'sideslipangle' => 1,
|
|
11291
11445
|
'sigma' => 1,
|
|
11292
11446
|
'sigmanoisefiltercaltablev1' => 1,
|
|
11293
11447
|
'sigmanoisefiltertablev1' => 1,
|
|
@@ -11318,6 +11472,7 @@ my %tagExists = (
|
|
|
11318
11472
|
'size' => 1,
|
|
11319
11473
|
'sizemode' => 1,
|
|
11320
11474
|
'skip' => 1,
|
|
11475
|
+
'slantrange' => 1,
|
|
11321
11476
|
'slateinformation' => 1,
|
|
11322
11477
|
'sliceinfo' => 1,
|
|
11323
11478
|
'slicesgroupname' => 1,
|
|
@@ -11395,6 +11550,7 @@ my %tagExists = (
|
|
|
11395
11550
|
'startreading' => 1,
|
|
11396
11551
|
'starttime' => 1,
|
|
11397
11552
|
'stateorprovince' => 1,
|
|
11553
|
+
'staticpressure' => 1,
|
|
11398
11554
|
'stationcallsign' => 1,
|
|
11399
11555
|
'stationname' => 1,
|
|
11400
11556
|
'statistics' => 1,
|
|
@@ -11436,6 +11592,7 @@ my %tagExists = (
|
|
|
11436
11592
|
'streamdata' => 1,
|
|
11437
11593
|
'streamduration' => 1,
|
|
11438
11594
|
'streamheader' => 1,
|
|
11595
|
+
'streamid' => 1,
|
|
11439
11596
|
'streaminfo' => 1,
|
|
11440
11597
|
'streamingdataprotocol' => 1,
|
|
11441
11598
|
'streammaxbitrate' => 1,
|
|
@@ -11576,13 +11733,24 @@ my %tagExists = (
|
|
|
11576
11733
|
'tag9416_0000' => 1,
|
|
11577
11734
|
'taggedpdf' => 1,
|
|
11578
11735
|
'taggingtime' => 1,
|
|
11736
|
+
'tailnumber' => 1,
|
|
11579
11737
|
'take' => 1,
|
|
11580
11738
|
'tamper-proofkeys' => 1,
|
|
11581
11739
|
'targetaudiences' => 1,
|
|
11582
11740
|
'targetdeltatype' => 1,
|
|
11741
|
+
'targeterrorestimatece90' => 1,
|
|
11742
|
+
'targeterrorestimatele90' => 1,
|
|
11583
11743
|
'targetfiledosname' => 1,
|
|
11584
11744
|
'targetfilesize' => 1,
|
|
11585
11745
|
'targetlayerid' => 1,
|
|
11746
|
+
'targetlocationcovariancematrix' => 1,
|
|
11747
|
+
'targetlocationelevation' => 1,
|
|
11748
|
+
'targetlocationlatitude' => 1,
|
|
11749
|
+
'targetlocationlongitude' => 1,
|
|
11750
|
+
'targettrackgateheight' => 1,
|
|
11751
|
+
'targettrackgatewidth' => 1,
|
|
11752
|
+
'targetwidth' => 1,
|
|
11753
|
+
'targetwidthextended' => 1,
|
|
11586
11754
|
'targetxy' => 1,
|
|
11587
11755
|
'taskowner' => 1,
|
|
11588
11756
|
'tattoo' => 1,
|
|
@@ -11744,6 +11912,7 @@ my %tagExists = (
|
|
|
11744
11912
|
'trademark' => 1,
|
|
11745
11913
|
'transactionid' => 1,
|
|
11746
11914
|
'transfercharacteristic' => 1,
|
|
11915
|
+
'transfercharacteristics' => 1,
|
|
11747
11916
|
'transferrange' => 1,
|
|
11748
11917
|
'transfersequence' => 1,
|
|
11749
11918
|
'transformation' => 1,
|
|
@@ -11757,10 +11926,12 @@ my %tagExists = (
|
|
|
11757
11926
|
'transparencyindicator' => 1,
|
|
11758
11927
|
'transparentcolor' => 1,
|
|
11759
11928
|
'transparentindex' => 1,
|
|
11929
|
+
'transportstreamid' => 1,
|
|
11760
11930
|
'trapindicator' => 1,
|
|
11761
11931
|
'trashcolsright' => 1,
|
|
11762
11932
|
'trashrowsbottom' => 1,
|
|
11763
11933
|
'trim' => 1,
|
|
11934
|
+
'trueairspeed' => 1,
|
|
11764
11935
|
'tty-ttdphone' => 1,
|
|
11765
11936
|
'tungmat0' => 1,
|
|
11766
11937
|
'tungmat1' => 1,
|
|
@@ -11776,11 +11947,14 @@ my %tagExists = (
|
|
|
11776
11947
|
'tx3g' => 1,
|
|
11777
11948
|
'typeoforiginal' => 1,
|
|
11778
11949
|
'typist' => 1,
|
|
11950
|
+
'uas_lsversionnumber' => 1,
|
|
11951
|
+
'uasdatalink' => 1,
|
|
11779
11952
|
'ucrbg' => 1,
|
|
11780
11953
|
'uic1tag' => 1,
|
|
11781
11954
|
'uic2tag' => 1,
|
|
11782
11955
|
'uic3tag' => 1,
|
|
11783
11956
|
'uic4tag' => 1,
|
|
11957
|
+
'umid' => 1,
|
|
11784
11958
|
'uncompressed' => 1,
|
|
11785
11959
|
'uncompressedsize' => 1,
|
|
11786
11960
|
'uncompressedtextlength' => 1,
|
|
@@ -11914,6 +12088,7 @@ my %tagExists = (
|
|
|
11914
12088
|
'verticalcstype' => 1,
|
|
11915
12089
|
'verticaldatum' => 1,
|
|
11916
12090
|
'verticaldivergence' => 1,
|
|
12091
|
+
'verticalfieldofview' => 1,
|
|
11917
12092
|
'verticalresolution' => 1,
|
|
11918
12093
|
'verticalscale' => 1,
|
|
11919
12094
|
'verticalspeed' => 1,
|
|
@@ -11974,6 +12149,7 @@ my %tagExists = (
|
|
|
11974
12149
|
'vmnbands' => 1,
|
|
11975
12150
|
'vmpatchreslimit' => 1,
|
|
11976
12151
|
'vmpixthresh' => 1,
|
|
12152
|
+
'vmtidataset' => 1,
|
|
11977
12153
|
'vmwsize' => 1,
|
|
11978
12154
|
'volumeblockcount' => 1,
|
|
11979
12155
|
'volumeblocksize' => 1,
|
|
@@ -12067,6 +12243,9 @@ my %tagExists = (
|
|
|
12067
12243
|
'wbsettings' => 1,
|
|
12068
12244
|
'wbsettings2' => 1,
|
|
12069
12245
|
'wcsprofiles' => 1,
|
|
12246
|
+
'weaponfired' => 1,
|
|
12247
|
+
'weaponload' => 1,
|
|
12248
|
+
'webp_flags' => 1,
|
|
12070
12249
|
'webpage' => 1,
|
|
12071
12250
|
'weight' => 1,
|
|
12072
12251
|
'whitebalancematching' => 1,
|
|
@@ -12085,12 +12264,14 @@ my %tagExists = (
|
|
|
12085
12264
|
'widthbytes' => 1,
|
|
12086
12265
|
'widthresolution' => 1,
|
|
12087
12266
|
'wifirssi' => 1,
|
|
12267
|
+
'winddirection' => 1,
|
|
12088
12268
|
'windoworigin' => 1,
|
|
12089
12269
|
'windoworiginauto' => 1,
|
|
12090
12270
|
'windowsdevmode' => 1,
|
|
12091
12271
|
'windowsfilename' => 1,
|
|
12092
12272
|
'windowsize' => 1,
|
|
12093
12273
|
'windowtarget' => 1,
|
|
12274
|
+
'windspeed' => 1,
|
|
12094
12275
|
'wm_collectiongroupid' => 1,
|
|
12095
12276
|
'wm_collectionid' => 1,
|
|
12096
12277
|
'wm_contentid' => 1,
|