exiftool_vendored 12.37.0 → 12.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/Changes +11 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +6 -4
- data/bin/lib/Image/ExifTool/CanonCustom.pm +12 -2
- data/bin/lib/Image/ExifTool/Nikon.pm +148 -15
- data/bin/lib/Image/ExifTool/OpenEXR.pm +4 -2
- data/bin/lib/Image/ExifTool/TagLookup.pm +4322 -4319
- data/bin/lib/Image/ExifTool/TagNames.pod +22 -2
- data/bin/lib/Image/ExifTool/XMP.pm +3 -3
- data/bin/lib/Image/ExifTool.pm +4 -3
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
@@ -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 25521 tags, with 16386 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
|
@@ -13498,6 +13498,7 @@ DiMAGE X and Xt.
|
|
13498
13498
|
ShotInfoD6 Nikon ShotInfoD6
|
13499
13499
|
ShotInfoD610 Nikon ShotInfoD610
|
13500
13500
|
ShotInfoZ7_2 Nikon ShotInfoZ7_2
|
13501
|
+
ShotInfoZ9 Nikon ShotInfoZ9
|
13501
13502
|
ShotInfo02xx Nikon ShotInfo
|
13502
13503
|
ShotInfoUnknown Nikon ShotInfo
|
13503
13504
|
0x0092 HueAdjustment int16s
|
@@ -13782,6 +13783,13 @@ Tags written by some Nikon GPS-equipped cameras like the AW100.
|
|
13782
13783
|
8 POILevel int8u
|
13783
13784
|
9 Location undef[70]
|
13784
13785
|
|
13786
|
+
=head3 Nikon MakerNotes0x51 Tags
|
13787
|
+
|
13788
|
+
Index1 Tag Name Writable
|
13789
|
+
------ -------- --------
|
13790
|
+
0 FirmwareVersion no
|
13791
|
+
10 NEFCompression int16u[0.5]
|
13792
|
+
|
13785
13793
|
=head3 Nikon AFInfo Tags
|
13786
13794
|
|
13787
13795
|
Index1 Tag Name Writable
|
@@ -14195,12 +14203,24 @@ These tags are used by the Z5 Z6 Z7 Z6II Z7II Z50 Zfc
|
|
14195
14203
|
572 MovieHighISONoiseReduction? int8u
|
14196
14204
|
574 MovieVignetteControl? int8u
|
14197
14205
|
576 MovieVignetteControlSameAsPhoto? int8u
|
14206
|
+
577 MovieDiffractionCompensation? int8u
|
14198
14207
|
578 MovieAutoDistortionControl? int8u
|
14199
14208
|
584 MovieFocusMode? int8u
|
14200
14209
|
590 MovieVibrationReduction? int8u
|
14201
14210
|
591 MovieVibrationReductionSameAsPhoto? int8u
|
14202
14211
|
858 HDMIOutputN-Log? int8u
|
14203
|
-
|
14212
|
+
|
14213
|
+
=head3 Nikon ShotInfoZ9 Tags
|
14214
|
+
|
14215
|
+
These tags are extracted from encrypted data in images from the Z9.
|
14216
|
+
|
14217
|
+
Index Tag Name Writable
|
14218
|
+
----- -------- --------
|
14219
|
+
0 ShotInfoVersion no
|
14220
|
+
4 FirmwareVersion no
|
14221
|
+
60139 RollAngle fixed32u
|
14222
|
+
60143 PitchAngle fixed32u
|
14223
|
+
60147 YawAngle fixed32u
|
14204
14224
|
|
14205
14225
|
=head3 Nikon ShotInfo Tags
|
14206
14226
|
|
@@ -50,7 +50,7 @@ use Image::ExifTool::Exif;
|
|
50
50
|
use Image::ExifTool::GPS;
|
51
51
|
require Exporter;
|
52
52
|
|
53
|
-
$VERSION = '3.
|
53
|
+
$VERSION = '3.50';
|
54
54
|
@ISA = qw(Exporter);
|
55
55
|
@EXPORT_OK = qw(EscapeXML UnescapeXML);
|
56
56
|
|
@@ -2134,8 +2134,8 @@ my %sPantryItem = (
|
|
2134
2134
|
Groups => { 2 => 'Location' },
|
2135
2135
|
Writable => 'integer',
|
2136
2136
|
PrintConv => {
|
2137
|
-
2 => '2-Dimensional',
|
2138
|
-
3 => '3-Dimensional',
|
2137
|
+
2 => '2-Dimensional Measurement',
|
2138
|
+
3 => '3-Dimensional Measurement',
|
2139
2139
|
},
|
2140
2140
|
},
|
2141
2141
|
GPSDOP => { Groups => { 2 => 'Location' }, Writable => 'rational' },
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -29,7 +29,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
29
29
|
%jpegMarker %specialTags %fileTypeLookup $testLen $exeDir
|
30
30
|
%static_vars);
|
31
31
|
|
32
|
-
$VERSION = '12.
|
32
|
+
$VERSION = '12.38';
|
33
33
|
$RELEASE = '';
|
34
34
|
@ISA = qw(Exporter);
|
35
35
|
%EXPORT_TAGS = (
|
@@ -4088,8 +4088,9 @@ sub Open($*$;$)
|
|
4088
4088
|
my ($self, $fh, $file, $mode) = @_;
|
4089
4089
|
|
4090
4090
|
$file =~ s/^([\s&])/.\/$1/; # protect leading whitespace or ampersand
|
4091
|
-
# default to read mode ('<') unless input is a pipe
|
4092
|
-
$mode = ($file =~ /\|$/ ? '' : '<') unless $mode;
|
4091
|
+
# default to read mode ('<') unless input is a trusted pipe
|
4092
|
+
$mode = (($file =~ /\|$/ and $$self{TRUST_PIPE}) ? '' : '<') unless $mode;
|
4093
|
+
undef $$self{TRUST_PIPE};
|
4093
4094
|
if ($mode) {
|
4094
4095
|
if ($self->EncodeFileName($file)) {
|
4095
4096
|
# handle Windows Unicode file name
|
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: 12.
|
4
|
+
version: 12.38.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: 2021-12-
|
12
|
+
date: 2021-12-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: exiftool
|