exiftool-vendored.pl 12.82.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 (51) hide show
  1. package/bin/Changes +37 -0
  2. package/bin/MANIFEST +2 -18
  3. package/bin/META.json +1 -1
  4. package/bin/META.yml +1 -1
  5. package/bin/README +3 -2
  6. package/bin/build_geolocation +872 -0
  7. package/bin/config_files/example.config +2 -2
  8. package/bin/exiftool +28 -6
  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 +5 -2
  13. package/bin/lib/Image/ExifTool/CanonVRD.pm +18 -5
  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/GM.pm +17 -8
  17. package/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
  18. package/bin/lib/Image/ExifTool/Geolocation.pm +163 -101
  19. package/bin/lib/Image/ExifTool/Geotag.pm +18 -10
  20. package/bin/lib/Image/ExifTool/Nikon.pm +7 -6
  21. package/bin/lib/Image/ExifTool/QuickTime.pm +6 -1
  22. package/bin/lib/Image/ExifTool/QuickTimeStream.pl +5 -0
  23. package/bin/lib/Image/ExifTool/Sony.pm +15 -6
  24. package/bin/lib/Image/ExifTool/TagLookup.pm +18 -9
  25. package/bin/lib/Image/ExifTool/TagNames.pod +24 -5
  26. package/bin/lib/Image/ExifTool/WriteQuickTime.pl +2 -1
  27. package/bin/lib/Image/ExifTool/Writer.pl +165 -132
  28. package/bin/lib/Image/ExifTool/XMP2.pl +3 -0
  29. package/bin/lib/Image/ExifTool.pm +45 -23
  30. package/bin/lib/Image/ExifTool.pod +23 -14
  31. package/bin/perl-Image-ExifTool.spec +1 -1
  32. package/bin/pp_build_exe.args +4 -4
  33. package/package.json +2 -2
  34. package/bin/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
  35. package/bin/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
  36. package/bin/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
  37. package/bin/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
  38. package/bin/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
  39. package/bin/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
  40. package/bin/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
  41. package/bin/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
  42. package/bin/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
  43. package/bin/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
  44. package/bin/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
  45. package/bin/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
  46. package/bin/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
  47. package/bin/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
  48. package/bin/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
  49. package/bin/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
  50. package/bin/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
  51. package/bin/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
package/bin/Changes CHANGED
@@ -7,6 +7,43 @@ 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
+
10
47
  Apr. 5, 2024 - Version 12.82 - "GM PDR"
11
48
 
12
49
  - Added support for reading GM PDR data from MP4 videos written by cars such
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
@@ -189,6 +190,7 @@ html/TagNames/iWork.html
189
190
  html/TagNames/index.html
190
191
  html/TagNames/style.css
191
192
  html/ancient_history.html
193
+ html/build_geolocation.txt
192
194
  html/canon_raw.html
193
195
  html/commentary.html
194
196
  html/config.html
@@ -296,24 +298,6 @@ lib/Image/ExifTool/GIF.pm
296
298
  lib/Image/ExifTool/GIMP.pm
297
299
  lib/Image/ExifTool/GM.pm
298
300
  lib/Image/ExifTool/GPS.pm
299
- lib/Image/ExifTool/GeoLang/cs.pm
300
- lib/Image/ExifTool/GeoLang/de.pm
301
- lib/Image/ExifTool/GeoLang/en_ca.pm
302
- lib/Image/ExifTool/GeoLang/en_gb.pm
303
- lib/Image/ExifTool/GeoLang/es.pm
304
- lib/Image/ExifTool/GeoLang/fi.pm
305
- lib/Image/ExifTool/GeoLang/fr.pm
306
- lib/Image/ExifTool/GeoLang/it.pm
307
- lib/Image/ExifTool/GeoLang/ja.pm
308
- lib/Image/ExifTool/GeoLang/ko.pm
309
- lib/Image/ExifTool/GeoLang/nl.pm
310
- lib/Image/ExifTool/GeoLang/pl.pm
311
- lib/Image/ExifTool/GeoLang/ru.pm
312
- lib/Image/ExifTool/GeoLang/sk.pm
313
- lib/Image/ExifTool/GeoLang/sv.pm
314
- lib/Image/ExifTool/GeoLang/tr.pm
315
- lib/Image/ExifTool/GeoLang/zh_cn.pm
316
- lib/Image/ExifTool/GeoLang/zh_tw.pm
317
301
  lib/Image/ExifTool/GeoTiff.pm
318
302
  lib/Image/ExifTool/Geolocation.dat
319
303
  lib/Image/ExifTool/Geolocation.pm
package/bin/META.json CHANGED
@@ -50,5 +50,5 @@
50
50
  }
51
51
  },
52
52
  "release_status" : "stable",
53
- "version" : "12.82"
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.82
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.82.tar.gz | tar -xf -
113
- cd Image-ExifTool-12.82
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