exiftool_vendored 12.37.0 → 12.38.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.
@@ -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 25513 tags, with 16386 unique tag names.
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
- 5771 MovieDiffrationCompensation? int8u
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.49';
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' },
@@ -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.37';
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
@@ -1,6 +1,6 @@
1
1
  Summary: perl module for image data extraction
2
2
  Name: perl-Image-ExifTool
3
- Version: 12.37
3
+ Version: 12.38
4
4
  Release: 1
5
5
  License: Artistic/GPL
6
6
  Group: Development/Libraries/Perl
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExiftoolVendored
4
- VERSION = Gem::Version.new('12.37.0')
4
+ VERSION = Gem::Version.new('12.38.0')
5
5
  end
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.37.0
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-09 00:00:00.000000000 Z
12
+ date: 2021-12-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: exiftool