exiftool-vendored.exe 12.56.0 → 12.60.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/exiftool_files/Changes +80 -5
- package/bin/exiftool_files/README +2 -2
- package/bin/exiftool_files/config_files/example.config +1 -0
- package/bin/exiftool_files/config_files/rotate_regions.config +1 -1
- package/bin/exiftool_files/exiftool.pl +174 -99
- package/bin/exiftool_files/lib/Image/ExifTool/AIFF.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/APE.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +19 -15
- package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +26 -6
- package/bin/exiftool_files/lib/Image/ExifTool/CanonRaw.pm +5 -1
- package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +28 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +77 -19
- package/bin/exiftool_files/lib/Image/ExifTool/FlashPix.pm +32 -10
- package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +7 -3
- package/bin/exiftool_files/lib/Image/ExifTool/GPS.pm +7 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +30 -7
- package/bin/exiftool_files/lib/Image/ExifTool/JPEG.pm +14 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +5 -5
- package/bin/exiftool_files/lib/Image/ExifTool/LIF.pm +10 -2
- package/bin/exiftool_files/lib/Image/ExifTool/LNK.pm +5 -4
- package/bin/exiftool_files/lib/Image/ExifTool/MIE.pm +3 -3
- package/bin/exiftool_files/lib/Image/ExifTool/MPEG.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/MakerNotes.pm +3 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Minolta.pm +6 -7
- package/bin/exiftool_files/lib/Image/ExifTool/MinoltaRaw.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +1003 -907
- package/bin/exiftool_files/lib/Image/ExifTool/NikonCustom.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/NikonSettings.pm +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +88 -6
- package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +10 -2
- package/bin/exiftool_files/lib/Image/ExifTool/PanasonicRaw.pm +27 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +8 -5
- package/bin/exiftool_files/lib/Image/ExifTool/PhaseOne.pm +14 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Photoshop.pm +38 -7
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +44 -13
- package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +40 -6
- package/bin/exiftool_files/lib/Image/ExifTool/README +19 -2
- package/bin/exiftool_files/lib/Image/ExifTool/RIFF.pm +34 -13
- package/bin/exiftool_files/lib/Image/ExifTool/Rawzor.pm +2 -2
- package/bin/exiftool_files/lib/Image/ExifTool/Ricoh.pm +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Sigma.pm +5 -4
- package/bin/exiftool_files/lib/Image/ExifTool/SigmaRaw.pm +9 -3
- package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +24 -1
- package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +4678 -4628
- package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +305 -113
- package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +5 -5
- package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +42 -0
- package/bin/exiftool_files/lib/Image/ExifTool/WriteXMP.pl +1 -1
- package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +150 -36
- package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +19 -4
- package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +2 -1
- package/bin/exiftool_files/lib/Image/ExifTool.pm +195 -42
- package/bin/exiftool_files/lib/Image/ExifTool.pod +44 -9
- package/package.json +2 -2
|
@@ -4,13 +4,88 @@ 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
|
+
Apr. 5, 2023 - Version 12.60 (production release)
|
|
11
|
+
|
|
12
|
+
- Added a new Sony FileFormat value
|
|
13
|
+
- Added Validate warning about duplicate EXIF
|
|
14
|
+
- Added ability to edit JPEG APP1 EXIF segment with incorrect header
|
|
15
|
+
- Decode a few new Sony ARW tags
|
|
16
|
+
- Improved -htmldump of non-EXIF-based maker notes
|
|
17
|
+
- Enhanced -geotag from CSV files support GPSSpeed (with variable units),
|
|
18
|
+
"bearing" for GPSTrack, and GPSDateTime in format "dd.mm.YYYY HH:MM:SS"
|
|
19
|
+
- Enhanced ImageDataMD5 to also support CRW, RAF, X3F and AVIF images
|
|
20
|
+
- Enhanced -efile option to also record updated and created file names
|
|
21
|
+
- Family 8 group names may now also be used in Composite Require/Desire tags
|
|
22
|
+
- Fixed handling of undefined tags in -if conditions to conform with
|
|
23
|
+
documentation and match -p and -tagsFromFile behaviour when -m or -f option
|
|
24
|
+
is used
|
|
25
|
+
- Fixed problem where setting the Geotime value didn't work when using an
|
|
26
|
+
advanced-formatting expression containing a greater-than symbol (>)
|
|
27
|
+
|
|
28
|
+
Mar. 28, 2023 - Version 12.59
|
|
29
|
+
|
|
30
|
+
- COMPATIBILITY WARNING: Changed the calculated ImageDataMD5 for JPEG images
|
|
31
|
+
to include all data from the SOS to the EOI (including the SOS marker but
|
|
32
|
+
not the EOI marker)
|
|
33
|
+
- Added new -fileNUM option to load tags from alternate files
|
|
34
|
+
- Added family 8 groups for accessing tags from alternate files
|
|
35
|
+
- Added new XMP-et:OriginalImageMD5 tag for storing ImageDataMD5 value
|
|
36
|
+
- Added verbose ImageDataMD5 message for JPEG files
|
|
37
|
+
- Added a new Nikon LensID (thanks Warren Hatch)
|
|
38
|
+
- Decode a new Olympus tag and improved decoding of another (thanks Herb)
|
|
39
|
+
- Decode a couple of new PanasonicRaw tags
|
|
40
|
+
- Decode image coordinates for a couple more VNT object types
|
|
41
|
+
- Enhanced ImageDataMD5 to also support MRW, CR3, IIQ, PNG, MOV/MP4 and some
|
|
42
|
+
RIFF-based files
|
|
43
|
+
- Improved verbose messages when deleting NikonApp trailer
|
|
44
|
+
- Patched to avoid structure warnings when copying tags from Nikon files
|
|
45
|
+
containing NKSC metadata
|
|
46
|
+
- Fixed %-C filename format code to work properly with the -fileOrder and
|
|
47
|
+
-progress options
|
|
48
|
+
- Fixed potential ValueConv warning when reading LIF files
|
|
49
|
+
- API Changes:
|
|
50
|
+
- Added SetAlternateFile method
|
|
51
|
+
|
|
52
|
+
Mar. 15, 2023 - Version 12.58
|
|
53
|
+
|
|
54
|
+
- Added Extra ImageDataMD5 tag to calculate MD5 of image data only
|
|
55
|
+
- Added support for reading DJI APP4 and APP7 JPEG segments
|
|
56
|
+
- Added a new SonyModelID value
|
|
57
|
+
- Decode a few new Nikon tags (thanks Warren Hatch)
|
|
58
|
+
- Downgraded "Windows file times" to a minor warning when Win32::API or
|
|
59
|
+
Win32API::File is not installed while reading metadata
|
|
60
|
+
- Patched possible runtime warning when API IgnoreTags option is used to
|
|
61
|
+
ignore FileType
|
|
62
|
+
- Fixed problem extracting NetName from Windows LNK files
|
|
63
|
+
- Fixed issue where the %C filename format code would increment the count on
|
|
64
|
+
an output filename collision, but it is supposed to count the input files
|
|
65
|
+
|
|
66
|
+
Feb. 23, 2023 - Version 12.57
|
|
67
|
+
|
|
68
|
+
- Added two new Nikon Z lenses (thanks LibRaw)
|
|
69
|
+
- Added a new Sigma LensType (thanks LibRaw)
|
|
70
|
+
- Added a new Olympus LensType (thanks Herb)
|
|
71
|
+
- Decode more new Nikon tags (thanks Warren Hatch)
|
|
72
|
+
- Decode Photoshop LayerColors, LayerSections and LayerVisible tags
|
|
73
|
+
- Improved Verbose output for QuickTime-format files
|
|
74
|
+
- Set family 1 group name for Garmin GPS from uuid atom
|
|
75
|
+
- Enhanced -progress option to allow message to be displayed every NUM files
|
|
76
|
+
- Significant improvements to parsing of Nikon ShotInfo records for newer
|
|
77
|
+
models
|
|
78
|
+
- Removed hex dump of APP segments from -v3 output when writing
|
|
79
|
+
- Fixed bug writing negative MIE GPS coordinates
|
|
80
|
+
- Fixed bug where a duplicate XMP could be generated when writing XMP to a
|
|
81
|
+
JPEG XL image which already contained XMP
|
|
82
|
+
- Fixed problem where HEAD lines may be duplicated in an output file if the -p
|
|
83
|
+
option was combined with -w+ or -W+
|
|
84
|
+
|
|
10
85
|
Feb. 9, 2023 - Version 12.56
|
|
11
86
|
|
|
12
|
-
- Added support for VNT (both Scene7 Vignette and V-Note document)
|
|
13
|
-
- Added read support for InfiRay
|
|
87
|
+
- Added support for VNT files (both Scene7 Vignette and V-Note document)
|
|
88
|
+
- Added read support for InfiRay IJPEG metadata (thanks Marcos Del Sol Vives)
|
|
14
89
|
- Added some new Sony LensType values (thanks Jos Roost and Francois Piette)
|
|
15
90
|
- Added a new FujiFilm VideoRecordingMode value (thanks Greybeard)
|
|
16
91
|
- Added two new Canon LensTypes and CanonModelIDs (thanks Norbert Wasser)
|
|
@@ -138,6 +213,8 @@ Nov. 8, 2022 - Version 12.50 (production release)
|
|
|
138
213
|
- Fixed inconsistent year and time zone for Kenwood dashcam timed GPS in MP4
|
|
139
214
|
videos
|
|
140
215
|
|
|
216
|
+
History of older versions (back to Nov. 19, 2003 - Version 1.00) -->
|
|
217
|
+
|
|
141
218
|
Oct. 19, 2022 - Version 12.49
|
|
142
219
|
|
|
143
220
|
- Added read support for Windows ICO and CUR files
|
|
@@ -305,8 +382,6 @@ June 1, 2022 - Version 12.42 (production release)
|
|
|
305
382
|
- Patched to allow PDF Encrypt object to be "null"
|
|
306
383
|
- Fixed bug reading ICC_Profile 'meta' tags
|
|
307
384
|
|
|
308
|
-
History of older versions (back to Nov. 19, 2003 - Version 1.00) -->
|
|
309
|
-
|
|
310
385
|
Apr. 7, 2022 - Version 12.41
|
|
311
386
|
|
|
312
387
|
- Added support for "OM SYSTEM" maker notes
|
|
@@ -107,8 +107,8 @@ your home directory, then you would type the following commands in a
|
|
|
107
107
|
terminal window to extract and run ExifTool:
|
|
108
108
|
|
|
109
109
|
cd ~/Desktop
|
|
110
|
-
gzip -dc Image-ExifTool-12.
|
|
111
|
-
cd Image-ExifTool-12.
|
|
110
|
+
gzip -dc Image-ExifTool-12.60.tar.gz | tar -xf -
|
|
111
|
+
cd Image-ExifTool-12.60
|
|
112
112
|
./exiftool t/images/ExifTool.jpg
|
|
113
113
|
|
|
114
114
|
Note: These commands extract meta information from one of the test images.
|
|
@@ -210,6 +210,7 @@
|
|
|
210
210
|
3 => 'PreviewImage (1)',
|
|
211
211
|
# (if the MPF has 2 previews, MPImage3 could be the larger one)
|
|
212
212
|
4 => 'MPImage3',
|
|
213
|
+
5 => 'JpgFromRaw2', # in RW2 from newer Panasonic models
|
|
213
214
|
},
|
|
214
215
|
# ValueConv may also be a code reference
|
|
215
216
|
# Inputs: 0) reference to list of values, 1) ExifTool object
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
# RotateMPRegionCW90
|
|
18
18
|
# RotateMPRegionCW180
|
|
19
19
|
# RotateMPRegionCW270
|
|
20
|
-
# These tags will rotate
|
|
20
|
+
# These tags will rotate an MP Region clockwise 90, 180, or 270 degrees.
|
|
21
21
|
# Example:
|
|
22
22
|
# exiftool -config rotate_regions.config "-RegionInfoMP<RotateMPRegionCW90" FILE
|
|
23
23
|
#
|