exiftool_vendored 13.12.0 → 13.16.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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/bin/Changes +79 -22
  3. data/bin/MANIFEST +7 -0
  4. data/bin/META.json +1 -1
  5. data/bin/META.yml +1 -1
  6. data/bin/README +2 -2
  7. data/bin/arg_files/exif2xmp.args +4 -0
  8. data/bin/arg_files/xmp2exif.args +2 -1
  9. data/bin/build_geolocation +1 -1
  10. data/bin/exiftool +6 -5
  11. data/bin/lib/Image/ExifTool/AFCP.pm +5 -5
  12. data/bin/lib/Image/ExifTool/BuildTagLookup.pm +20 -15
  13. data/bin/lib/Image/ExifTool/Canon.pm +5 -3
  14. data/bin/lib/Image/ExifTool/DJI.pm +64 -11
  15. data/bin/lib/Image/ExifTool/EXE.pm +17 -3
  16. data/bin/lib/Image/ExifTool/Geolocation.pm +16 -7
  17. data/bin/lib/Image/ExifTool/ID3.pm +4 -4
  18. data/bin/lib/Image/ExifTool/JPEG.pm +5 -1
  19. data/bin/lib/Image/ExifTool/LigoGPS.pm +1 -0
  20. data/bin/lib/Image/ExifTool/MIE.pm +6 -3
  21. data/bin/lib/Image/ExifTool/Nikon.pm +328 -4
  22. data/bin/lib/Image/ExifTool/NikonCustom.pm +1 -1
  23. data/bin/lib/Image/ExifTool/Panasonic.pm +7 -1
  24. data/bin/lib/Image/ExifTool/Protobuf.pm +25 -7
  25. data/bin/lib/Image/ExifTool/QuickTime.pm +215 -59
  26. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +12 -12
  27. data/bin/lib/Image/ExifTool/README +4 -1
  28. data/bin/lib/Image/ExifTool/RIFF.pm +11 -1
  29. data/bin/lib/Image/ExifTool/Samsung.pm +1 -1
  30. data/bin/lib/Image/ExifTool/TagLookup.pm +4821 -4811
  31. data/bin/lib/Image/ExifTool/TagNames.pod +231 -25
  32. data/bin/lib/Image/ExifTool/Torrent.pm +2 -2
  33. data/bin/lib/Image/ExifTool/Vivo.pm +124 -0
  34. data/bin/lib/Image/ExifTool/WriteQuickTime.pl +114 -63
  35. data/bin/lib/Image/ExifTool/WriteRIFF.pl +3 -1
  36. data/bin/lib/Image/ExifTool/Writer.pl +16 -11
  37. data/bin/lib/Image/ExifTool.pm +24 -8
  38. data/bin/lib/Image/ExifTool.pod +52 -49
  39. data/bin/perl-Image-ExifTool.spec +1 -1
  40. data/lib/exiftool_vendored/version.rb +1 -1
  41. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eee34189fb74202a66c58d76f0168f01089b47ca963c5f60124bcf5d73d2aecf
4
- data.tar.gz: b8e53f5654ff7090fa938edadb5de5c21794e9b8184439a67dc7d967b7a38945
3
+ metadata.gz: 3a2fbb131eed743102ffdaabb8bea2056bb48c0edb682da5253254b01bf3ff09
4
+ data.tar.gz: 64c9b1bde7d428f63e7fa9c13f3e9cdd5c604412aef2267fb8cba6473ae7f86f
5
5
  SHA512:
6
- metadata.gz: e91976cbd88e3de90455e5879c583c6f48c15a0b12f102b0b8e6f8cedf1e61026e5e5d543e7c3848e1008feb842f46f709f3d87e012202b1bcda4fd3ebab3f2d
7
- data.tar.gz: c4c6ac6f3e7ed34e426b3f83a44d5fa9964b609e02613715cbbacc69c00ffa5a81f6bc0b13b3fb8a2b00b481966453ae7f102002f6c34cf2de663a8d019453e5
6
+ metadata.gz: '048b32a6e81dc59b044a6d2f684ea91c5db112bfc069a6252e696870b0cd54bd541754ff777bf8cf53a42a73fa676d9781618c0c84662cefe98876005126614f'
7
+ data.tar.gz: 2003384df037a8d9875e61d75aa9edfc3d3136fb1c31126cbe9d7fdee704b992ffea8132e9d7a1b698c8d5642053bf84fd5e9255877674b0c6823e7c04e96b99
data/bin/Changes CHANGED
@@ -7,6 +7,56 @@ RSS feed: https://exiftool.org/rss.xml
7
7
  Note: The most recent production release is Version 13.10. (Other versions are
8
8
  considered development releases, and are not uploaded to MetaCPAN.)
9
9
 
10
+ Jan. 25, 2025 - Version 13.16
11
+
12
+ - Added a couple of new Nikon Z lenses (thanks Warren Hatch)
13
+ - Added a new Canon RFLensType (thanks Norbert Wasser)
14
+ - Added support for a MIE trailer on QuickTime-format files
15
+ - Added a number of new EXE MachineType values (github #309)
16
+ - Made "iTunes" a deletable group
17
+ - Updated decoding of many Nikon tags for the Z9 firmware version 5.1 (thanks
18
+ Warren Hatch)
19
+ - Fixed issue where -diff option would miss showing 1 tag from a group that
20
+ exists in the difference file but not in the source file
21
+ - Fixed issue where tag exclusions for alternate files weren't honoured in a
22
+ -p formatting expression when using "$file#:all:all" in the expression and
23
+ the -file#, -x, and -p options all together
24
+ - Fixed FileTypeDescription for lossless extended WebP images
25
+
26
+ Jan. 23, 2025 - Version 13.15
27
+
28
+ - Added a few new Panasonic AFSubjectDetection values (thanks Andrew J)
29
+ - Added " (lossless)" to FileType for lossless WebP images
30
+ - Avoid treating the QuickTime 'eng' language code as the default 'und' unless
31
+ the country code is also the default
32
+ - Fixed issue where writing metadata to a non-extended lossless WebP image
33
+ with an alpha channel could mess up rendering of the transparency
34
+ - Fixed problem decoding ID3 WXXX frames (github #307)
35
+
36
+ Jan. 20, 2025 - Version 13.14
37
+
38
+ - Changed so that deleting QuickTime ItemList group no longer deletes Keys
39
+ - Fixed bug where new ItemList tags weren't created when also creating new
40
+ AudioKeys or VideoKeys tags in the same command if neither tag group
41
+ pre-existed in the file
42
+
43
+ Jan. 20, 2025 - Version 13.13
44
+
45
+ - Added ability to write tags to the audio/video tracks of MOV/MP4 videos
46
+ using the new AudioKeys and VideoKeys group names
47
+ - Added support for another DJI protobuf format (Mavic 3)
48
+ - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
49
+ - Extract some proprietary information from JPEG images of Vivo phones
50
+ - Enhanced Geolocation feature to allow the nearest cities to a specified city
51
+ to be returned
52
+ - Updated xmp2exif.args and exif2xmp.args to properly handle time zones in
53
+ XMP-exif date/time tags
54
+ - Changed family 1 group names for Keys, ItemList and UserData tags in a track
55
+ - Patched github #306 issue where a torrent file would return a format error
56
+ when reading if it didn't contain an "announce" or "created by" entry
57
+ - Fixed "uninitialized value" runtime warning when reading some EXE files
58
+ - Fixed -diff output to add colon missing from some lines when used with -g
59
+
10
60
  Jan. 13, 2025 - Version 13.12
11
61
 
12
62
  - Added a few new Panasonic AFAreaMode values (thanks Andrew J)
@@ -15,12 +65,12 @@ Jan. 13, 2025 - Version 13.12
15
65
  - Decode AF points for some newer Nikon models (thanks Warren Hatch)
16
66
  - Decode a new Panasonic tag (thanks Andrew J)
17
67
  - Decode a couple of previously unknown tags from LIGOGPSINFO records
18
- - Extract some PDB information if available from Win32 EXE files (github#303)
68
+ - Extract some PDB information if available from Win32 EXE files (github #303)
19
69
  - Improved handling of duplicate tags in -diff output
20
70
  - Improved handling of QuickTime zero date/time values
21
71
  - Enchanced -csv= and -json= options to allow group names and wildcards to be
22
72
  used when specifying which tags to import
23
- - Updated some EXIF:Compression values (github#304)
73
+ - Updated some EXIF:Compression values (github #304)
24
74
  - Changed wording of warning when file time couldn't be updated
25
75
  - Fixed bug introduced in 13.11 reading EXIF from some EXV files
26
76
  - Fixed bug introduced in 12.99 where empty entries in a CSV file weren't
@@ -33,7 +83,7 @@ Jan. 13, 2025 - Version 13.12
33
83
  Jan. 1, 2025 - Version 13.11
34
84
 
35
85
  - Added warning for an unknown DJI protobuf schema
36
- - Decode timed GPS from the DJI Osmo Action 5
86
+ - Decode timed GPS from DJI Osmo Action 5 videos
37
87
  - Decode yet another type of LIGOGPSINFO timed GPS from a dashcam video
38
88
  - Made Matroska Keywords and Instruments List-type tags
39
89
  - Fixed problem were EXIF couldn't be added to some AVIF files
@@ -286,7 +336,7 @@ July 24, 2024 - Version 12.92
286
336
 
287
337
  July 24, 2024 - Version 12.91
288
338
 
289
- - Added a couple of new OpenEXR Compression values (github#276)
339
+ - Added a couple of new OpenEXR Compression values (github #276)
290
340
  - Updated 2 test files that were causing failed tests (ExifTool itself is
291
341
  unchanged)
292
342
 
@@ -753,7 +803,7 @@ Aug. 10, 2023 - Version 12.65
753
803
  provided
754
804
  - Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
755
805
  - Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
756
- (PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
806
+ (PlayListID to AlbumID) (github #216), and added cmID (ComposerID)
757
807
  - Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
758
808
  - Patched the -d option to handle the %s format code internally when writing
759
809
  (avoids problems due to inconsistent behaviour of this format code in the
@@ -1304,7 +1354,15 @@ Dec. 8, 2021 - Version 12.37
1304
1354
  - Extract TransparentColor from GIF images
1305
1355
  - Improved parsing of input time values for GPSTimeStamp to properly handle a
1306
1356
  "." separator
1307
- - Improved warning when incorrectly using "
1357
+ - Improved warning when incorrectly using "<" instead of "=" to assign a tag
1358
+ value
1359
+ - Shortened a few of the new obscenely-long XMP-crs tag names
1360
+ - Avoid writing XMP-dwc:EventID and XMP-tiff:NativeDigest
1361
+ - Avoid printing same structure twice in -j and -X output when -l is used
1362
+ - Fixed typo in a QuickTime tag name (thanks Hubert)
1363
+ - Fixed two XMP-crs tag names and typo in a NikonSettings value (thanks Herb)
1364
+ - Fixed patch of version 12.25 to avoid writing XMP which contains an
1365
+ undefined namespace
1308
1366
 
1309
1367
  Nov. 16, 2021 - Version 12.36
1310
1368
 
@@ -1616,7 +1674,7 @@ Feb. 3, 2021 - Version 12.17
1616
1674
  - Avoid extracting audio/video data from AVI videos when -ee -u is used
1617
1675
  - Patched decoding of Canon ContinuousShootingSpeed for newer firmware
1618
1676
  versions of the EOS-1DXmkIII
1619
- - Re-worked LensID patch of version 12.00 (github issue #51)
1677
+ - Re-worked LensID patch of version 12.00 (github #51)
1620
1678
  - Fixed a few typos in newly-added NikonSettings tags (thanks Herb)
1621
1679
  - Fixed problem where group could not be specified for PNG-pHYs tags when
1622
1680
  writing
@@ -1687,7 +1745,7 @@ Nov. 27, 2020 - Version 12.11
1687
1745
 
1688
1746
  - Added -csvDelim option
1689
1747
  - Added new Canon and Olympus LensType values (thanks LibRaw)
1690
- - Added a warning if ICC_Profile is deleted from an image (github issue #63)
1748
+ - Added a warning if ICC_Profile is deleted from an image (github #63)
1691
1749
  - EndDir() function for -if option now works when -fileOrder is used
1692
1750
  - Changed FileSize conversion to use binary prefixes since that is how the
1693
1751
  conversion is currently done (eg. MiB instead of MB)
@@ -2061,7 +2119,7 @@ Jan. 8, 2020 - Version 11.82
2061
2119
  - Added a new Canon LensType
2062
2120
  - Added a new CanonModelID (thanks LibRaw)
2063
2121
  - Added ability to process SubDirectories in QuickTime Keys tags
2064
- - Removed minor error when writing PDF 2.0 files (github issue #30)
2122
+ - Removed minor error when writing PDF 2.0 files (github #30)
2065
2123
  - Fixed problem where trailing null bytes were removed from binary values in
2066
2124
  the -php output when the -b option was used
2067
2125
 
@@ -2075,8 +2133,7 @@ Jan. 2, 2020 - Version 11.81
2075
2133
  - Patched Composite sub-second date/time tags to do additional validation of
2076
2134
  source EXIF date/time tags before adding sub seconds
2077
2135
  - Fixed problem where -json output could produce invalid JSON when -struct was
2078
- used and the structure field names contained special characters (github
2079
- issue #32)
2136
+ used and the structure field names contained special characters (github #32)
2080
2137
  - Fixed spelling in a Panasonic SceneMode value (thanks Hubert)
2081
2138
 
2082
2139
  Dec. 17, 2019 - Version 11.80
@@ -2096,7 +2153,7 @@ Dec. 12, 2019 - Version 11.79
2096
2153
 
2097
2154
  - Added support for AVIF files
2098
2155
  - Added new Canon, Sigma and Sony LensType values (thanks LibRaw)
2099
- - Made PDF 2.0 writable at your own risk with the -m option (github issue #30)
2156
+ - Made PDF 2.0 writable at your own risk with the -m option (github #30)
2100
2157
  - Enhanced -validate feature to warn about duplicate languages in an XMP
2101
2158
  lang-alt list
2102
2159
  - Fixed inconsistency between documentation and ExifTool capabilities for
@@ -2182,7 +2239,7 @@ Oct. 16, 2019 - Version 11.71
2182
2239
  Oct. 10, 2019 - Version 11.70 (production release)
2183
2240
 
2184
2241
  - Added a new CanonModelID (thanks Laurent Clevy)
2185
- - Improved identification of Office Open XML files (github issue #27)
2242
+ - Improved identification of Office Open XML files (github #27)
2186
2243
  - Removed RAF version check when writing FujiFilm RAF files
2187
2244
  - Limited the number of accelerometer records that ExifTool will read by
2188
2245
  default with the -ee option from INSV files to avoid excessive processing
@@ -2264,7 +2321,7 @@ Aug. 20, 2019 - Version 11.63 - "PNG Early Text"
2264
2321
  - Added a few new Sigma lenses (thanks LibRaw)
2265
2322
  - Improved handling of Canon CNTH atom in MOV/MP4 videos
2266
2323
  - Changed PNG writer to place all text chunks before IDAT (not just XMP)
2267
- (github issue #23)
2324
+ (github #23)
2268
2325
  - Issue minor warning for any text chunk after PNG IDAT (not just XMP)
2269
2326
  - Enhanced ForceWrite feature to allow "PNG" to be specified (to move existing
2270
2327
  text chunks to before IDAT without editing any metadata)
@@ -2421,7 +2478,7 @@ June 17, 2019 - Version 11.52
2421
2478
  - Fixed problem where reading a large, corrupt AIFF file may could take an
2422
2479
  excessively long time
2423
2480
  - API Changes:
2424
- - Enhanced Compact option to add levels 3, 4 and 5 (github issue #16)
2481
+ - Enhanced Compact option to add levels 3, 4 and 5 (github #16)
2425
2482
 
2426
2483
  June 13, 2019 - Version 11.51
2427
2484
 
@@ -2559,7 +2616,7 @@ May 3, 2019 - Version 11.39 - "Create QuickTime tags"
2559
2616
  - Decode Canon EOS D60 black levels
2560
2617
  - Split off some QuickTime tags into different family 1 groups
2561
2618
  - Fixed "Chunk offset outside movie data" error when writing some HEIC files
2562
- - Fixed decoding of Pentax AutoBracketing for K-1 and K-5 (github issue #15)
2619
+ - Fixed decoding of Pentax AutoBracketing for K-1 and K-5 (github #15)
2563
2620
  - Fixed some QuickTime family 2 group names
2564
2621
  - Fixed bug introduced in 11.38 that broke extraction of thumbnail images from
2565
2622
  Canon MOV videos
@@ -2663,7 +2720,7 @@ Mar. 14, 2019 - Version 11.32
2663
2720
  Mar. 7, 2019 - Version 11.31
2664
2721
 
2665
2722
  - Added read support for FITS images
2666
- - Another try at removing spaces from some DICOM values (github issues #10/12)
2723
+ - Another try at removing spaces from some DICOM values (github #10 and #12)
2667
2724
 
2668
2725
  Mar. 6, 2019 - Version 11.30 (production release)
2669
2726
 
@@ -2672,7 +2729,7 @@ Mar. 6, 2019 - Version 11.30 (production release)
2672
2729
  - Decode Reconyx HF2 PRO maker notes
2673
2730
  - Decode ColorData for some new Canon models (thanks LibRaw)
2674
2731
  - Enhanced -geotag feature to set AmbientTemperature if available
2675
- - Remove non-significant spaces from some DICOM values (github issues #10/12)
2732
+ - Remove non-significant spaces from some DICOM values (github #10 and #12)
2676
2733
  - Fixed possible "'x' outside of string" error when reading corrupted EXIF
2677
2734
  - Fixed incorrect write group for GeoTIFF tags added in version 11.24
2678
2735
 
@@ -2680,13 +2737,13 @@ Feb. 28, 2019 - Version 11.29
2680
2737
 
2681
2738
  - Added support for Ricoh GR III maker notes
2682
2739
  - Added a new Canon LensType (thanks Claude Jolicoeur)
2683
- - Added a new XMP-crs tag (github issue #8)
2740
+ - Added a new XMP-crs tag (github #8)
2684
2741
  - Enhanced -csv option to output base64-encoded binary data when combined with
2685
2742
  -b or when the -charset option is used and the text has invalid characters
2686
- (github issue #11)
2687
- - Remove trailing space from even-length DICOM values (github issue #9)
2743
+ (github #11)
2744
+ - Remove trailing space from even-length DICOM values (github #9)
2688
2745
  - Patched to avoid "Hexadecimal number > 0xffffffff non-portable" warning
2689
- (github issue #6)
2746
+ (github #6)
2690
2747
  - Fixed meta charset attribute in -htmlDump output
2691
2748
 
2692
2749
  Feb. 21, 2019 - Version 11.28
data/bin/MANIFEST CHANGED
@@ -180,6 +180,7 @@ html/TagNames/Theora.html
180
180
  html/TagNames/Torrent.html
181
181
  html/TagNames/Unknown.html
182
182
  html/TagNames/VCard.html
183
+ html/TagNames/Vivo.html
183
184
  html/TagNames/Vorbis.html
184
185
  html/TagNames/WPG.html
185
186
  html/TagNames/WTV.html
@@ -431,6 +432,7 @@ lib/Image/ExifTool/Torrent.pm
431
432
  lib/Image/ExifTool/Unknown.pm
432
433
  lib/Image/ExifTool/VCard.pm
433
434
  lib/Image/ExifTool/Validate.pm
435
+ lib/Image/ExifTool/Vivo.pm
434
436
  lib/Image/ExifTool/Vorbis.pm
435
437
  lib/Image/ExifTool/WPG.pm
436
438
  lib/Image/ExifTool/WTV.pm
@@ -826,7 +828,12 @@ t/QuickTime_14.out
826
828
  t/QuickTime_15.out
827
829
  t/QuickTime_16.out
828
830
  t/QuickTime_17.out
831
+ t/QuickTime_18.out
832
+ t/QuickTime_19.out
829
833
  t/QuickTime_2.out
834
+ t/QuickTime_20.out
835
+ t/QuickTime_21.out
836
+ t/QuickTime_22.out
830
837
  t/QuickTime_3.out
831
838
  t/QuickTime_4.out
832
839
  t/QuickTime_5.out
data/bin/META.json CHANGED
@@ -50,5 +50,5 @@
50
50
  }
51
51
  },
52
52
  "release_status" : "stable",
53
- "version" : "13.12"
53
+ "version" : "13.16"
54
54
  }
data/bin/META.yml CHANGED
@@ -31,4 +31,4 @@ recommends:
31
31
  Time::HiRes: '0'
32
32
  requires:
33
33
  perl: '5.004'
34
- version: '13.12'
34
+ version: '13.16'
data/bin/README CHANGED
@@ -109,8 +109,8 @@ your home directory, then you would type the following commands in a
109
109
  terminal window to extract and run ExifTool:
110
110
 
111
111
  cd ~/Desktop
112
- gzip -dc Image-ExifTool-13.12.tar.gz | tar -xf -
113
- cd Image-ExifTool-13.12
112
+ gzip -dc Image-ExifTool-13.16.tar.gz | tar -xf -
113
+ cd Image-ExifTool-13.16
114
114
  ./exiftool t/images/ExifTool.jpg
115
115
 
116
116
  Note: These commands extract meta information from one of the test images.
@@ -14,6 +14,7 @@
14
14
  # 2018/05/07 - PH Added support for GPSDestXxxRef tags
15
15
  # 2022/03/31 - PH IPTC Photometadata Mapping Guidelines 2202.1 update
16
16
  # 2024/10/24 - PH Additions for the 2024 EXIF for XMP spec
17
+ # 2025/01/16 - PH Copy Composite SubSec tags to XMP-exif
17
18
  #
18
19
  # References: http://www.metadataworkinggroup.org/specs/
19
20
  # https://iptc.org/std/photometadata/documentation/mappingguidelines/
@@ -54,4 +55,7 @@
54
55
  # new for the 2024 EXIF for XMP specification
55
56
  -XMP-exifEX:PhotographicSensitivity < EXIF:ISO
56
57
  -XMP-exif:DateTimeDigitized < EXIF:CreateDate
58
+ # add sub-seconds and time-zone to XMP-exif tags if available
59
+ -XMP-exif:DateTimeOriginal < Composite:SubSecDateTimeOriginal
60
+ -XMP-exif:DateTimeDigitized < Composite:SubSecCreateDate
57
61
  # end
@@ -18,6 +18,7 @@
18
18
  # 2023/01/30 - PH Also write Composite:SubSecDateTimeOriginal from
19
19
  # XMP-exif:DateTimeOriginal
20
20
  # 2024/10/24 - PH Additions for the 2024 EXIF for XMP spec
21
+ # 2025/01/16 - PH Write Composite:SubSecCreateDate from XMP-exif
21
22
  #
22
23
  # References: http://www.metadataworkinggroup.org/specs/
23
24
  # https://iptc.org/std/photometadata/documentation/mappingguidelines/
@@ -39,11 +40,11 @@
39
40
  -EXIF:DateTimeOriginal < XMP-photoshop:DateCreated
40
41
  # new for the 2024 EXIF for XMP specification
41
42
  -EXIF:ISO < XMP-exifEX:PhotographicSensitivity
42
- -EXIF:CreateDate < XMP-exif:DateTimeDigitized
43
43
  # the following SubSec tags also write/delete the corresponding EXIF
44
44
  # SubSecTime and OffsetTime tags as appropriate
45
45
  -Composite:SubSecDateTimeOriginal < XMP-exif:DateTimeOriginal
46
46
  -Composite:SubSecDateTimeOriginal < XMP-photoshop:DateCreated
47
+ -Composite:SubSecCreateDate < XMP-exif:DateTimeDigitized
47
48
  -Composite:SubSecCreateDate < XMP-xmp:CreateDate
48
49
  -Composite:SubSecModifyDate < XMP-xmp:ModifyDate
49
50
  -EXIF:Software < XMP-xmp:CreatorTool
@@ -228,7 +228,7 @@ Options:
228
228
  feature-code list may begin with a dash to remove entries from
229
229
  the default list, or a plus sign to add entries. May be
230
230
  multiple -c options for each intput DBFILE. Country/region and
231
- feature names are case insensitive. Default is "$defaults{def_codes}".
231
+ feature names are case insensitive. Default is "$defaults{def_codes}".
232
232
  -cp CODE - Additional features to include if above minimum population.
233
233
  Default is "$defcp".
234
234
  -l LANG - Alternate languages to read from $altNamesFile if
data/bin/exiftool CHANGED
@@ -11,7 +11,7 @@ use strict;
11
11
  use warnings;
12
12
  require 5.004;
13
13
 
14
- my $version = '13.12';
14
+ my $version = '13.16';
15
15
 
16
16
  # add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
17
17
  my $exePath;
@@ -2404,6 +2404,7 @@ sub GetImageInfo($$)
2404
2404
  ($g2, $same) = ($g, 0);
2405
2405
  # build list of all tags in the new group of the diff file
2406
2406
  @groupTags2 = ();
2407
+ push @groupTags2, $tag2 if defined $tag2;
2407
2408
  foreach $t2 (@found2) {
2408
2409
  $done2{$t2} or $g ne $et2->GetGroup($t2, $showGroup) or push @groupTags2, $t2;
2409
2410
  }
@@ -2455,7 +2456,7 @@ T2: foreach $t2 (@tags2) {
2455
2456
  } else {
2456
2457
  push @diffs, sprintf "< %s%s: %s\n", $desc, $pad, Printable($val);
2457
2458
  $desc = ' ' x $len if $v < 3;
2458
- push @diffs, sprintf "> %s%s %s\n", $desc, $pad, Printable($val2) if defined $val2;
2459
+ push @diffs, sprintf "> %s%s: %s\n", $desc, $pad, Printable($val2) if defined $val2;
2459
2460
  }
2460
2461
  }
2461
2462
  $done2{$tag2} = 1 if defined $tag2;
@@ -5983,7 +5984,7 @@ with this command:
5983
5984
 
5984
5985
  produces output like this:
5985
5986
 
5986
- -- Generated by ExifTool 13.12 --
5987
+ -- Generated by ExifTool 13.16 --
5987
5988
  File: a.jpg - 2003:10:31 15:44:19
5988
5989
  (f/5.6, 1/60s, ISO 100)
5989
5990
  File: b.jpg - 2006:05:23 11:57:38
@@ -6000,8 +6001,8 @@ name, a value of 1 is returned if any tag exists in the specified group, or
6000
6001
  values of all matching tags are joined).
6001
6002
 
6002
6003
  The B<-p> output iterates through the family 3 group names, with each
6003
- sub-document producing additional output. This feature is most useful when
6004
- used in combination with the B<-ee> option to extract embedded documents.
6004
+ sub-document producing additional output when combined with the B<-ee>
6005
+ (ExtractEmbedded) option.
6005
6006
 
6006
6007
  If a specified tag does not exist, a minor warning is issued and the line
6007
6008
  with the missing tag is not printed. However, the B<-f> option may be used
@@ -14,7 +14,7 @@ use strict;
14
14
  use vars qw($VERSION);
15
15
  use Image::ExifTool qw(:DataAccess :Utils);
16
16
 
17
- $VERSION = '1.09';
17
+ $VERSION = '1.10';
18
18
 
19
19
  sub ProcessAFCP($$);
20
20
 
@@ -63,10 +63,10 @@ for the AFCP specification.
63
63
  #------------------------------------------------------------------------------
64
64
  # Read/write AFCP information in a file
65
65
  # Inputs: 0) ExifTool object reference, 1) dirInfo reference
66
- # (Set 'ScanForAFCP' member in dirInfo to scan from current position for AFCP)
66
+ # (Set 'ScanForTrailer' member in dirInfo to scan from current position for AFCP)
67
67
  # Returns: 1 on success, 0 if this file didn't contain AFCP information
68
68
  # -1 on write error or if the offsets were incorrect on reading
69
- # - updates DataPos to point to actual AFCP start if ScanForAFCP is set
69
+ # - updates DataPos to point to actual AFCP start if ScanForTrailer is set
70
70
  # - updates DirLen to trailer length
71
71
  # - returns Fixup reference in dirInfo hash when writing
72
72
  sub ProcessAFCP($$)
@@ -91,8 +91,8 @@ NoAFCP: for (;;) {
91
91
  $fix = 0;
92
92
  } else {
93
93
  $rtnVal = -1;
94
- # look for start of AXS trailer if 'ScanForAFCP'
95
- last unless $$dirInfo{ScanForAFCP} and $raf->Seek($curPos, 0);
94
+ # look for start of AXS trailer if 'ScanForTrailer'
95
+ last unless $$dirInfo{ScanForTrailer} and $raf->Seek($curPos, 0);
96
96
  my $actualPos = $curPos;
97
97
  # first look for header right at current position
98
98
  for (;;) {
@@ -35,7 +35,7 @@ use Image::ExifTool::Sony;
35
35
  use Image::ExifTool::Validate;
36
36
  use Image::ExifTool::MacOS;
37
37
 
38
- $VERSION = '3.60';
38
+ $VERSION = '3.61';
39
39
  @ISA = qw(Exporter);
40
40
 
41
41
  sub NumbersFirst($$);
@@ -84,7 +84,8 @@ my %tweakOrder = (
84
84
  Nintendo => 'NikonCapture',
85
85
  Pentax => 'Panasonic',
86
86
  SonyIDC => 'Sony',
87
- Unknown => 'SonyIDC',
87
+ Vivo => 'SonyIDC',
88
+ Unknown => 'Vivo',
88
89
  DNG => 'Unknown',
89
90
  PrintIM => 'ICC_Profile',
90
91
  Vorbis => 'Ogg',
@@ -100,6 +101,8 @@ my %tweakOrder = (
100
101
  MWG => 'Shortcuts',
101
102
  'FujiFilm::RAF' => 'FujiFilm::RAFHeader',
102
103
  'FujiFilm::RAFData' => 'FujiFilm::RAF',
104
+ 'QuickTime::AudioKeys' => 'QuickTime::Keys',
105
+ 'QuickTime::VideoKeys' => 'QuickTime::AudioKeys',
103
106
  );
104
107
 
105
108
  # list of all recognized Format strings
@@ -437,15 +440,16 @@ appropriate table in the config file (see
437
440
  L<example.config|../config.html#PREF> in the full distribution for an
438
441
  example). Note that some tags with the same name but different ID's may
439
442
  exist in the same location, but the family 7 group names may be used to
440
- differentiate these. ExifTool currently writes only top-level metadata in
441
- QuickTime-based files; it extracts other track-specific and timed metadata,
442
- but can not yet edit tags in these locations (with the exception of
443
- track-level date/time tags).
443
+ differentiate these.
444
444
 
445
- Beware that the Keys tags are actually stored inside the ItemList in the
446
- file, so deleting the ItemList group as a block (ie. C<-ItemList:all=>) also
447
- deletes Keys tags. Instead, to preserve Keys tags the ItemList tags may be
448
- deleted individually with C<-QuickTime:ItemList:all=>.
445
+ ExifTool currently writes
446
+ L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
447
+ L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> only as
448
+ top-level metadata, but select Keys tags are may be written to the audio or
449
+ video track. See the
450
+ L<AudioKeys|Image::ExifTool::TagNames/QuickTime AudioKeys Tags> and
451
+ L<VideoKeys|Image::ExifTool::TagNames/QuickTime VideoKeys Tags> tags for
452
+ more information.
449
453
 
450
454
  Alternate language tags may be accessed for
451
455
  L<ItemList|Image::ExifTool::TagNames/QuickTime ItemList Tags> and
@@ -457,8 +461,8 @@ L<UserData|Image::ExifTool::TagNames/QuickTime UserData Tags> tags support a
457
461
  language code, but without a country code. If no language code is specified
458
462
  when writing, the default language is written and alternate languages for
459
463
  the tag are deleted. Use the "und" language code to write the default
460
- language without deleting alternate languages. Note that "eng" is treated
461
- as a default language when reading, but not when writing.
464
+ language without deleting alternate languages. Note that when reading,
465
+ "eng" is also treated as the default language if there is no country code.
462
466
 
463
467
  According to the specification, integer-format QuickTime date/time tags
464
468
  should be stored as UTC. Unfortunately, digital cameras often store local
@@ -1783,9 +1787,10 @@ sub NumbersFirst($$)
1783
1787
  $rtnVal = $numbersFirst;
1784
1788
  } else {
1785
1789
  my ($a2, $b2) = ($a, $b);
1786
- # expand numbers to 3 digits (with restrictions to avoid messing up ascii-hex tags)
1787
- $a2 =~ s/(\d+)/sprintf("%.3d",$1)/eg if $a2 =~ /^(APP|DMC-\w+ )?[.0-9 ]*$/ and length($a2)<16;
1788
- $b2 =~ s/(\d+)/sprintf("%.3d",$1)/eg if $b2 =~ /^(APP|DMC-\w+ )?[.0-9 ]*$/ and length($b2)<16;
1790
+ # expand numbers to 3 digits (with restrictions to avoid messing up
1791
+ # ascii-hex tags -- Nikon LensID's are 23 characters long)
1792
+ $a2 =~ s/(\d+)/sprintf("%.3d",$1)/eg if $a2 =~ /^(APP|DMC-\w+ |dvtm_.*)?[.0-9 ]*$/ and length($a2)<23;
1793
+ $b2 =~ s/(\d+)/sprintf("%.3d",$1)/eg if $b2 =~ /^(APP|DMC-\w+ |dvtm_.*)?[.0-9 ]*$/ and length($b2)<23;
1789
1794
  $caseInsensitive and $rtnVal = (lc($a2) cmp lc($b2));
1790
1795
  $rtnVal or $rtnVal = ($a2 cmp $b2);
1791
1796
  }
@@ -88,7 +88,7 @@ sub ProcessCTMD($$$);
88
88
  sub ProcessExifInfo($$$);
89
89
  sub SwapWords($);
90
90
 
91
- $VERSION = '4.87';
91
+ $VERSION = '4.88';
92
92
 
93
93
  # Note: Removed 'USM' from 'L' lenses since it is redundant - PH
94
94
  # (or is it? Ref 32 shows 5 non-USM L-type lenses)
@@ -634,8 +634,9 @@ $VERSION = '4.87';
634
634
  '61182.57' => 'Canon RF 70-200mm F2.8 L IS USM Z', #42
635
635
  '61182.58' => 'Canon RF 70-200mm F2.8 L IS USM Z + RF1.4x', #42
636
636
  '61182.59' => 'Canon RF 70-200mm F2.8 L IS USM Z + RF2x', #42
637
- '61182.60' => 'Canon RF 50mm F1.4 L VCM', #42
638
- '61182.61' => 'Canon RF 24mm F1.4 L VCM', #42
637
+ '61182.60' => 'Canon RF 16-28mm F2.8 IS STM', #42
638
+ '61182.61' => 'Canon RF 50mm F1.4 L VCM', #42
639
+ '61182.62' => 'Canon RF 24mm F1.4 L VCM', #42
639
640
  65535 => 'n/a',
640
641
  );
641
642
 
@@ -7027,6 +7028,7 @@ my %ciMaxFocal = (
7027
7028
  319 => 'Canon RF 70-200mm F2.8 L IS USM Z', #42
7028
7029
  320 => 'Canon RF 70-200mm F2.8 L IS USM Z + RF1.4x', #42
7029
7030
  321 => 'Canon RF 70-200mm F2.8 L IS USM Z + RF2x', #42
7031
+ 323 => 'Canon RF 16-28mm F2.8 IS STM', #42
7030
7032
  325 => 'Canon RF 50mm F1.4 L VCM', #42
7031
7033
  326 => 'Canon RF 24mm F1.4 L VCM', #42
7032
7034
  # Note: add new RF lenses to %canonLensTypes with ID 61182