exiftool_vendored 12.81.0 → 12.83.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.
- checksums.yaml +4 -4
- data/bin/Changes +39 -1
- data/bin/MANIFEST +4 -18
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +3 -2
- data/bin/build_geolocation +867 -0
- data/bin/exiftool +37 -9
- data/bin/fmt_files/gpx.fmt +2 -1
- data/bin/fmt_files/gpx_wpt.fmt +2 -1
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +47 -31
- data/bin/lib/Image/ExifTool/CanonVRD.pm +6 -5
- data/bin/lib/Image/ExifTool/DJI.pm +29 -0
- data/bin/lib/Image/ExifTool/Exif.pm +19 -2
- data/bin/lib/Image/ExifTool/FujiFilm.pm +9 -2
- data/bin/lib/Image/ExifTool/GM.pm +552 -0
- data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- data/bin/lib/Image/ExifTool/Geolocation.pm +90 -54
- data/bin/lib/Image/ExifTool/Nikon.pm +9 -7
- data/bin/lib/Image/ExifTool/QuickTime.pm +31 -23
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +66 -30
- data/bin/lib/Image/ExifTool/README +2 -0
- data/bin/lib/Image/ExifTool/Sony.pm +15 -6
- data/bin/lib/Image/ExifTool/TagLookup.pm +37 -6
- data/bin/lib/Image/ExifTool/TagNames.pod +407 -239
- data/bin/lib/Image/ExifTool/WriteQuickTime.pl +5 -2
- data/bin/lib/Image/ExifTool/Writer.pl +165 -133
- data/bin/lib/Image/ExifTool/XMP.pm +3 -2
- data/bin/lib/Image/ExifTool/XMP2.pl +3 -0
- data/bin/lib/Image/ExifTool.pm +38 -9
- data/bin/lib/Image/ExifTool.pod +31 -18
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +4 -20
- data/bin/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
- data/bin/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
- data/bin/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
- data/bin/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
- data/bin/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
- data/bin/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
- data/bin/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
- data/bin/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
- data/bin/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
- data/bin/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
- data/bin/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
- data/bin/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
- data/bin/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
- data/bin/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
- data/bin/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
- data/bin/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
- data/bin/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
- data/bin/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bce9ba4475bbab2af98e446daf68e2ebc3e20f5f8babe75cb6c4c30c2d64e249
|
|
4
|
+
data.tar.gz: 3f9168ef86dba7aeeaaf05175e9ca061555aef3c265fca25e4716bfb201f37c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2c1d039efa83cb5365e55ae6b75c55076afaf93ef816798a221918c99ae65279c7cbdf53aaff59e76168c9cb5c859f05317ad1d286087386ebb351bc848b32bb
|
|
7
|
+
data.tar.gz: 9481aa26a7f459d1bc5c9c6cb9fd752ecb1d7ba4a9c5fb0e16b4147e819c5e5c6b0d8dc4efe6571a9a0e32abf49b386c3b03d485993be98ec3ec18d03efefc5f
|
data/bin/Changes
CHANGED
|
@@ -7,6 +7,44 @@ RSS feed: https://exiftool.org/rss.xml
|
|
|
7
7
|
Note: The most recent production release is Version 12.76. (Other versions are
|
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
|
9
9
|
|
|
10
|
+
Apr. 18, 2024 - Version 12.83
|
|
11
|
+
|
|
12
|
+
- Added SetTags helper function for use in advanced formatting expressions
|
|
13
|
+
- Added a couple of new tags from the DNG 1.7.1 specification
|
|
14
|
+
- Added a new Nikon Z lens
|
|
15
|
+
- Added a couple of new QuickTime tags
|
|
16
|
+
- Added a few more XMP-GCamera tags
|
|
17
|
+
- Added build_geolocation to the full distribution
|
|
18
|
+
- Decode a new CanonVRD tag and rename another one
|
|
19
|
+
- Updates to Sony maker note decoding for newer models (thanks Jos Roost)
|
|
20
|
+
- Minor change in -p option to avoid adding the trailing newline if the -b
|
|
21
|
+
option is also used
|
|
22
|
+
- Minor changes to GM PDR decoding for Gear and angle measurements
|
|
23
|
+
- Removed Geolocation alternate language support from the standard
|
|
24
|
+
distribution, and added PPLX feature codes
|
|
25
|
+
- Set family 1 group name for NextBase 'nbmt' information to "Nextbase"
|
|
26
|
+
- Fixed incorrect ID of a DNG tag
|
|
27
|
+
- API Changes:
|
|
28
|
+
- Added IgnoreGroups option
|
|
29
|
+
|
|
30
|
+
Apr. 5, 2024 - Version 12.82 - "GM PDR"
|
|
31
|
+
|
|
32
|
+
- Added support for reading GM PDR data from MP4 videos written by cars such
|
|
33
|
+
as Corvettes and Cameros
|
|
34
|
+
- Added support for reading timed GPS from Wolfbox dashcam videos
|
|
35
|
+
- Added "Unknown trailer" to QuickTime warnings originating from an unknown
|
|
36
|
+
trailer
|
|
37
|
+
- Added a new Nikon LensID
|
|
38
|
+
- Extract PreviewImage from Chigee AIO-5 dashcam videos
|
|
39
|
+
- Changed name and print conversion of a recently added FujiFilm tag
|
|
40
|
+
- Only issue "Tag not defined" warnings for the first sub-document when using
|
|
41
|
+
the -p option
|
|
42
|
+
- Fixed a Nikon Z lens name (github #250)
|
|
43
|
+
- Fixed Windows version so -sort works properly with -listgeo
|
|
44
|
+
- API Changes:
|
|
45
|
+
- Added PrintCSV option for optimized extraction of GM PDR data in CSV
|
|
46
|
+
format
|
|
47
|
+
|
|
10
48
|
Mar. 27, 2024 - Version 12.81
|
|
11
49
|
|
|
12
50
|
- Added ability to read EXIF and XMP from EXR images
|
|
@@ -19,8 +57,8 @@ Mar. 27, 2024 - Version 12.81
|
|
|
19
57
|
- Added support for new version of Canon DR4 files
|
|
20
58
|
- Added a number of new iTunesInfo tags
|
|
21
59
|
- Added a new Olympus LensType
|
|
22
|
-
- Allow regular expressions to be used when writing Geolocate tag
|
|
23
60
|
- Decode a number of new Nikon tags (thanks Warren Hatch)
|
|
61
|
+
- Allow regular expressions to be used when writing Geolocate tag
|
|
24
62
|
- Enhanced writing of Geolocate tag to also write Keys:LocationName
|
|
25
63
|
- Cache the results of the last reverse geolocation search to speed batch
|
|
26
64
|
processing when multiple files have the same search parameters
|
data/bin/MANIFEST
CHANGED
|
@@ -15,6 +15,7 @@ arg_files/xmp2exif.args
|
|
|
15
15
|
arg_files/xmp2gps.args
|
|
16
16
|
arg_files/xmp2iptc.args
|
|
17
17
|
arg_files/xmp2pdf.args
|
|
18
|
+
build_geolocation
|
|
18
19
|
config_files/acdsee.config
|
|
19
20
|
config_files/age.config
|
|
20
21
|
config_files/bibble.config
|
|
@@ -80,6 +81,7 @@ html/TagNames/FujiFilm.html
|
|
|
80
81
|
html/TagNames/GE.html
|
|
81
82
|
html/TagNames/GIF.html
|
|
82
83
|
html/TagNames/GIMP.html
|
|
84
|
+
html/TagNames/GM.html
|
|
83
85
|
html/TagNames/GPS.html
|
|
84
86
|
html/TagNames/GeoTiff.html
|
|
85
87
|
html/TagNames/GoPro.html
|
|
@@ -188,6 +190,7 @@ html/TagNames/iWork.html
|
|
|
188
190
|
html/TagNames/index.html
|
|
189
191
|
html/TagNames/style.css
|
|
190
192
|
html/ancient_history.html
|
|
193
|
+
html/build_geolocation.txt
|
|
191
194
|
html/canon_raw.html
|
|
192
195
|
html/commentary.html
|
|
193
196
|
html/config.html
|
|
@@ -293,25 +296,8 @@ lib/Image/ExifTool/FujiFilm.pm
|
|
|
293
296
|
lib/Image/ExifTool/GE.pm
|
|
294
297
|
lib/Image/ExifTool/GIF.pm
|
|
295
298
|
lib/Image/ExifTool/GIMP.pm
|
|
299
|
+
lib/Image/ExifTool/GM.pm
|
|
296
300
|
lib/Image/ExifTool/GPS.pm
|
|
297
|
-
lib/Image/ExifTool/GeoLang/cs.pm
|
|
298
|
-
lib/Image/ExifTool/GeoLang/de.pm
|
|
299
|
-
lib/Image/ExifTool/GeoLang/en_ca.pm
|
|
300
|
-
lib/Image/ExifTool/GeoLang/en_gb.pm
|
|
301
|
-
lib/Image/ExifTool/GeoLang/es.pm
|
|
302
|
-
lib/Image/ExifTool/GeoLang/fi.pm
|
|
303
|
-
lib/Image/ExifTool/GeoLang/fr.pm
|
|
304
|
-
lib/Image/ExifTool/GeoLang/it.pm
|
|
305
|
-
lib/Image/ExifTool/GeoLang/ja.pm
|
|
306
|
-
lib/Image/ExifTool/GeoLang/ko.pm
|
|
307
|
-
lib/Image/ExifTool/GeoLang/nl.pm
|
|
308
|
-
lib/Image/ExifTool/GeoLang/pl.pm
|
|
309
|
-
lib/Image/ExifTool/GeoLang/ru.pm
|
|
310
|
-
lib/Image/ExifTool/GeoLang/sk.pm
|
|
311
|
-
lib/Image/ExifTool/GeoLang/sv.pm
|
|
312
|
-
lib/Image/ExifTool/GeoLang/tr.pm
|
|
313
|
-
lib/Image/ExifTool/GeoLang/zh_cn.pm
|
|
314
|
-
lib/Image/ExifTool/GeoLang/zh_tw.pm
|
|
315
301
|
lib/Image/ExifTool/GeoTiff.pm
|
|
316
302
|
lib/Image/ExifTool/Geolocation.dat
|
|
317
303
|
lib/Image/ExifTool/Geolocation.pm
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
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-12.
|
|
113
|
-
cd Image-ExifTool-12.
|
|
112
|
+
gzip -dc Image-ExifTool-12.83.tar.gz | tar -xf -
|
|
113
|
+
cd Image-ExifTool-12.83
|
|
114
114
|
./exiftool t/images/ExifTool.jpg
|
|
115
115
|
|
|
116
116
|
Note: These commands extract meta information from one of the test images.
|
|
@@ -195,6 +195,7 @@ distribution package:
|
|
|
195
195
|
xmp2gps.args - Arguments for converting XMP to GPS
|
|
196
196
|
xmp2iptc.args - Arguments for converting XMP to IPTC
|
|
197
197
|
xmp2pdf.args - Arguments for converting XMP to PDF
|
|
198
|
+
build_geolocation - Build custom Geolocation database
|
|
198
199
|
config_files/ - Sample ExifTool configuration files:
|
|
199
200
|
acdsee.config - Definitions for writing ACDSee XMP regions
|
|
200
201
|
age.config - Calculate Age of person in photo
|