exiftool-vendored.pl 12.60.0 → 12.65.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 +110 -0
- package/bin/LICENSE +674 -0
- package/bin/MANIFEST +11 -0
- package/bin/META.json +5 -3
- package/bin/META.yml +5 -3
- package/bin/Makefile.PL +7 -1
- package/bin/README +50 -45
- package/bin/config_files/guano.config +161 -0
- package/bin/exiftool +163 -103
- package/bin/lib/Image/ExifTool/7Z.pm +793 -0
- package/bin/lib/Image/ExifTool/Apple.pm +14 -7
- package/bin/lib/Image/ExifTool/BMP.pm +0 -1
- package/bin/lib/Image/ExifTool/BigTIFF.pm +8 -1
- package/bin/lib/Image/ExifTool/BuildTagLookup.pm +4 -4
- package/bin/lib/Image/ExifTool/Canon.pm +4 -1
- package/bin/lib/Image/ExifTool/CanonRaw.pm +4 -4
- package/bin/lib/Image/ExifTool/CanonVRD.pm +4 -1
- package/bin/lib/Image/ExifTool/Exif.pm +31 -14
- package/bin/lib/Image/ExifTool/FlashPix.pm +9 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +3 -3
- package/bin/lib/Image/ExifTool/GPS.pm +5 -2
- package/bin/lib/Image/ExifTool/Geotag.pm +4 -1
- package/bin/lib/Image/ExifTool/Jpeg2000.pm +243 -20
- package/bin/lib/Image/ExifTool/Lang/fr.pm +1467 -202
- package/bin/lib/Image/ExifTool/MPF.pm +2 -1
- package/bin/lib/Image/ExifTool/Matroska.pm +16 -1
- package/bin/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
- package/bin/lib/Image/ExifTool/Nikon.pm +941 -33
- package/bin/lib/Image/ExifTool/NikonCustom.pm +874 -63
- package/bin/lib/Image/ExifTool/PDF.pm +39 -12
- package/bin/lib/Image/ExifTool/PLIST.pm +8 -1
- package/bin/lib/Image/ExifTool/PNG.pm +6 -6
- package/bin/lib/Image/ExifTool/PhaseOne.pm +5 -5
- package/bin/lib/Image/ExifTool/QuickTime.pm +96 -32
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +68 -37
- package/bin/lib/Image/ExifTool/README +2 -2
- package/bin/lib/Image/ExifTool/RIFF.pm +11 -9
- package/bin/lib/Image/ExifTool/Samsung.pm +227 -227
- package/bin/lib/Image/ExifTool/Shortcuts.pm +2 -1
- package/bin/lib/Image/ExifTool/SigmaRaw.pm +4 -4
- package/bin/lib/Image/ExifTool/Sony.pm +237 -32
- package/bin/lib/Image/ExifTool/TagLookup.pm +4762 -4629
- package/bin/lib/Image/ExifTool/TagNames.pod +737 -20
- package/bin/lib/Image/ExifTool/Validate.pm +17 -1
- package/bin/lib/Image/ExifTool/WPG.pm +296 -0
- package/bin/lib/Image/ExifTool/WriteExif.pl +9 -7
- package/bin/lib/Image/ExifTool/WritePDF.pl +7 -8
- package/bin/lib/Image/ExifTool/WriteQuickTime.pl +21 -9
- package/bin/lib/Image/ExifTool/WriteXMP.pl +2 -2
- package/bin/lib/Image/ExifTool/Writer.pl +47 -16
- package/bin/lib/Image/ExifTool/XMP.pm +30 -6
- package/bin/lib/Image/ExifTool/XMP2.pl +32 -0
- package/bin/lib/Image/ExifTool/XMPStruct.pl +96 -28
- package/bin/lib/Image/ExifTool/ZIP.pm +159 -41
- package/bin/lib/Image/ExifTool.pm +280 -164
- package/bin/lib/Image/ExifTool.pod +117 -52
- package/bin/perl-Image-ExifTool.spec +44 -43
- package/bin/pp_build_exe.args +8 -4
- package/package.json +3 -3
package/bin/Changes
CHANGED
|
@@ -7,6 +7,116 @@ RSS feed: https://exiftool.org/rss.xml
|
|
|
7
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
|
+
Aug. 10, 2023 - Version 12.65
|
|
11
|
+
|
|
12
|
+
- Added a new QuickTime Keys tag
|
|
13
|
+
- Added a new CanonModelID (thanks Laurent Clevy)
|
|
14
|
+
- Added a new Canon LensType (thanks Norbert Wasser)
|
|
15
|
+
- Added number in brackets to converted Samsung MCCData value
|
|
16
|
+
- Decode a number of new Sony tags (thanks Jos Roost)
|
|
17
|
+
- Decode a few new FlashPix tags (github #217)
|
|
18
|
+
- Improved decoding of Nikon Z9 firmware 4.0 tags (thanks Warren Hatch)
|
|
19
|
+
- Improved parsing of PDF:Keywords to support semicolon-separated lists
|
|
20
|
+
- Enhanced -api option to show list of available options if no argument is
|
|
21
|
+
provided
|
|
22
|
+
- Lowered priority of IFD1 tags in ARW images so IFD0/SubIFD take precedence
|
|
23
|
+
- Changed QuickTime tag names for atID (AlbumTitleID to ArtistID) and plID
|
|
24
|
+
(PlayListID to AlbumID) (github issue #216), and added cmID (ComposerID)
|
|
25
|
+
- Changed Apple:MediaGroupUUID tag name back to ContentIdentifier
|
|
26
|
+
- Patched the -d option to handle the %s format code internally when writing
|
|
27
|
+
(avoids problems due to inconsistent behaviour of this format code in the
|
|
28
|
+
strptime function on different systems)
|
|
29
|
+
- Patched patch of version 12.32 to restore ability to read from named pipes
|
|
30
|
+
- Fixed bug which could cause a hang when processing a corrupt BigTIFF image
|
|
31
|
+
- Fixed document number for auxiliary image metadata in HEIC files
|
|
32
|
+
- Fixed misspelt Apple tag name (thanks Neal Krawetz)
|
|
33
|
+
- API Changes:
|
|
34
|
+
- Added AvailableOptions method
|
|
35
|
+
|
|
36
|
+
June 28, 2023 - Version 12.64
|
|
37
|
+
|
|
38
|
+
- Added a new Sony LensType (thanks Jos Roost)
|
|
39
|
+
- Added config_files/guano.config to the distribution (thanks StarGeek)
|
|
40
|
+
- Added support for Garmin Low-resolution Video (GLV) files
|
|
41
|
+
- Added JUMBF to the list of deletable groups
|
|
42
|
+
- Added (untested) read support for spherical video tags in Matroska videos
|
|
43
|
+
- Decode a number of new Nikon Z9 tags (thanks Warren Hatch)
|
|
44
|
+
- Decode AmbisonicAudio tags in spherical MP4 vidoes
|
|
45
|
+
- Decode another Apple tag
|
|
46
|
+
- Improved French translations (thanks Philippe Bonnaure of GraphicConverter)
|
|
47
|
+
- Patched to allow writing QuickTime-based videos where the audio/video sample
|
|
48
|
+
description comes after the sample pointers
|
|
49
|
+
- Fixed parsing of GPS from Insta360 videos to properly skip void fixes
|
|
50
|
+
- Fixed problem where Apple iPhone 14 images produced invalid XML in -X output
|
|
51
|
+
when using -struct option
|
|
52
|
+
- API Changes:
|
|
53
|
+
- Added StructFormat option to allow JSON-format serialized structures
|
|
54
|
+
- Added NoDups option to eliminate duplicate items from queued values when
|
|
55
|
+
writing List-type tags
|
|
56
|
+
|
|
57
|
+
June 8, 2023 - Version 12.63
|
|
58
|
+
|
|
59
|
+
- Added ability to read/write/create Brotli-compressed metadata in JXL images
|
|
60
|
+
(requires IO::Compress::Brotli)
|
|
61
|
+
- Added partial support for Exif 3.0 specification:
|
|
62
|
+
- Added new EXIF tags
|
|
63
|
+
- Added MPF Original Preservation Image type
|
|
64
|
+
- Support for reading 'utf8' values (but still write only as 'string')
|
|
65
|
+
- Added support for Adobe XMP-hdrgm (HDR Gain Map) tags
|
|
66
|
+
- Added support for reading 7z files (thanks Amir Gooran, github #205) (but
|
|
67
|
+
currently this doesn't work for the Windows .exe version because I haven't
|
|
68
|
+
been able to install Compress::Raw::Lzma for ActivePerl)
|
|
69
|
+
- Added XMP-panorama tags
|
|
70
|
+
- Added warning if -csv is used with -p
|
|
71
|
+
- Added warning if trying to geotag from a UTF-16 track log
|
|
72
|
+
- Decode ImageWidth/Height from JXL images using partial codestreams
|
|
73
|
+
- Decode more Sony tags for some newer models (thanks Jos Roost)
|
|
74
|
+
- Extract GainMapImage (hrgm box) from JXL files
|
|
75
|
+
- Extract Guano information from WAV files
|
|
76
|
+
- Enhanced ImageDataMD5 feature and renamed to ImageDataHash (with
|
|
77
|
+
ImageDataMD5 alias for backward compatibility)
|
|
78
|
+
- Changed RARVersion tag name to FileVersion
|
|
79
|
+
- Fixed bug introduced in 12.46 which could cause a hang when reading a
|
|
80
|
+
corrupted RIFF-based file
|
|
81
|
+
- Fixed writing of Composition:GPSPosition when -n is used
|
|
82
|
+
- API Changes:
|
|
83
|
+
- Added ImageHashType option
|
|
84
|
+
|
|
85
|
+
May 3, 2023 - Version 12.62
|
|
86
|
+
|
|
87
|
+
- Added basic read support for WPG images
|
|
88
|
+
- Added ImageDataMD5 support for HEIC images
|
|
89
|
+
- Added support for RAR version 5.0 files (thanks Amir Gooran, github #203)
|
|
90
|
+
- Added a few new XMP-aux tags (thanks John Ellis)
|
|
91
|
+
- Made Composite tags available for use in -fileNUM argument
|
|
92
|
+
- Better handling of FlashPix VT_EMPTY value
|
|
93
|
+
- Fixed "Can't write" error when specifying a .webp file for the -o option
|
|
94
|
+
- API Changes:
|
|
95
|
+
- Added NoWarning option
|
|
96
|
+
|
|
97
|
+
Apr. 24, 2023 - Version 12.61
|
|
98
|
+
|
|
99
|
+
- Added ImageDataMD5 support for J2C and JXL images
|
|
100
|
+
- Added support for PDF 2.0 (specification is finally freely available)
|
|
101
|
+
- Added ability to extract timed Accelerometer data from Azdome GS63H MP4
|
|
102
|
+
videos which don't contain GPS
|
|
103
|
+
- Added some new Sony lenses (thanks Jos Roost)
|
|
104
|
+
- Decode some new tags for the Sony ZV-E1 (thanks Jos Roost)
|
|
105
|
+
- Decode more tags for the Nikon Z30 (thanks Xavier)
|
|
106
|
+
- Enhanced -fileNUM option to allow tags from the main file to be used in the
|
|
107
|
+
file name string
|
|
108
|
+
- Validate sample offset and size when calculating ImageDataMD5 for MP4 videos
|
|
109
|
+
(note: may change ImageDataMD5 value for videos where audio data runs past
|
|
110
|
+
end of media data)
|
|
111
|
+
- Return error when attempting to write a fragmented JXL file
|
|
112
|
+
- Improved robustness for determining image size for corrupted JPEG
|
|
113
|
+
- Patched to allow Insta360 GPS records of unexpected length and tweaked
|
|
114
|
+
verification algorithm to determine validity of these records
|
|
115
|
+
- Fixed bug introduced in 12.57 where -progress:%f gave runtime warnings
|
|
116
|
+
- Fixed "--" option to ignore subsequent -common_args option
|
|
117
|
+
- Fixed incorrect ImageDataMD5 for Sony A100 ARW images
|
|
118
|
+
- Fixed problem reading new XMP-et:OriginalImageMD5 tag
|
|
119
|
+
|
|
10
120
|
Apr. 5, 2023 - Version 12.60 (production release)
|
|
11
121
|
|
|
12
122
|
- Added a new Sony FileFormat value
|