exiftool-vendored.pl 13.42.0 → 13.43.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 28932 tags, with 17990 unique tag names.
15
+ They contain a total of 28936 tags, with 17993 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
@@ -7432,6 +7432,7 @@ boot, not including standby time.
7432
7432
  CanonCameraInfo1200D Canon CameraInfo60D
7433
7433
  CanonCameraInfoR6 Canon CameraInfoR6
7434
7434
  CanonCameraInfoR6m2 Canon CameraInfoR6m2
7435
+ CanonCameraInfoR6m3 Canon CameraInfoR6m3
7435
7436
  CanonCameraInfoG5XII Canon CameraInfoG5XII
7436
7437
  CanonCameraInfoPowerShot Canon CameraInfoPowerShot
7437
7438
  CanonCameraInfoPowerShot2 Canon CameraInfoPowerShot2
@@ -8438,6 +8439,14 @@ CameraInfo tags for the EOS R6 Mark II.
8438
8439
  ------ -------- --------
8439
8440
  3369 ShutterCount int32u
8440
8441
 
8442
+ =head3 Canon CameraInfoR6m3 Tags
8443
+
8444
+ CameraInfo tags for the EOS R6 Mark II.
8445
+
8446
+ Index1 Tag Name Writable
8447
+ ------ -------- --------
8448
+ 2157 ShutterCount int32u
8449
+
8441
8450
  =head3 Canon CameraInfoG5XII Tags
8442
8451
 
8443
8452
  CameraInfo tags for the PowerShot G5 X Mark II.
@@ -21934,6 +21943,7 @@ HEIC images from models such as the S10+.
21934
21943
  SurroundShotVideo no
21935
21944
  SurroundShotVideoName no
21936
21945
  TimeStamp no
21946
+ VideoEditedTimeZone no
21937
21947
 
21938
21948
  =head3 Samsung DualShotExtra Tags
21939
21949
 
@@ -31060,7 +31070,7 @@ specification.
31060
31070
  This directory contains a list of key names which are used to decode tags
31061
31071
  written by the "mdta" handler. Also in this table are a few tags found in
31062
31072
  timed metadata that are not yet writable by ExifTool. The prefix of
31063
- "com.apple.quicktime." has been removed from the TagID's below. These tags
31073
+ "com.apple.quicktime." has been removed from most TagID's below. These tags
31064
31074
  support alternate languages in the same way as the
31065
31075
  L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> tags. Note
31066
31076
  that by default,
@@ -31144,6 +31154,7 @@ changed via the config file.
31144
31154
  'producer' Producer yes
31145
31155
  'publisher' Publisher yes
31146
31156
  'rating.user' UserRating yes
31157
+ 'samsung.android.utc_offset' AndroidTimeZone yes
31147
31158
  'scene-illuminance' SceneIlluminance no
31148
31159
  'software' Software yes
31149
31160
  'still-image-time' StillImageTime no
@@ -31563,6 +31574,7 @@ and are not currently writable.
31563
31574
  'colr' ICC_Profile ICC_Profile
31564
31575
  ColorRepresentation QuickTime ColorRep
31565
31576
  'hvcC' HEVCConfiguration QuickTime HEVCConfig
31577
+ 'imir' Mirroring int8u!
31566
31578
  'irot' Rotation int8u!
31567
31579
  'ispe' ImageSpatialExtent no
31568
31580
  'pasp' PixelAspectRatio int32u[2]!
@@ -95,6 +95,11 @@ my %emptyMeta = (
95
95
  hdlr => 'Handler', 'keys' => 'Keys', lang => 'Language', ctry => 'Country', free => 'Free',
96
96
  );
97
97
 
98
+ # starting word for Keys tags which use a full tag ID
99
+ my %fullKeysID = (
100
+ com => 1, xiaomi => 1, samsung => 1,
101
+ );
102
+
98
103
  # lookup for CTBO ID number based on uuid for Canon CR3 files
99
104
  my %ctboID = (
100
105
  "\xbe\x7a\xcf\xcb\x97\xa9\x42\xe8\x9c\x71\x99\x94\x91\xe3\xaf\xac" => 1, # XMP
@@ -461,7 +466,10 @@ sub WriteKeys($$$)
461
466
  next unless $$nvHash{IsCreating} and $et->IsOverwriting($nvHash) and
462
467
  defined $et->GetNewValue($nvHash);
463
468
  # add new entry to 'keys' data
464
- my $val = $id =~ /^com\./ ? $id : "com.apple.quicktime.$id";
469
+ my $val = $id;
470
+ unless ($val =~ /^(.*?)\./ and $fullKeysID{$1}) {
471
+ $val = "com.apple.quicktime.$val";
472
+ }
465
473
  $newData .= Set32u(8 + length($val)) . 'mdta' . $val;
466
474
  $et->VPrint(1, "$$et{INDENT}\[adding $keysGrp entry $newIndex '${id}']\n");
467
475
  $add{$newIndex++} = $tagInfo;
@@ -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 $advFmtSelf $configFile @configFiles $noConfig);
31
31
 
32
- $VERSION = '13.42';
32
+ $VERSION = '13.43';
33
33
  $RELEASE = '';
34
34
  @ISA = qw(Exporter);
35
35
  %EXPORT_TAGS = (
@@ -1,6 +1,6 @@
1
1
  Summary: perl module for image data extraction
2
2
  Name: perl-Image-ExifTool
3
- Version: 13.42
3
+ Version: 13.43
4
4
  Release: 1
5
5
  License: Artistic/GPL
6
6
  Group: Development/Libraries/Perl
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored.pl",
3
- "version": "13.42.0",
3
+ "version": "13.43.0",
4
4
  "description": "Vendored perl ExifTool for Node.js",
5
5
  "main": "./index.js",
6
6
  "homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",