exiftool-vendored.pl 12.56.0 → 12.62.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.
- package/bin/Changes +115 -5
- package/bin/LICENSE +674 -0
- package/bin/MANIFEST +11 -0
- package/bin/META.json +1 -1
- package/bin/META.yml +1 -1
- package/bin/README +45 -44
- package/bin/config_files/example.config +1 -0
- package/bin/config_files/rotate_regions.config +1 -1
- package/bin/exiftool +262 -160
- package/bin/lib/Image/ExifTool/AIFF.pm +2 -2
- package/bin/lib/Image/ExifTool/APE.pm +2 -2
- package/bin/lib/Image/ExifTool/BMP.pm +0 -1
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +23 -19
- package/bin/lib/Image/ExifTool/Canon.pm +26 -6
- package/bin/lib/Image/ExifTool/CanonRaw.pm +5 -1
- package/bin/lib/Image/ExifTool/DJI.pm +28 -2
- package/bin/lib/Image/ExifTool/Exif.pm +77 -19
- package/bin/lib/Image/ExifTool/FlashPix.pm +33 -10
- package/bin/lib/Image/ExifTool/FujiFilm.pm +7 -3
- package/bin/lib/Image/ExifTool/GPS.pm +7 -2
- package/bin/lib/Image/ExifTool/Geotag.pm +30 -7
- package/bin/lib/Image/ExifTool/JPEG.pm +14 -2
- package/bin/lib/Image/ExifTool/Jpeg2000.pm +36 -11
- package/bin/lib/Image/ExifTool/LIF.pm +10 -2
- package/bin/lib/Image/ExifTool/LNK.pm +5 -4
- package/bin/lib/Image/ExifTool/MIE.pm +3 -3
- package/bin/lib/Image/ExifTool/MPEG.pm +2 -2
- package/bin/lib/Image/ExifTool/MakerNotes.pm +3 -2
- package/bin/lib/Image/ExifTool/Minolta.pm +6 -7
- package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -1
- package/bin/lib/Image/ExifTool/Nikon.pm +1005 -909
- package/bin/lib/Image/ExifTool/NikonCustom.pm +2 -2
- package/bin/lib/Image/ExifTool/NikonSettings.pm +1 -1
- package/bin/lib/Image/ExifTool/Olympus.pm +88 -6
- package/bin/lib/Image/ExifTool/PDF.pm +17 -8
- package/bin/lib/Image/ExifTool/PNG.pm +10 -2
- package/bin/lib/Image/ExifTool/PanasonicRaw.pm +27 -1
- package/bin/lib/Image/ExifTool/Pentax.pm +8 -5
- package/bin/lib/Image/ExifTool/PhaseOne.pm +14 -1
- package/bin/lib/Image/ExifTool/Photoshop.pm +38 -7
- package/bin/lib/Image/ExifTool/QuickTime.pm +48 -14
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +91 -27
- package/bin/lib/Image/ExifTool/README +19 -2
- package/bin/lib/Image/ExifTool/RIFF.pm +34 -13
- package/bin/lib/Image/ExifTool/Rawzor.pm +2 -2
- package/bin/lib/Image/ExifTool/Ricoh.pm +2 -1
- package/bin/lib/Image/ExifTool/Sigma.pm +5 -4
- package/bin/lib/Image/ExifTool/SigmaRaw.pm +9 -3
- package/bin/lib/Image/ExifTool/Sony.pm +39 -10
- package/bin/lib/Image/ExifTool/TagLookup.pm +4687 -4628
- package/bin/lib/Image/ExifTool/TagNames.pod +338 -117
- package/bin/lib/Image/ExifTool/Validate.pm +5 -5
- package/bin/lib/Image/ExifTool/WPG.pm +296 -0
- package/bin/lib/Image/ExifTool/WriteExif.pl +42 -0
- package/bin/lib/Image/ExifTool/WritePDF.pl +7 -8
- package/bin/lib/Image/ExifTool/WriteXMP.pl +1 -1
- package/bin/lib/Image/ExifTool/Writer.pl +162 -40
- package/bin/lib/Image/ExifTool/XMP.pm +35 -8
- package/bin/lib/Image/ExifTool/XMP2.pl +2 -1
- package/bin/lib/Image/ExifTool/ZIP.pm +159 -41
- package/bin/lib/Image/ExifTool.pm +286 -65
- package/bin/lib/Image/ExifTool.pod +95 -51
- package/bin/perl-Image-ExifTool.spec +44 -43
- package/bin/pp_build_exe.args +5 -4
- package/package.json +3 -3
package/bin/Changes
CHANGED
|
@@ -4,13 +4,123 @@ ExifTool Version History
|
|
|
4
4
|
|
|
5
5
|
RSS feed: https://exiftool.org/rss.xml
|
|
6
6
|
|
|
7
|
-
Note: The most recent production release is Version 12.
|
|
7
|
+
Note: The most recent production release is Version 12.60. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
|
9
9
|
|
|
10
|
+
May 3, 2023 - Version 12.62
|
|
11
|
+
|
|
12
|
+
- Added basic read support for WPG images
|
|
13
|
+
- Added ImageDataMD5 support for HEIC images
|
|
14
|
+
- Added support for RAR version 5.0 compressed files (thanks Amir Gooran)
|
|
15
|
+
- Added a few new XMP-aux tags (thanks John Ellis)
|
|
16
|
+
- Made Composite tags available for use in -fileNUM argument
|
|
17
|
+
- Better handling of FlashPix VT_EMPTY value
|
|
18
|
+
- Fixed "Can't write" error when specifying a .webp file for the -o option
|
|
19
|
+
- API Changes:
|
|
20
|
+
- Added NoWarning option
|
|
21
|
+
|
|
22
|
+
Apr. 24, 2023 - Version 12.61
|
|
23
|
+
|
|
24
|
+
- Added ImageDataMD5 support for J2C and JXL images
|
|
25
|
+
- Added support for PDF 2.0 (specification is finally freely available)
|
|
26
|
+
- Added ability to extract timed Accelerometer data from Azdome GS63H MP4
|
|
27
|
+
videos which don't contain GPS
|
|
28
|
+
- Added some new Sony lenses (thanks Jos Roost)
|
|
29
|
+
- Decode some new tags for the Sony ZV-E1 (thanks Jos Roost)
|
|
30
|
+
- Decode more tags for the Nikon Z30 (thanks Xavier)
|
|
31
|
+
- Enhanced -fileNUM option to allow tags from the main file to be used in the
|
|
32
|
+
file name string
|
|
33
|
+
- Validate sample offset and size when calculating ImageDataMD5 for MP4 videos
|
|
34
|
+
(note: may change ImageDataMD5 value for videos where audio data runs past
|
|
35
|
+
end of media data)
|
|
36
|
+
- Return error when attempting to write a fragmented JXL file
|
|
37
|
+
- Improved robustness for determining image size for corrupted JPEG
|
|
38
|
+
- Patched to allow Insta360 GPS records of unexpected length and tweaked
|
|
39
|
+
verification algorithm to determine validity of these records
|
|
40
|
+
- Fixed bug introduced in 12.57 where -progress:%f gave runtime warnings
|
|
41
|
+
- Fixed "--" option to ignore subsequent -common_args option
|
|
42
|
+
- Fixed incorrect ImageDataMD5 for Sony A100 ARW images
|
|
43
|
+
- Fixed problem reading new XMP-et:OriginalImageMD5 tag
|
|
44
|
+
|
|
45
|
+
Apr. 5, 2023 - Version 12.60 (production release)
|
|
46
|
+
|
|
47
|
+
- Added a new Sony FileFormat value
|
|
48
|
+
- Added Validate warning about duplicate EXIF
|
|
49
|
+
- Added ability to edit JPEG APP1 EXIF segment with incorrect header
|
|
50
|
+
- Decode a few new Sony ARW tags
|
|
51
|
+
- Improved -htmldump of non-EXIF-based maker notes
|
|
52
|
+
- Enhanced -geotag from CSV files support GPSSpeed (with variable units),
|
|
53
|
+
"bearing" for GPSTrack, and GPSDateTime in format "dd.mm.YYYY HH:MM:SS"
|
|
54
|
+
- Enhanced ImageDataMD5 to also support CRW, RAF, X3F and AVIF images
|
|
55
|
+
- Enhanced -efile option to also record updated and created file names
|
|
56
|
+
- Family 8 group names may now also be used in Composite Require/Desire tags
|
|
57
|
+
- Fixed handling of undefined tags in -if conditions to conform with
|
|
58
|
+
documentation and match -p and -tagsFromFile behaviour when -m or -f option
|
|
59
|
+
is used
|
|
60
|
+
- Fixed problem where setting the Geotime value didn't work when using an
|
|
61
|
+
advanced-formatting expression containing a greater-than symbol (>)
|
|
62
|
+
|
|
63
|
+
Mar. 28, 2023 - Version 12.59
|
|
64
|
+
|
|
65
|
+
- COMPATIBILITY WARNING: Changed the calculated ImageDataMD5 for JPEG images
|
|
66
|
+
to include all data from the SOS to the EOI (including the SOS marker but
|
|
67
|
+
not the EOI marker)
|
|
68
|
+
- Added new -fileNUM option to load tags from alternate files
|
|
69
|
+
- Added family 8 groups for accessing tags from alternate files
|
|
70
|
+
- Added new XMP-et:OriginalImageMD5 tag for storing ImageDataMD5 value
|
|
71
|
+
- Added verbose ImageDataMD5 message for JPEG files
|
|
72
|
+
- Added a new Nikon LensID (thanks Warren Hatch)
|
|
73
|
+
- Decode a new Olympus tag and improved decoding of another (thanks Herb)
|
|
74
|
+
- Decode a couple of new PanasonicRaw tags
|
|
75
|
+
- Decode image coordinates for a couple more VNT object types
|
|
76
|
+
- Enhanced ImageDataMD5 to also support MRW, CR3, IIQ, PNG, MOV/MP4 and some
|
|
77
|
+
RIFF-based files
|
|
78
|
+
- Improved verbose messages when deleting NikonApp trailer
|
|
79
|
+
- Patched to avoid structure warnings when copying tags from Nikon files
|
|
80
|
+
containing NKSC metadata
|
|
81
|
+
- Fixed %-C filename format code to work properly with the -fileOrder and
|
|
82
|
+
-progress options
|
|
83
|
+
- Fixed potential ValueConv warning when reading LIF files
|
|
84
|
+
- API Changes:
|
|
85
|
+
- Added SetAlternateFile method
|
|
86
|
+
|
|
87
|
+
Mar. 15, 2023 - Version 12.58
|
|
88
|
+
|
|
89
|
+
- Added Extra ImageDataMD5 tag to calculate MD5 of image data only
|
|
90
|
+
- Added support for reading DJI APP4 and APP7 JPEG segments
|
|
91
|
+
- Added a new SonyModelID value
|
|
92
|
+
- Decode a few new Nikon tags (thanks Warren Hatch)
|
|
93
|
+
- Downgraded "Windows file times" to a minor warning when Win32::API or
|
|
94
|
+
Win32API::File is not installed while reading metadata
|
|
95
|
+
- Patched possible runtime warning when API IgnoreTags option is used to
|
|
96
|
+
ignore FileType
|
|
97
|
+
- Fixed problem extracting NetName from Windows LNK files
|
|
98
|
+
- Fixed issue where the %C filename format code would increment the count on
|
|
99
|
+
an output filename collision, but it is supposed to count the input files
|
|
100
|
+
|
|
101
|
+
Feb. 23, 2023 - Version 12.57
|
|
102
|
+
|
|
103
|
+
- Added two new Nikon Z lenses (thanks LibRaw)
|
|
104
|
+
- Added a new Sigma LensType (thanks LibRaw)
|
|
105
|
+
- Added a new Olympus LensType (thanks Herb)
|
|
106
|
+
- Decode more new Nikon tags (thanks Warren Hatch)
|
|
107
|
+
- Decode Photoshop LayerColors, LayerSections and LayerVisible tags
|
|
108
|
+
- Improved Verbose output for QuickTime-format files
|
|
109
|
+
- Set family 1 group name for Garmin GPS from uuid atom
|
|
110
|
+
- Enhanced -progress option to allow message to be displayed every NUM files
|
|
111
|
+
- Significant improvements to parsing of Nikon ShotInfo records for newer
|
|
112
|
+
models
|
|
113
|
+
- Removed hex dump of APP segments from -v3 output when writing
|
|
114
|
+
- Fixed bug writing negative MIE GPS coordinates
|
|
115
|
+
- Fixed bug where a duplicate XMP could be generated when writing XMP to a
|
|
116
|
+
JPEG XL image which already contained XMP
|
|
117
|
+
- Fixed problem where HEAD lines may be duplicated in an output file if the -p
|
|
118
|
+
option was combined with -w+ or -W+
|
|
119
|
+
|
|
10
120
|
Feb. 9, 2023 - Version 12.56
|
|
11
121
|
|
|
12
|
-
- Added support for VNT (both Scene7 Vignette and V-Note document)
|
|
13
|
-
- Added read support for InfiRay
|
|
122
|
+
- Added support for VNT files (both Scene7 Vignette and V-Note document)
|
|
123
|
+
- Added read support for InfiRay IJPEG metadata (thanks Marcos Del Sol Vives)
|
|
14
124
|
- Added some new Sony LensType values (thanks Jos Roost and Francois Piette)
|
|
15
125
|
- Added a new FujiFilm VideoRecordingMode value (thanks Greybeard)
|
|
16
126
|
- Added two new Canon LensTypes and CanonModelIDs (thanks Norbert Wasser)
|
|
@@ -138,6 +248,8 @@ Nov. 8, 2022 - Version 12.50 (production release)
|
|
|
138
248
|
- Fixed inconsistent year and time zone for Kenwood dashcam timed GPS in MP4
|
|
139
249
|
videos
|
|
140
250
|
|
|
251
|
+
History of older versions (back to Nov. 19, 2003 - Version 1.00) -->
|
|
252
|
+
|
|
141
253
|
Oct. 19, 2022 - Version 12.49
|
|
142
254
|
|
|
143
255
|
- Added read support for Windows ICO and CUR files
|
|
@@ -305,8 +417,6 @@ June 1, 2022 - Version 12.42 (production release)
|
|
|
305
417
|
- Patched to allow PDF Encrypt object to be "null"
|
|
306
418
|
- Fixed bug reading ICC_Profile 'meta' tags
|
|
307
419
|
|
|
308
|
-
History of older versions (back to Nov. 19, 2003 - Version 1.00) -->
|
|
309
|
-
|
|
310
420
|
Apr. 7, 2022 - Version 12.41
|
|
311
421
|
|
|
312
422
|
- Added support for "OM SYSTEM" maker notes
|