exiftool_vendored 11.90.0 → 11.91.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 +8 -1
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +17 -14
- data/bin/lib/Image/ExifTool.pm +4 -3
- data/bin/lib/Image/ExifTool.pod +2 -2
- data/bin/lib/Image/ExifTool/Exif.pm +8 -8
- data/bin/lib/Image/ExifTool/MWG.pm +7 -4
- data/bin/lib/Image/ExifTool/Panasonic.pm +20 -1
- data/bin/lib/Image/ExifTool/PanasonicRaw.pm +4 -1
- data/bin/lib/Image/ExifTool/TagLookup.pm +2 -2
- data/bin/lib/Image/ExifTool/TagNames.pod +10 -5
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b56d18c61911252c42a22f6e39707ac57862cf5
|
|
4
|
+
data.tar.gz: caf3c917be76228cbff49eb7d63d88691fe0823b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28a21c824112d691d80bf60d1f4452cbdcb1e5359d8df8e2affd7dc1f07b95d8e00057e3efeed5e1a440d70c19cba726bed5fbf4e3185e31b62b57f657345259
|
|
7
|
+
data.tar.gz: aa4f7c3ce6057b14c1673125ad4e06344c62fa947e2037322e016fba345501ed40bd5712eb28785abcc93608ad5127411fac803175f22757f800951bc523f094
|
data/bin/Changes
CHANGED
|
@@ -7,10 +7,17 @@ RSS feed: https://exiftool.org/rss.xml
|
|
|
7
7
|
Note: The most recent production release is Version 11.85. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to CPAN.)
|
|
9
9
|
|
|
10
|
+
Mar. 5, 2020 - Version 11.91
|
|
11
|
+
|
|
12
|
+
- Decode a couple of new Panasonic tags
|
|
13
|
+
- Documented -ec option (available since version 11.54)
|
|
14
|
+
- Reverted -htmlDump fix of 11.90 because it broke more than it fixed, and
|
|
15
|
+
instead applied a targeted patch to fix this problem for RW2 files
|
|
16
|
+
|
|
10
17
|
Mar. 3, 2020 - Version 11.90
|
|
11
18
|
|
|
12
19
|
- Added a new Sony LensType (thanks LibRaw and Jos Roost)
|
|
13
|
-
-
|
|
20
|
+
- Added two new Olympus LensType values
|
|
14
21
|
- Added a new Canon LensType
|
|
15
22
|
- Added some new Canon RecordMode values
|
|
16
23
|
- Added some new QuickTime GeneralProfileIDC values
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
|
@@ -105,8 +105,8 @@ your home directory, then you would type the following commands in a
|
|
|
105
105
|
terminal window to extract and run ExifTool:
|
|
106
106
|
|
|
107
107
|
cd ~/Desktop
|
|
108
|
-
gzip -dc Image-ExifTool-11.
|
|
109
|
-
cd Image-ExifTool-11.
|
|
108
|
+
gzip -dc Image-ExifTool-11.91.tar.gz | tar -xf -
|
|
109
|
+
cd Image-ExifTool-11.91
|
|
110
110
|
./exiftool t/images/ExifTool.jpg
|
|
111
111
|
|
|
112
112
|
Note: These commands extract meta information from one of the test images.
|
data/bin/exiftool
CHANGED
|
@@ -10,13 +10,15 @@
|
|
|
10
10
|
use strict;
|
|
11
11
|
require 5.004;
|
|
12
12
|
|
|
13
|
-
my $version = '11.
|
|
13
|
+
my $version = '11.91';
|
|
14
14
|
|
|
15
15
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
|
16
16
|
my $exeDir;
|
|
17
17
|
BEGIN {
|
|
18
|
+
# (undocumented -xpath option added in 11.91, must come before other options)
|
|
19
|
+
$Image::ExifTool::exePath = @ARGV && lc($ARGV[0]) eq '-xpath' && shift() ? $^X : $0;
|
|
18
20
|
# get exe directory
|
|
19
|
-
$exeDir = ($
|
|
21
|
+
$exeDir = ($Image::ExifTool::exePath =~ /(.*)[\\\/]/) ? $1 : '.';
|
|
20
22
|
if (-l $0) {
|
|
21
23
|
my $lnk = eval { readlink $0 };
|
|
22
24
|
if (defined $lnk) {
|
|
@@ -842,7 +844,7 @@ for (;;) {
|
|
|
842
844
|
(/^e$/ or $a eq '-composite') and $mt->Options(Composite => 0), next;
|
|
843
845
|
(/^-e$/ or $a eq 'composite') and $mt->Options(Composite => 1), next;
|
|
844
846
|
(/^E$/ or $a eq 'escapehtml') and require Image::ExifTool::HTML and $escapeHTML = 1, next;
|
|
845
|
-
($a eq 'ec' or $a eq 'escapec') and $escapeC = 1, next;
|
|
847
|
+
($a eq 'ec' or $a eq 'escapec') and $escapeC = 1, next;
|
|
846
848
|
($a eq 'ex' or $a eq 'escapexml') and $escapeXML = 1, next;
|
|
847
849
|
if (/^echo(\d)?$/i) {
|
|
848
850
|
my $n = $1 || 1;
|
|
@@ -4390,7 +4392,7 @@ L<Input-output text formatting|/Input-output text formatting>
|
|
|
4390
4392
|
-csv[[+]=CSVFILE] Export/import tags in CSV format
|
|
4391
4393
|
-d FMT (-dateFormat) Set format for date/time values
|
|
4392
4394
|
-D (-decimal) Show tag ID numbers in decimal
|
|
4393
|
-
-E
|
|
4395
|
+
-E,-ex,-ec (-escape(HTML|XML|C))Escape tag values for HTML, XML or C
|
|
4394
4396
|
-f (-forcePrint) Force printing of all specified tags
|
|
4395
4397
|
-g[NUM...] (-groupHeadings) Organize output by tag group
|
|
4396
4398
|
-G[NUM...] (-groupNames) Print group name for each tag
|
|
@@ -4421,7 +4423,7 @@ L<Input-output text formatting|/Input-output text formatting>
|
|
|
4421
4423
|
L<Processing control|/Processing control>
|
|
4422
4424
|
|
|
4423
4425
|
-a (-duplicates) Allow duplicate tags to be extracted
|
|
4424
|
-
-e (--composite) Do not
|
|
4426
|
+
-e (--composite) Do not generate composite tags
|
|
4425
4427
|
-ee (-extractEmbedded) Extract information from embedded files
|
|
4426
4428
|
-ext[+] EXT (-extension) Process files with specified extension
|
|
4427
4429
|
-F[OFFSET] (-fixBase) Fix the base for maker notes offsets
|
|
@@ -4969,14 +4971,15 @@ writing.
|
|
|
4969
4971
|
|
|
4970
4972
|
Show tag ID number in decimal when extracting information.
|
|
4971
4973
|
|
|
4972
|
-
=item B<-E>, B<-ex> (B<-escapeHTML>, B<-escapeXML>)
|
|
4974
|
+
=item B<-E>, B<-ex>, B<-ec> (B<-escapeHTML>, B<-escapeXML>, B<-escapeC>)
|
|
4973
4975
|
|
|
4974
|
-
Escape characters in output values for HTML (B<-E>)
|
|
4975
|
-
HTML, all characters with Unicode code points above U+007F
|
|
4976
|
-
well as the following 5 characters: & (&) E<39> (')
|
|
4977
|
-
E<gt> (>) and E<lt> (<). For XML, only these 5
|
|
4978
|
-
escaped. The B<-E> option is implied with B<-h>, and B<-ex>
|
|
4979
|
-
B<-X>.
|
|
4976
|
+
Escape characters in output tag values for HTML (B<-E>), XML (B<-ex>) or C
|
|
4977
|
+
(B<-ec>). For HTML, all characters with Unicode code points above U+007F
|
|
4978
|
+
are escaped as well as the following 5 characters: & (&) E<39> (')
|
|
4979
|
+
E<quot> (") E<gt> (>) and E<lt> (<). For XML, only these 5
|
|
4980
|
+
characters are escaped. The B<-E> option is implied with B<-h>, and B<-ex>
|
|
4981
|
+
is implied with B<-X>. For C, all control characters and the backslash are
|
|
4982
|
+
escaped. The inverse conversion is applied when writing tags.
|
|
4980
4983
|
|
|
4981
4984
|
=item B<-f> (B<-forcePrint>)
|
|
4982
4985
|
|
|
@@ -5203,7 +5206,7 @@ with this command:
|
|
|
5203
5206
|
|
|
5204
5207
|
produces output like this:
|
|
5205
5208
|
|
|
5206
|
-
-- Generated by ExifTool 11.
|
|
5209
|
+
-- Generated by ExifTool 11.91 --
|
|
5207
5210
|
File: a.jpg - 2003:10:31 15:44:19
|
|
5208
5211
|
(f/5.6, 1/60s, ISO 100)
|
|
5209
5212
|
File: b.jpg - 2006:05:23 11:57:38
|
|
@@ -5540,7 +5543,7 @@ when copying.
|
|
|
5540
5543
|
|
|
5541
5544
|
=item B<-e> (B<--composite>)
|
|
5542
5545
|
|
|
5543
|
-
Extract existing tags only -- don't
|
|
5546
|
+
Extract existing tags only -- don't generate composite tags.
|
|
5544
5547
|
|
|
5545
5548
|
=item B<-ee> (B<-extractEmbedded>)
|
|
5546
5549
|
|
data/bin/lib/Image/ExifTool.pm
CHANGED
|
@@ -26,9 +26,9 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
|
26
26
|
$psAPP13hdr $psAPP13old @loadAllTables %UserDefined $evalWarning
|
|
27
27
|
%noWriteFile %magicNumber @langs $defaultLang %langName %charsetName
|
|
28
28
|
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
|
|
29
|
-
%jpegMarker %specialTags %fileTypeLookup $testLen);
|
|
29
|
+
%jpegMarker %specialTags %fileTypeLookup $testLen $exePath);
|
|
30
30
|
|
|
31
|
-
$VERSION = '11.
|
|
31
|
+
$VERSION = '11.91';
|
|
32
32
|
$RELEASE = '';
|
|
33
33
|
@ISA = qw(Exporter);
|
|
34
34
|
%EXPORT_TAGS = (
|
|
@@ -8519,7 +8519,8 @@ until ($Image::ExifTool::noConfig) {
|
|
|
8519
8519
|
$file = $config;
|
|
8520
8520
|
}
|
|
8521
8521
|
# also check executable directory unless path is absolute
|
|
8522
|
-
|
|
8522
|
+
$exePath = $0 unless defined $exePath; # (undocumented $exePath setting)
|
|
8523
|
+
-r $file or $config =~ /^\// or $file = ($exePath =~ /(.*[\\\/])/ ? $1 : './') . $config;
|
|
8523
8524
|
unless (-r $file) {
|
|
8524
8525
|
warn("Config file not found\n") if defined $Image::ExifTool::configFile;
|
|
8525
8526
|
last;
|
data/bin/lib/Image/ExifTool.pod
CHANGED
|
@@ -977,8 +977,8 @@ user parameters (with lower-case names).
|
|
|
977
977
|
|
|
978
978
|
=item Validate
|
|
979
979
|
|
|
980
|
-
Flag to perform extra validation checks when reading, causing extra
|
|
981
|
-
to be generated if problems are found. Default is undef.
|
|
980
|
+
Flag to perform extra validation metadata checks when reading, causing extra
|
|
981
|
+
warnings to be generated if problems are found. Default is undef.
|
|
982
982
|
|
|
983
983
|
=item Verbose
|
|
984
984
|
|
|
@@ -56,7 +56,7 @@ use vars qw($VERSION $AUTOLOAD @formatSize @formatName %formatNumber %intFormat
|
|
|
56
56
|
use Image::ExifTool qw(:DataAccess :Utils);
|
|
57
57
|
use Image::ExifTool::MakerNotes;
|
|
58
58
|
|
|
59
|
-
$VERSION = '4.
|
|
59
|
+
$VERSION = '4.29';
|
|
60
60
|
|
|
61
61
|
sub ProcessExif($$$);
|
|
62
62
|
sub WriteExif($$$);
|
|
@@ -1655,7 +1655,7 @@ my %opcodeInfo = (
|
|
|
1655
1655
|
0x82aa => 'MDPrepDate', #3
|
|
1656
1656
|
0x82ab => 'MDPrepTime', #3
|
|
1657
1657
|
0x82ac => 'MDFileUnits', #3
|
|
1658
|
-
0x830e => { #30
|
|
1658
|
+
0x830e => { #30 (GeoTiff)
|
|
1659
1659
|
Name => 'PixelScale',
|
|
1660
1660
|
Writable => 'double',
|
|
1661
1661
|
WriteGroup => 'IFD0',
|
|
@@ -1687,14 +1687,14 @@ my %opcodeInfo = (
|
|
|
1687
1687
|
},
|
|
1688
1688
|
0x847e => 'IntergraphPacketData', #3
|
|
1689
1689
|
0x847f => 'IntergraphFlagRegisters', #3
|
|
1690
|
-
0x8480 => { #30 (obsolete)
|
|
1690
|
+
0x8480 => { #30 (GeoTiff, obsolete)
|
|
1691
1691
|
Name => 'IntergraphMatrix',
|
|
1692
1692
|
Writable => 'double',
|
|
1693
1693
|
WriteGroup => 'IFD0',
|
|
1694
1694
|
Count => -1,
|
|
1695
1695
|
},
|
|
1696
1696
|
0x8481 => 'INGRReserved', #20
|
|
1697
|
-
0x8482 => { #30
|
|
1697
|
+
0x8482 => { #30 (GeoTiff)
|
|
1698
1698
|
Name => 'ModelTiePoint',
|
|
1699
1699
|
Groups => { 2 => 'Location' },
|
|
1700
1700
|
Writable => 'double',
|
|
@@ -1762,7 +1762,7 @@ my %opcodeInfo = (
|
|
|
1762
1762
|
},
|
|
1763
1763
|
0x85b8 => 'PixelMagicJBIGOptions', #20
|
|
1764
1764
|
0x85d7 => 'JPLCartoIFD', #exifprobe (NC)
|
|
1765
|
-
0x85d8 => { #30
|
|
1765
|
+
0x85d8 => { #30 (GeoTiff)
|
|
1766
1766
|
Name => 'ModelTransform',
|
|
1767
1767
|
Groups => { 2 => 'Location' },
|
|
1768
1768
|
Writable => 'double',
|
|
@@ -6152,8 +6152,8 @@ sub ProcessExif($$$)
|
|
|
6152
6152
|
"Format: $fstr\nSize: $size bytes\n";
|
|
6153
6153
|
if ($size > 4) {
|
|
6154
6154
|
my $offPt = Get32u($dataPt,$entry+8);
|
|
6155
|
-
# (test this with ../pics/{CanonEOS-
|
|
6156
|
-
my $actPt = $valuePtr + $valueDataPos + $base + $$et{
|
|
6155
|
+
# (test this with ../pics/{CanonEOS-1D_XMarkIII.hif,PanasonicDC-G9.rw2})
|
|
6156
|
+
my $actPt = $valuePtr + $valueDataPos + $base - ($$et{EXIF_POS} || 0) + ($$et{BASE_FUDGE} || 0);
|
|
6157
6157
|
$tip .= sprintf("Value offset: 0x%.4x\n", $offPt);
|
|
6158
6158
|
# highlight tag name (red for bad size)
|
|
6159
6159
|
my $style = ($bad or not defined $tval) ? 'V' : 'H';
|
|
@@ -6181,7 +6181,7 @@ sub ProcessExif($$$)
|
|
|
6181
6181
|
} elsif ($tagInfo and Image::ExifTool::IsInt($tval)) {
|
|
6182
6182
|
if ($$tagInfo{IsOffset} or $$tagInfo{SubIFD}) {
|
|
6183
6183
|
$tval = sprintf('0x%.4x', $tval);
|
|
6184
|
-
my $actPt = $val + $base + $$et{
|
|
6184
|
+
my $actPt = $val + $base - ($$et{EXIF_POS} || 0) + ($$et{BASE_FUDGE} || 0);
|
|
6185
6185
|
if ($actPt != $val) {
|
|
6186
6186
|
$tval .= sprintf("\nActual offset: 0x%.4x", $actPt);
|
|
6187
6187
|
my $sign = $actPt < $val ? '-' : '';
|
|
@@ -460,7 +460,8 @@ my %sKeywordStruct;
|
|
|
460
460
|
NOTES => q{
|
|
461
461
|
Image region metadata defined by the MWG 2.0 specification. These tags
|
|
462
462
|
may be accessed without the need to load the MWG Composite tags above. See
|
|
463
|
-
L<http://www.metadataworkinggroup.org/>
|
|
463
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
464
|
+
for the official specification.
|
|
464
465
|
},
|
|
465
466
|
Regions => {
|
|
466
467
|
Name => 'RegionInfo',
|
|
@@ -488,8 +489,9 @@ my %sKeywordStruct;
|
|
|
488
489
|
Hierarchical keywords metadata defined by the MWG 2.0 specification.
|
|
489
490
|
ExifTool unrolls keyword structures to an arbitrary depth of 6 to allow
|
|
490
491
|
individual levels to be accessed with different tag names, and to avoid
|
|
491
|
-
infinite recursion. See
|
|
492
|
-
|
|
492
|
+
infinite recursion. See
|
|
493
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
494
|
+
for the official specification.
|
|
493
495
|
},
|
|
494
496
|
# arbitrarily define only the first 6 levels of the keyword hierarchy
|
|
495
497
|
Keywords => {
|
|
@@ -527,7 +529,8 @@ my %sKeywordStruct;
|
|
|
527
529
|
NAMESPACE => 'mwg-coll',
|
|
528
530
|
NOTES => q{
|
|
529
531
|
Collections metadata defined by the MWG 2.0 specification. See
|
|
530
|
-
L<http://www.metadataworkinggroup.org/>
|
|
532
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
533
|
+
for the official specification.
|
|
531
534
|
},
|
|
532
535
|
Collections => {
|
|
533
536
|
FlatName => '',
|
|
@@ -36,7 +36,7 @@ use vars qw($VERSION %leicaLensTypes);
|
|
|
36
36
|
use Image::ExifTool qw(:DataAccess :Utils);
|
|
37
37
|
use Image::ExifTool::Exif;
|
|
38
38
|
|
|
39
|
-
$VERSION = '2.
|
|
39
|
+
$VERSION = '2.08';
|
|
40
40
|
|
|
41
41
|
sub ProcessLeicaLEIC($$$);
|
|
42
42
|
sub WhiteBalanceConv($;$$);
|
|
@@ -1270,6 +1270,25 @@ my %shootingMode = (
|
|
|
1270
1270
|
Writable => 'int16u',
|
|
1271
1271
|
PrintConv => { 0 => 'Off', 1 => 'Auto' },
|
|
1272
1272
|
},
|
|
1273
|
+
# Note: LensTypeMake and LensTypeModel are combined into a Composite LensType tag
|
|
1274
|
+
# defined in Olympus.pm which has the same values as Olympus:LensType
|
|
1275
|
+
0xc4 => { #PH
|
|
1276
|
+
Name => 'LensTypeMake',
|
|
1277
|
+
Condition => '$format eq "int16u"',
|
|
1278
|
+
Writable => 'int16u',
|
|
1279
|
+
},
|
|
1280
|
+
0xc5 => { #PH
|
|
1281
|
+
Name => 'LensTypeModel',
|
|
1282
|
+
Condition => '$format eq "int16u"',
|
|
1283
|
+
Writable => 'int16u',
|
|
1284
|
+
RawConv => q{
|
|
1285
|
+
return undef unless $val;
|
|
1286
|
+
require Image::ExifTool::Olympus; # (to load Composite LensID)
|
|
1287
|
+
return $val;
|
|
1288
|
+
},
|
|
1289
|
+
ValueConv => '$_=sprintf("%.4x",$val); s/(..)(..)/$2 $1/; $_',
|
|
1290
|
+
ValueConvInv => '$val =~ s/(..) (..)/$2$1/; hex($val)',
|
|
1291
|
+
},
|
|
1273
1292
|
0xd1 => { #PH
|
|
1274
1293
|
Name => 'ISO',
|
|
1275
1294
|
RawConv => '$val > 0xfffffff0 ? undef : $val',
|
|
@@ -21,7 +21,7 @@ use vars qw($VERSION);
|
|
|
21
21
|
use Image::ExifTool qw(:DataAccess :Utils);
|
|
22
22
|
use Image::ExifTool::Exif;
|
|
23
23
|
|
|
24
|
-
$VERSION = '1.
|
|
24
|
+
$VERSION = '1.25';
|
|
25
25
|
|
|
26
26
|
sub ProcessJpgFromRaw($$$);
|
|
27
27
|
sub WriteJpgFromRaw($$$);
|
|
@@ -818,7 +818,10 @@ sub ProcessJpgFromRaw($$$)
|
|
|
818
818
|
$out = $et->Options('TextOut');
|
|
819
819
|
print $out '--- DOC1:JpgFromRaw ',('-'x56),"\n";
|
|
820
820
|
}
|
|
821
|
+
# fudge HtmlDump base offsets to show as a stand-alone JPEG
|
|
822
|
+
$$et{BASE_FUDGE} = $$et{BASE};
|
|
821
823
|
my $rtnVal = $et->ProcessJPEG(\%dirInfo);
|
|
824
|
+
$$et{BASE_FUDGE} = 0;
|
|
822
825
|
# restore necessary variables for continued RW2/RWL processing
|
|
823
826
|
$$et{BASE} = 0;
|
|
824
827
|
$$et{FILE_TYPE} = 'TIFF';
|
|
@@ -3466,6 +3466,8 @@ my %tagLookup = (
|
|
|
3466
3466
|
'lenstype' => { 7 => 0xe2, 8 => 0xd, 9 => 0x1a7, 10 => 0xc, 11 => 0x111, 12 => 0xc, 13 => 0x14f, 14 => 0xd6, 15 => 0xde, 16 => 0xf6, 17 => 0xea, 18 => 0xff, 19 => [0xc,0x97], 20 => 0xe6, 21 => 0x153, 22 => 0xea, 23 => 0xe8, 24 => 0x127, 25 => 0x161, 26 => 0x166, 27 => 0x184, 28 => 0x112, 29 => 0x189, 34 => 0x16, 181 => 0x10c, 182 => 0x49bd, 219 => 0x83, 284 => 0x201, 297 => 0x16, 301 => 0x310, 303 => 0x303, 304 => 0x303, 306 => 0x51, 308 => 0x3405, 333 => 0x0, 334 => 0x0, 335 => 0x1, 336 => 0x1, 337 => 0x1, 339 => 0x0, 380 => 0xa003, 383 => 0x27, 406 => 0xb027, 418 => 0x1896, 420 => 0x18c2, 421 => 0x18f2, 422 => 0x17f6, 424 => 0x109, 425 => 0x109, 434 => 0x608, 435 => 0x62 },
|
|
3467
3467
|
'lenstype2' => { 395 => 0x3f7, 418 => 0x1893, 420 => 0x18bf, 421 => 0x18ef, 422 => 0x17f3, 424 => 0x107, 425 => 0x107, 434 => 0x605, 435 => 0x60 },
|
|
3468
3468
|
'lenstype3' => { 438 => 0x9 },
|
|
3469
|
+
'lenstypemake' => { 306 => 0xc4 },
|
|
3470
|
+
'lenstypemodel' => { 306 => 0xc5 },
|
|
3469
3471
|
'lenszoomposition' => { 431 => 0x19, 432 => 0x1e, 435 => [0x342,0x34e,0x35a] },
|
|
3470
3472
|
'levelindicator' => { 314 => 0x15 },
|
|
3471
3473
|
'levelmeter' => { 366 => ['Lvlm','lvlm'] },
|
|
@@ -8643,8 +8645,6 @@ my %tagExists = (
|
|
|
8643
8645
|
'lensrec' => 1,
|
|
8644
8646
|
'lensshading' => 1,
|
|
8645
8647
|
'lenstableindex' => 1,
|
|
8646
|
-
'lenstypemake' => 1,
|
|
8647
|
-
'lenstypemodel' => 1,
|
|
8648
8648
|
'levelinfo' => 1,
|
|
8649
8649
|
'libraryid' => 1,
|
|
8650
8650
|
'libraryname' => 1,
|
|
@@ -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 23353 tags, with 15303 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
|
|
@@ -14972,6 +14972,8 @@ These tags are used in Panasonic/Leica cameras.
|
|
|
14972
14972
|
0x00b9 RedEyeRemoval int16u
|
|
14973
14973
|
0x00bb VideoBurstMode int32u
|
|
14974
14974
|
0x00bc DiffractionCorrection int16u
|
|
14975
|
+
0x00c4 LensTypeMake int16u
|
|
14976
|
+
0x00c5 LensTypeModel int16u
|
|
14975
14977
|
0x00d1 ISO int32u
|
|
14976
14978
|
0x00d6 NoiseReductionStrength rational64s
|
|
14977
14979
|
0x0e00 PrintIM PrintIM
|
|
@@ -34859,7 +34861,8 @@ implements this policy and changes EXIF:Artist to a list-type tag.
|
|
|
34859
34861
|
|
|
34860
34862
|
Image region metadata defined by the MWG 2.0 specification. These tags
|
|
34861
34863
|
may be accessed without the need to load the MWG Composite tags above. See
|
|
34862
|
-
L<http://www.metadataworkinggroup.org/>
|
|
34864
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
34865
|
+
for the official specification.
|
|
34863
34866
|
|
|
34864
34867
|
These tags belong to the ExifTool XMP-mwg-rs family 1 group.
|
|
34865
34868
|
|
|
@@ -34927,8 +34930,9 @@ conversion).
|
|
|
34927
34930
|
Hierarchical keywords metadata defined by the MWG 2.0 specification.
|
|
34928
34931
|
ExifTool unrolls keyword structures to an arbitrary depth of 6 to allow
|
|
34929
34932
|
individual levels to be accessed with different tag names, and to avoid
|
|
34930
|
-
infinite recursion. See
|
|
34931
|
-
|
|
34933
|
+
infinite recursion. See
|
|
34934
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
34935
|
+
for the official specification.
|
|
34932
34936
|
|
|
34933
34937
|
These tags belong to the ExifTool XMP-mwg-kw family 1 group.
|
|
34934
34938
|
|
|
@@ -34971,7 +34975,8 @@ These tags belong to the ExifTool XMP-mwg-kw family 1 group.
|
|
|
34971
34975
|
=head3 MWG Collections Tags
|
|
34972
34976
|
|
|
34973
34977
|
Collections metadata defined by the MWG 2.0 specification. See
|
|
34974
|
-
L<http://www.metadataworkinggroup.org/>
|
|
34978
|
+
L<https://web.archive.org/web/20181006115950/http://www.metadataworkinggroup.org/specs/>
|
|
34979
|
+
for the official specification.
|
|
34975
34980
|
|
|
34976
34981
|
These tags belong to the ExifTool XMP-mwg-coll family 1 group.
|
|
34977
34982
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: exiftool_vendored
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 11.
|
|
4
|
+
version: 11.91.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew McEachen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-03-
|
|
12
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: exiftool
|