exiftool-vendored.pl 12.80.0 → 12.84.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 (43) hide show
  1. package/bin/Changes +81 -0
  2. package/bin/MANIFEST +6 -18
  3. package/bin/META.json +1 -1
  4. package/bin/META.yml +1 -1
  5. package/bin/README +4 -2
  6. package/bin/build_geolocation +872 -0
  7. package/bin/config_files/example.config +2 -2
  8. package/bin/exiftool +61 -17
  9. package/bin/fmt_files/gpx.fmt +2 -1
  10. package/bin/fmt_files/gpx_wpt.fmt +2 -1
  11. package/bin/lib/Image/ExifTool/Apple.pm +51 -7
  12. package/bin/lib/Image/ExifTool/BuildTagLookup.pm +47 -31
  13. package/bin/lib/Image/ExifTool/CanonVRD.pm +19 -6
  14. package/bin/lib/Image/ExifTool/DJI.pm +29 -0
  15. package/bin/lib/Image/ExifTool/Exif.pm +19 -2
  16. package/bin/lib/Image/ExifTool/FujiFilm.pm +20 -7
  17. package/bin/lib/Image/ExifTool/GM.pm +552 -0
  18. package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
  19. package/bin/lib/Image/ExifTool/Geolocation.pm +423 -178
  20. package/bin/lib/Image/ExifTool/Geotag.pm +26 -13
  21. package/bin/lib/Image/ExifTool/M2TS.pm +32 -4
  22. package/bin/lib/Image/ExifTool/MakerNotes.pm +2 -2
  23. package/bin/lib/Image/ExifTool/Microsoft.pm +1 -1
  24. package/bin/lib/Image/ExifTool/Nikon.pm +337 -27
  25. package/bin/lib/Image/ExifTool/NikonCustom.pm +55 -1
  26. package/bin/lib/Image/ExifTool/Olympus.pm +1 -0
  27. package/bin/lib/Image/ExifTool/OpenEXR.pm +21 -3
  28. package/bin/lib/Image/ExifTool/PNG.pm +3 -3
  29. package/bin/lib/Image/ExifTool/QuickTime.pm +45 -24
  30. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +66 -30
  31. package/bin/lib/Image/ExifTool/README +2 -0
  32. package/bin/lib/Image/ExifTool/Sony.pm +16 -7
  33. package/bin/lib/Image/ExifTool/TagLookup.pm +4827 -4778
  34. package/bin/lib/Image/ExifTool/TagNames.pod +953 -620
  35. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +32 -9
  36. package/bin/lib/Image/ExifTool/Writer.pl +169 -130
  37. package/bin/lib/Image/ExifTool/XMP.pm +4 -2
  38. package/bin/lib/Image/ExifTool/XMP2.pl +3 -0
  39. package/bin/lib/Image/ExifTool.pm +106 -48
  40. package/bin/lib/Image/ExifTool.pod +47 -25
  41. package/bin/perl-Image-ExifTool.spec +1 -1
  42. package/bin/pp_build_exe.args +4 -4
  43. package/package.json +3 -3
package/bin/Changes CHANGED
@@ -7,6 +7,84 @@ 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. 23, 2024 - Version 12.84
11
+
12
+ - Added ability to read speed and accuracy_horizontal when geotagging from
13
+ OpenTracks GPX files
14
+ - Decode a few more Apple tags and a new CanonVRD tag
15
+ - Enhanced Geolocation option with the ability to return any number of nearby
16
+ cities
17
+ - Fixed long-standing bug in Windows version that didn't properly handle dates
18
+ older than 50 years when writing FileModifyDate or FileCreateDate
19
+ - Fixed API TimeZone option to work in Windows
20
+ - Fixed problem where the SetTags helper function didn't properly copy tags
21
+ which have print conversions
22
+ - Fixed problem where a new subregion couldn't be added through a user-defined
23
+ Geolocation database entry
24
+ - Fixed problem where GeolocFeature option didn't work for some features if a
25
+ user-generated custom database was used
26
+
27
+ Apr. 18, 2024 - Version 12.83
28
+
29
+ - Added SetTags helper function for use in advanced formatting expressions
30
+ - Added a couple of new tags from the DNG 1.7.1 specification
31
+ - Added a new Nikon Z lens
32
+ - Added a couple of new QuickTime tags
33
+ - Added a few more XMP-GCamera tags
34
+ - Added build_geolocation utility to the full distribution
35
+ - Decode a new CanonVRD tag and rename another one
36
+ - Updates to Sony maker note decoding for newer models (thanks Jos Roost)
37
+ - Minor change in -p option to avoid adding the trailing newline if the -b
38
+ option is also used
39
+ - Minor changes to GM PDR decoding for Gear and angle measurements
40
+ - Removed Geolocation alternate language support from the standard
41
+ distribution, and added PPLX feature codes
42
+ - Set family 1 group name for NextBase 'nbmt' information to "Nextbase"
43
+ - Fixed incorrect ID of a DNG tag
44
+ - API Changes:
45
+ - Added IgnoreGroups option
46
+
47
+ Apr. 5, 2024 - Version 12.82 - "GM PDR"
48
+
49
+ - Added support for reading GM PDR data from MP4 videos written by cars such
50
+ as Corvettes and Cameros
51
+ - Added support for reading timed GPS from Wolfbox dashcam videos
52
+ - Added "Unknown trailer" to QuickTime warnings originating from an unknown
53
+ trailer
54
+ - Added a new Nikon LensID
55
+ - Extract PreviewImage from Chigee AIO-5 dashcam videos
56
+ - Changed name and print conversion of a recently added FujiFilm tag
57
+ - Only issue "Tag not defined" warnings for the first sub-document when using
58
+ the -p option
59
+ - Fixed a Nikon Z lens name (github #250)
60
+ - Fixed Windows version so -sort works properly with -listgeo
61
+ - API Changes:
62
+ - Added PrintCSV option for optimized extraction of GM PDR data in CSV
63
+ format
64
+
65
+ Mar. 27, 2024 - Version 12.81
66
+
67
+ - Added ability to read EXIF and XMP from EXR images
68
+ - Added ability to delete unknown trailer when writing MOV/MP4 videos
69
+ - Added ability to write a couple of Stable Diffusion PNG tags
70
+ - Added ability to write one of the Microsoft Xtra Description tags (github
71
+ #248)
72
+ - Added support for using alternate city names in reverse Geolocation
73
+ - Added support for reading timed GPS from DOD LS600W TS videos
74
+ - Added support for new version of Canon DR4 files
75
+ - Added a number of new iTunesInfo tags
76
+ - Added a new Olympus LensType
77
+ - Decode a number of new Nikon tags (thanks Warren Hatch)
78
+ - Allow regular expressions to be used when writing Geolocate tag
79
+ - Enhanced writing of Geolocate tag to also write Keys:LocationName
80
+ - Cache the results of the last reverse geolocation search to speed batch
81
+ processing when multiple files have the same search parameters
82
+ - Patched problem that could cause runtime errors with some invaid tag names
83
+ - Fixed a couple of newly added FujiFilm tags
84
+ - Fixed decoding of FujiFilm AFAreaZoneSize
85
+ - API Changes:
86
+ - Added GeolocAltNames option
87
+
10
88
  Mar. 19, 2024 - Version 12.80
11
89
 
12
90
  - Added GeolocationFeatureCode tag
@@ -19,6 +97,8 @@ Mar. 19, 2024 - Version 12.80
19
97
  - Improved accuracy of Geolocation distance/bearing calculations
20
98
  - Changed structure of Geolocation database (now version 1.02)
21
99
  - Minor change to key format for user-defined Geolocation name translations
100
+ - Ignore API Geolocation option when copying tags if none of the Geolocation
101
+ tags are being copied
22
102
  - Fixed case/spacing of "C2PA" in some CBOR tag descriptions
23
103
  - Fixed bug extracting binary data from EXR files
24
104
  - API Changes:
@@ -29,6 +109,7 @@ Mar. 15, 2024 - Version 12.79
29
109
  - Improvements to new Geolocation feature:
30
110
  - Added reverse Geolocation ability (obtain GPS coordinates from city
31
111
  name), with support for regular expressions
112
+ - Added ability to geolocate while geotagging
32
113
  - Added -listgeo option to list the Geolocation database
33
114
  - Added the ability to include user-defined cities in the Geolocation
34
115
  database
package/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
@@ -626,6 +612,8 @@ t/Geolocation_3.out
626
612
  t/Geolocation_4.out
627
613
  t/Geolocation_5.out
628
614
  t/Geolocation_6.out
615
+ t/Geolocation_7.out
616
+ t/Geolocation_8.out
629
617
  t/Geotag.t
630
618
  t/Geotag_10.out
631
619
  t/Geotag_11.out
package/bin/META.json CHANGED
@@ -50,5 +50,5 @@
50
50
  }
51
51
  },
52
52
  "release_status" : "stable",
53
- "version" : "12.80"
53
+ "version" : "12.84"
54
54
  }
package/bin/META.yml CHANGED
@@ -31,4 +31,4 @@ recommends:
31
31
  Time::HiRes: 0
32
32
  requires:
33
33
  perl: 5.004
34
- version: 12.80
34
+ version: 12.84
package/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.80.tar.gz | tar -xf -
113
- cd Image-ExifTool-12.80
112
+ gzip -dc Image-ExifTool-12.84.tar.gz | tar -xf -
113
+ cd Image-ExifTool-12.84
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
@@ -238,6 +239,7 @@ information:
238
239
  html/ExifTool.html - API documentation
239
240
  html/TagNames/index.html - Tag name documentation
240
241
  html/geotag.html - Geotag feature
242
+ html/geolocation.html - Geolocation feature
241
243
  html/faq.html - Frequently asked questions
242
244
  html/filename.html - Renaming/moving files
243
245
  html/metafiles.html - Working with metadata sidecar files