exiftool_vendored 13.16.0 → 13.18.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 +28 -0
- data/bin/MANIFEST +2 -2
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/config_files/example.config +1 -1
- data/bin/exiftool +13 -9
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +14 -8
- data/bin/lib/Image/ExifTool/Canon.pm +3 -2
- data/bin/lib/Image/ExifTool/CanonRaw.pm +1 -1
- data/bin/lib/Image/ExifTool/GoPro.pm +58 -48
- data/bin/lib/Image/ExifTool/JPEG.pm +7 -1
- data/bin/lib/Image/ExifTool/Nikon.pm +116 -192
- data/bin/lib/Image/ExifTool/NikonCustom.pm +4 -4
- data/bin/lib/Image/ExifTool/Photoshop.pm +2 -2
- data/bin/lib/Image/ExifTool/QuickTime.pm +257 -252
- data/bin/lib/Image/ExifTool/Samsung.pm +4 -0
- data/bin/lib/Image/ExifTool/Sony.pm +1 -1
- data/bin/lib/Image/ExifTool/TagLookup.pm +41 -2
- data/bin/lib/Image/ExifTool/TagNames.pod +10770 -10696
- data/bin/lib/Image/ExifTool/Trailer.pm +318 -0
- data/bin/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +8 -1
- data/bin/lib/Image/ExifTool/Writer.pl +5 -3
- data/bin/lib/Image/ExifTool/XMP2.pl +5 -2
- data/bin/lib/Image/ExifTool.pm +141 -75
- data/bin/lib/Image/ExifTool.pod +38 -38
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +3 -3
- data/bin/lib/Image/ExifTool/Vivo.pm +0 -124
@@ -4797,6 +4797,7 @@ my %tagLookup = (
|
|
4797
4797
|
'mediamodifydate' => { 413 => 0x2 },
|
4798
4798
|
'mediasummarycode' => { 341 => 'MediaSummaryCode' },
|
4799
4799
|
'mediatype' => { 409 => 'stik' },
|
4800
|
+
'mediauid' => { 417 => 'MUID' },
|
4800
4801
|
'memoaudioquality' => { 90 => 0x812 },
|
4801
4802
|
'memorycardconfiguration' => { 451 => 0x16 },
|
4802
4803
|
'memorycardnumber' => { 220 => 0x2 },
|
@@ -7872,6 +7873,8 @@ my %tagExists = (
|
|
7872
7873
|
'asin' => 1,
|
7873
7874
|
'asin2' => 1,
|
7874
7875
|
'aspectinfo' => 1,
|
7876
|
+
'aspectratiounwarped' => 1,
|
7877
|
+
'aspectratiowarped' => 1,
|
7875
7878
|
'aspectratiox' => 1,
|
7876
7879
|
'aspectratioy' => 1,
|
7877
7880
|
'assistantdirector' => 1,
|
@@ -7911,6 +7914,7 @@ my %tagExists = (
|
|
7911
7914
|
'audioavailablenumberchannels' => 1,
|
7912
7915
|
'audioavgbitrate' => 1,
|
7913
7916
|
'audiobitratecontrolmode' => 1,
|
7917
|
+
'audiobluetooth' => 1,
|
7914
7918
|
'audiobytes' => 1,
|
7915
7919
|
'audiochannellayout' => 1,
|
7916
7920
|
'audiochanneltypes' => 1,
|
@@ -7949,6 +7953,7 @@ my %tagExists = (
|
|
7949
7953
|
'audiopacketframesize' => 1,
|
7950
7954
|
'audioprofile' => 1,
|
7951
7955
|
'audioprofileversion' => 1,
|
7956
|
+
'audioprotuneoption' => 1,
|
7952
7957
|
'audioqualitysetting' => 1,
|
7953
7958
|
'audiorequirespacketdescription' => 1,
|
7954
7959
|
'audiosamplecount' => 1,
|
@@ -7975,12 +7980,14 @@ my %tagExists = (
|
|
7975
7980
|
'authorship' => 1,
|
7976
7981
|
'authorsortorder' => 1,
|
7977
7982
|
'autoareaafstartingpoint' => 1,
|
7983
|
+
'autoboostscore' => 1,
|
7978
7984
|
'autocaptureoffset' => 1,
|
7979
7985
|
'autoisomin' => 1,
|
7980
7986
|
'autolowlightduration' => 1,
|
7981
7987
|
'automationanimation' => 1,
|
7982
7988
|
'automationflags' => 1,
|
7983
7989
|
'autopoweroff' => 1,
|
7990
|
+
'autoprotune' => 1,
|
7984
7991
|
'autorotation' => 1,
|
7985
7992
|
'autosavefilepath' => 1,
|
7986
7993
|
'autosaveformat' => 1,
|
@@ -8069,6 +8076,7 @@ my %tagExists = (
|
|
8069
8076
|
'bitrate' => 1,
|
8070
8077
|
'bitrateinfo' => 1,
|
8071
8078
|
'bitratemutualexclusion' => 1,
|
8079
|
+
'bitratesetting' => 1,
|
8072
8080
|
'bitsperextendedrunlength' => 1,
|
8073
8081
|
'bitsperpixel' => 1,
|
8074
8082
|
'bitsperrunlength' => 1,
|
@@ -8353,6 +8361,7 @@ my %tagExists = (
|
|
8353
8361
|
'captproftype' => 1,
|
8354
8362
|
'captprofversion' => 1,
|
8355
8363
|
'captureconditionspar' => 1,
|
8364
|
+
'capturedelaytimer' => 1,
|
8356
8365
|
'capturedevicefid' => 1,
|
8357
8366
|
'captureheightresetblacksegnormal' => 1,
|
8358
8367
|
'captureheightresetblacksegtest' => 1,
|
@@ -8514,6 +8523,7 @@ my %tagExists = (
|
|
8514
8523
|
'class' => 1,
|
8515
8524
|
'classificationandmarkingsystem' => 1,
|
8516
8525
|
'classificationcomments' => 1,
|
8526
|
+
'classificationdatapresent' => 1,
|
8517
8527
|
'classificationreason' => 1,
|
8518
8528
|
'classifiedby' => 1,
|
8519
8529
|
'classifyingcountry' => 1,
|
@@ -8700,6 +8710,7 @@ my %tagExists = (
|
|
8700
8710
|
'condition' => 1,
|
8701
8711
|
'conditionalfec' => 1,
|
8702
8712
|
'conductors' => 1,
|
8713
|
+
'confidencemapimage' => 1,
|
8703
8714
|
'confirmedobjectsize' => 1,
|
8704
8715
|
'connectionspaceilluminant' => 1,
|
8705
8716
|
'consecutivebadfaxlines' => 1,
|
@@ -8732,6 +8743,7 @@ my %tagExists = (
|
|
8732
8743
|
'contrastadjustment' => 1,
|
8733
8744
|
'contrastinfo' => 1,
|
8734
8745
|
'controller' => 1,
|
8746
|
+
'controllevel' => 1,
|
8735
8747
|
'conttake' => 1,
|
8736
8748
|
'convergenceangle' => 1,
|
8737
8749
|
'convergencebaseimage' => 1,
|
@@ -9001,6 +9013,7 @@ my %tagExists = (
|
|
9001
9013
|
'depthmapdata' => 1,
|
9002
9014
|
'depthmapdata2' => 1,
|
9003
9015
|
'depthmapheight' => 1,
|
9016
|
+
'depthmapimage' => 1,
|
9004
9017
|
'depthmapname' => 1,
|
9005
9018
|
'depthmaptiff' => 1,
|
9006
9019
|
'depthmapwidth' => 1,
|
@@ -9030,6 +9043,7 @@ my %tagExists = (
|
|
9030
9043
|
'devicesettings' => 1,
|
9031
9044
|
'devicesounds' => 1,
|
9032
9045
|
'dex' => 1,
|
9046
|
+
'diagonalfieldofview' => 1,
|
9033
9047
|
'dialect' => 1,
|
9034
9048
|
'dicom' => 1,
|
9035
9049
|
'dictionary' => 1,
|
@@ -9047,6 +9061,7 @@ my %tagExists = (
|
|
9047
9061
|
'digitalexposuregains' => 1,
|
9048
9062
|
'digitalimagebroker' => 1,
|
9049
9063
|
'digitalsignature' => 1,
|
9064
|
+
'digitalzoomamount' => 1,
|
9050
9065
|
'dimensions' => 1,
|
9051
9066
|
'directionalatob0' => 1,
|
9052
9067
|
'directionalatob1' => 1,
|
@@ -9186,6 +9201,7 @@ my %tagExists = (
|
|
9186
9201
|
'duotonehalftoninginfo' => 1,
|
9187
9202
|
'duotoneimageinfo' => 1,
|
9188
9203
|
'duotonetransferfuncs' => 1,
|
9204
|
+
'durationsetting' => 1,
|
9189
9205
|
'dustdeleteapplied' => 1,
|
9190
9206
|
'dustinfo' => 1,
|
9191
9207
|
'dvdid' => 1,
|
@@ -9215,6 +9231,7 @@ my %tagExists = (
|
|
9215
9231
|
'eighthlanguage' => 1,
|
9216
9232
|
'electricalextendermagnification' => 1,
|
9217
9233
|
'electronicimagestabilization' => 1,
|
9234
|
+
'electronicstabilizationon' => 1,
|
9218
9235
|
'electronicvr' => 1,
|
9219
9236
|
'elementarystreamtrack' => 1,
|
9220
9237
|
'embeddedaudiofile' => 1,
|
@@ -9331,6 +9348,7 @@ my %tagExists = (
|
|
9331
9348
|
'exposurereferencegain' => 1,
|
9332
9349
|
'exposurereferenceoffset' => 1,
|
9333
9350
|
'exposuretimes' => 1,
|
9351
|
+
'exposuretype' => 1,
|
9334
9352
|
'exposureunknown' => 1,
|
9335
9353
|
'expressionmedia' => 1,
|
9336
9354
|
'exrversion' => 1,
|
@@ -9751,6 +9769,7 @@ my %tagExists = (
|
|
9751
9769
|
'globalpalette' => 1,
|
9752
9770
|
'globalparametersifd' => 1,
|
9753
9771
|
'globalpixelsize' => 1,
|
9772
|
+
'google' => 1,
|
9754
9773
|
'googlebot' => 1,
|
9755
9774
|
'gopro' => 1,
|
9756
9775
|
'goprogpmf' => 1,
|
@@ -9885,6 +9904,7 @@ my %tagExists = (
|
|
9885
9904
|
'hdrinfoversion' => 1,
|
9886
9905
|
'hdrl' => 1,
|
9887
9906
|
'hdrtoninginfo' => 1,
|
9907
|
+
'hdrvideo' => 1,
|
9888
9908
|
'header' => 1,
|
9889
9909
|
'header4' => 1,
|
9890
9910
|
'headerext' => 1,
|
@@ -9904,6 +9924,7 @@ my %tagExists = (
|
|
9904
9924
|
'highlightendpoints' => 1,
|
9905
9925
|
'highnote' => 1,
|
9906
9926
|
'highvelocity' => 1,
|
9927
|
+
'hindsightsettings' => 1,
|
9907
9928
|
'hintformat' => 1,
|
9908
9929
|
'hintheader' => 1,
|
9909
9930
|
'hintinfo' => 1,
|
@@ -9928,6 +9949,7 @@ my %tagExists = (
|
|
9928
9949
|
'homepostalcode' => 1,
|
9929
9950
|
'homestateorprovince' => 1,
|
9930
9951
|
'homestreet' => 1,
|
9952
|
+
'horizoncontrol' => 1,
|
9931
9953
|
'horizontalfieldofview' => 1,
|
9932
9954
|
'horizontalresolution' => 1,
|
9933
9955
|
'horizontalscale' => 1,
|
@@ -10449,6 +10471,7 @@ my %tagExists = (
|
|
10449
10471
|
'lensmaker' => 1,
|
10450
10472
|
'lensnumber' => 1,
|
10451
10473
|
'lenspartnumber' => 1,
|
10474
|
+
'lensprojection' => 1,
|
10452
10475
|
'lensrec' => 1,
|
10453
10476
|
'lensshading' => 1,
|
10454
10477
|
'lenstableindex' => 1,
|
@@ -10578,6 +10601,10 @@ my %tagExists = (
|
|
10578
10601
|
'manufactureindex' => 1,
|
10579
10602
|
'manufacturername' => 1,
|
10580
10603
|
'mappingscheme' => 1,
|
10604
|
+
'mappingxcoefficients' => 1,
|
10605
|
+
'mappingxmode' => 1,
|
10606
|
+
'mappingycoefficients' => 1,
|
10607
|
+
'mappingymode' => 1,
|
10581
10608
|
'mapscale' => 1,
|
10582
10609
|
'mariahthresholds' => 1,
|
10583
10610
|
'mariahthresholdslow' => 1,
|
@@ -10610,7 +10637,6 @@ my %tagExists = (
|
|
10610
10637
|
'maximumimageindex' => 1,
|
10611
10638
|
'maximumobjectsize' => 1,
|
10612
10639
|
'maximumoperationindex' => 1,
|
10613
|
-
'maximumshutterangle' => 1,
|
10614
10640
|
'maximumtransformindex' => 1,
|
10615
10641
|
'maxjpegtableindex' => 1,
|
10616
10642
|
'maxpacketsize' => 1,
|
@@ -10799,6 +10825,7 @@ my %tagExists = (
|
|
10799
10825
|
'mediaistape' => 1,
|
10800
10826
|
'mediajukebox' => 1,
|
10801
10827
|
'medialanguagecode' => 1,
|
10828
|
+
'mediamode' => 1,
|
10802
10829
|
'medianetworkaffiliation' => 1,
|
10803
10830
|
'mediaoriginalbroadcastdatetime' => 1,
|
10804
10831
|
'mediaoriginalchannel' => 1,
|
@@ -11190,6 +11217,8 @@ my %tagExists = (
|
|
11190
11217
|
'on1_settingsmetadatatimestamp' => 1,
|
11191
11218
|
'on1_settingsmetadatausage' => 1,
|
11192
11219
|
'on1_settingsmetadatavisibletouser' => 1,
|
11220
|
+
'oneplus' => 1,
|
11221
|
+
'oneplustrailerlen' => 1,
|
11193
11222
|
'onionskins' => 1,
|
11194
11223
|
'opacity' => 1,
|
11195
11224
|
'opcolor' => 1,
|
@@ -11212,6 +11241,7 @@ my %tagExists = (
|
|
11212
11241
|
'orderingrestrictions' => 1,
|
11213
11242
|
'organizeraddress' => 1,
|
11214
11243
|
'organizername' => 1,
|
11244
|
+
'orientationdatapresent' => 1,
|
11215
11245
|
'orientationinfo' => 1,
|
11216
11246
|
'orientationoffset' => 1,
|
11217
11247
|
'orientoffset' => 1,
|
@@ -11470,6 +11500,8 @@ my %tagExists = (
|
|
11470
11500
|
'podcastid' => 1,
|
11471
11501
|
'podcastkeywords' => 1,
|
11472
11502
|
'pointsize' => 1,
|
11503
|
+
'polynomialcoefficients' => 1,
|
11504
|
+
'polynomialpower' => 1,
|
11473
11505
|
'popularimeter' => 1,
|
11474
11506
|
'popupfillattributes' => 1,
|
11475
11507
|
'popupflash' => 1,
|
@@ -11486,6 +11518,7 @@ my %tagExists = (
|
|
11486
11518
|
'postscript2csa' => 1,
|
11487
11519
|
'postscriptfont' => 1,
|
11488
11520
|
'postscriptfontname' => 1,
|
11521
|
+
'powerprofile' => 1,
|
11489
11522
|
'pragma' => 1,
|
11490
11523
|
'prediminanthue' => 1,
|
11491
11524
|
'preferredfamily' => 1,
|
@@ -11639,6 +11672,7 @@ my %tagExists = (
|
|
11639
11672
|
'protectiontype' => 1,
|
11640
11673
|
'protocol' => 1,
|
11641
11674
|
'protune' => 1,
|
11675
|
+
'protuneisomode' => 1,
|
11642
11676
|
'providercopyright' => 1,
|
11643
11677
|
'providerlogourl' => 1,
|
11644
11678
|
'providerrating' => 1,
|
@@ -12064,6 +12098,8 @@ my %tagExists = (
|
|
12064
12098
|
'sceneclassification' => 1,
|
12065
12099
|
'scenecolorimetryestimates' => 1,
|
12066
12100
|
'sceneilluminance' => 1,
|
12101
|
+
'schedulecapture' => 1,
|
12102
|
+
'schedulecapturetime' => 1,
|
12067
12103
|
'scheduleitemid' => 1,
|
12068
12104
|
'schemeinfo' => 1,
|
12069
12105
|
'schemetype' => 1,
|
@@ -12329,6 +12365,7 @@ my %tagExists = (
|
|
12329
12365
|
'spectralviewingconditions' => 1,
|
12330
12366
|
'spectralwhitepoint' => 1,
|
12331
12367
|
'speed' => 1,
|
12368
|
+
'speedrampsetting' => 1,
|
12332
12369
|
'speedstamp' => 1,
|
12333
12370
|
'speedunits' => 1,
|
12334
12371
|
'sphericalvideo' => 1,
|
@@ -12336,6 +12373,7 @@ my %tagExists = (
|
|
12336
12373
|
'spiffversion' => 1,
|
12337
12374
|
'spinstrength' => 1,
|
12338
12375
|
'spothalftone' => 1,
|
12376
|
+
'spotmeter' => 1,
|
12339
12377
|
'spouse' => 1,
|
12340
12378
|
'sr2dataifd' => 1,
|
12341
12379
|
'sr2private' => 1,
|
@@ -12977,7 +13015,6 @@ my %tagExists = (
|
|
12977
13015
|
'videoorientation' => 1,
|
12978
13016
|
'videoprofile' => 1,
|
12979
13017
|
'videoprofileversion' => 1,
|
12980
|
-
'videosampledesc' => 1,
|
12981
13018
|
'videoscantype' => 1,
|
12982
13019
|
'videosize' => 1,
|
12983
13020
|
'videostreamtype' => 1,
|
@@ -13007,6 +13044,7 @@ my %tagExists = (
|
|
13007
13044
|
'visibleoutputs' => 1,
|
13008
13045
|
'vistaidlistdata' => 1,
|
13009
13046
|
'visualflightruleshud' => 1,
|
13047
|
+
'visualsampledesc' => 1,
|
13010
13048
|
'vivo' => 1,
|
13011
13049
|
'vmaphandling' => 1,
|
13012
13050
|
'vmcoldropthresh' => 1,
|
@@ -13228,6 +13266,7 @@ my %tagExists = (
|
|
13228
13266
|
'zoomedpreviewimage' => 1,
|
13229
13267
|
'zoompos' => 1,
|
13230
13268
|
'zoomposition' => 1,
|
13269
|
+
'zoomscalenormalization' => 1,
|
13231
13270
|
'zoomstrength' => 1,
|
13232
13271
|
'zxif' => 1,
|
13233
13272
|
);
|