exiftool_vendored 12.81.0 → 12.83.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/bin/Changes +39 -1
  3. data/bin/MANIFEST +4 -18
  4. data/bin/META.json +1 -1
  5. data/bin/META.yml +1 -1
  6. data/bin/README +3 -2
  7. data/bin/build_geolocation +867 -0
  8. data/bin/exiftool +37 -9
  9. data/bin/fmt_files/gpx.fmt +2 -1
  10. data/bin/fmt_files/gpx_wpt.fmt +2 -1
  11. data/bin/lib/Image/ExifTool/BuildTagLookup.pm +47 -31
  12. data/bin/lib/Image/ExifTool/CanonVRD.pm +6 -5
  13. data/bin/lib/Image/ExifTool/DJI.pm +29 -0
  14. data/bin/lib/Image/ExifTool/Exif.pm +19 -2
  15. data/bin/lib/Image/ExifTool/FujiFilm.pm +9 -2
  16. data/bin/lib/Image/ExifTool/GM.pm +552 -0
  17. data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
  18. data/bin/lib/Image/ExifTool/Geolocation.pm +90 -54
  19. data/bin/lib/Image/ExifTool/Nikon.pm +9 -7
  20. data/bin/lib/Image/ExifTool/QuickTime.pm +31 -23
  21. data/bin/lib/Image/ExifTool/QuickTimeStream.pl +66 -30
  22. data/bin/lib/Image/ExifTool/README +2 -0
  23. data/bin/lib/Image/ExifTool/Sony.pm +15 -6
  24. data/bin/lib/Image/ExifTool/TagLookup.pm +37 -6
  25. data/bin/lib/Image/ExifTool/TagNames.pod +407 -239
  26. data/bin/lib/Image/ExifTool/WriteQuickTime.pl +5 -2
  27. data/bin/lib/Image/ExifTool/Writer.pl +165 -133
  28. data/bin/lib/Image/ExifTool/XMP.pm +3 -2
  29. data/bin/lib/Image/ExifTool/XMP2.pl +3 -0
  30. data/bin/lib/Image/ExifTool.pm +38 -9
  31. data/bin/lib/Image/ExifTool.pod +31 -18
  32. data/bin/perl-Image-ExifTool.spec +1 -1
  33. data/lib/exiftool_vendored/version.rb +1 -1
  34. metadata +4 -20
  35. data/bin/lib/Image/ExifTool/GeoLang/cs.pm +0 -978
  36. data/bin/lib/Image/ExifTool/GeoLang/de.pm +0 -1975
  37. data/bin/lib/Image/ExifTool/GeoLang/en_ca.pm +0 -44
  38. data/bin/lib/Image/ExifTool/GeoLang/en_gb.pm +0 -124
  39. data/bin/lib/Image/ExifTool/GeoLang/es.pm +0 -2921
  40. data/bin/lib/Image/ExifTool/GeoLang/fi.pm +0 -1116
  41. data/bin/lib/Image/ExifTool/GeoLang/fr.pm +0 -3171
  42. data/bin/lib/Image/ExifTool/GeoLang/it.pm +0 -2750
  43. data/bin/lib/Image/ExifTool/GeoLang/ja.pm +0 -10256
  44. data/bin/lib/Image/ExifTool/GeoLang/ko.pm +0 -4499
  45. data/bin/lib/Image/ExifTool/GeoLang/nl.pm +0 -1270
  46. data/bin/lib/Image/ExifTool/GeoLang/pl.pm +0 -3019
  47. data/bin/lib/Image/ExifTool/GeoLang/ru.pm +0 -18220
  48. data/bin/lib/Image/ExifTool/GeoLang/sk.pm +0 -441
  49. data/bin/lib/Image/ExifTool/GeoLang/sv.pm +0 -714
  50. data/bin/lib/Image/ExifTool/GeoLang/tr.pm +0 -452
  51. data/bin/lib/Image/ExifTool/GeoLang/zh_cn.pm +0 -2225
  52. data/bin/lib/Image/ExifTool/GeoLang/zh_tw.pm +0 -72
@@ -825,6 +825,12 @@ goes to the file specified by the TextOut option (\*STDOUT by default).
825
825
  Base for HTML dump offsets. If not defined, the EXIF/TIFF base offset is
826
826
  used. Set to 0 for absolute offsets. Default is undef.
827
827
 
828
+ =item IgnoreGroups
829
+
830
+ Comma-separated list of group names to ignore when reading. The group names
831
+ are case insensitive and may be preceeded by a family number. Set to undef
832
+ to clear the previous IgnoreGroups list. Default is undef.
833
+
828
834
  =item IgnoreMinorErrors
829
835
 
830
836
  Flag to ignore minor errors. Causes minor errors to be downgraded to
@@ -838,12 +844,12 @@ warnings are denoted by "[minor]" at the start of the message, or "[Minor]"
838
844
 
839
845
  =item IgnoreTags
840
846
 
841
- List of tag names to ignore when reading. This may help in situations where
842
- memory is limited because the ignored tag values are not stored in memory.
843
- The tag names are case insensitive and group names and wildcards are not
844
- allowed. A special tag name of "All" may be used to ignore all tags except
845
- those specified by the L</RequestTags> option. Set to undef to clear the
846
- previous IgnoreTags list. Default is undef.
847
+ Comma-separated list of tag names to ignore when reading. This may help in
848
+ situations where memory is limited because the ignored tag values are not
849
+ stored in memory. The tag names are case insensitive and group names and
850
+ wildcards are not allowed. A special tag name of "All" may be used to
851
+ ignore all tags except those specified by the L</RequestTags> option. Set
852
+ to undef to clear the previous IgnoreTags list. Default is undef.
847
853
 
848
854
  =item ImageHashType
849
855
 
@@ -954,6 +960,14 @@ by the value of the Charset option at processing time. Default is undef.
954
960
  Flag to enable automatic print conversion. Also enables inverse
955
961
  print conversion for writing. Default is 1.
956
962
 
963
+ =item PrintCSV
964
+
965
+ Flag to directly print CSV-format output rather than extracting tags
966
+ normally. Currently this feature applies only to GM PDR data (see
967
+ L<Image::ExifTool::TagNames/GM Tags>). Setting this option automatically
968
+ sets L</IgnoreTags> to "all", and L</ExtractEmbedded> to 1. Default is
969
+ undef.
970
+
957
971
  =item QuickTimeHandler
958
972
 
959
973
  Flag set to add an 'mdir' Handler to a newly created Meta box when adding
@@ -1004,8 +1018,7 @@ the list. Default is undef.
1004
1018
 
1005
1019
  Flag to save EXIF/TIFF format type as the family 6 group name when
1006
1020
  extracting information. Without this option set, the family 6 group names
1007
- are not generated. Default is undef. See the L</GetGroup> option for more
1008
- details.
1021
+ are not generated. Default is undef. See L</GetGroup> for more details.
1009
1022
 
1010
1023
  =item SavePath
1011
1024
 
@@ -1219,7 +1232,7 @@ L</ExtractInfo>:
1219
1232
 
1220
1233
  Binary, Charset, CharsetEXIF, CharsetFileName, CharsetID3, CharsetIPTC,
1221
1234
  CharsetPhotoshop, CharsetQuickTime, CharsetRIFF, Composite, ExtendedXMP,
1222
- ExtractEmbedded, FastScan, FixBase, HtmlDump, HtmlDumpBase,
1235
+ ExtractEmbedded, FastScan, FixBase, HtmlDump, HtmlDumpBase, IgnoreGroups,
1223
1236
  IgnoreMinorErrors, IgnoreTags, Lang, LargeFileSupport, MakerNotes,
1224
1237
  MDItemTags, NoPDFList, Password, QuickTimeUTC (enforced 1904 time zero),
1225
1238
  RequestAll, RequestTags, SaveFormat, SavePath, ScanForXMP, Struct, TextOut,
@@ -2479,14 +2492,14 @@ Here is a complete list of groups for each of these families:
2479
2492
  AAC, AFCP, AIFF, APE, APP0, APP1, APP11, APP12, APP13, APP14, APP15, APP2,
2480
2493
  APP3, APP4, APP5, APP6, APP7, APP8, APP9, ASF, Audible, Canon, CanonVRD,
2481
2494
  Composite, DICOM, DNG, DV, DjVu, Ducky, EXE, EXIF, ExifTool, FITS, FLAC,
2482
- FLIR, File, Flash, FlashPix, Font, FotoStation, GIF, GIMP, GeoTiff, GoPro,
2483
- H264, HTML, ICC_Profile, ID3, IPTC, ISO, ITC, JFIF, JPEG, JSON, JUMBF,
2484
- Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE, MIFF, MISB, MNG, MOI, MPC, MPEG, MPF,
2485
- MXF, MakerNotes, Matroska, Meta, Ogg, OpenEXR, Opus, PDF, PICT, PLIST, PNG,
2486
- PSP, Palm, PanasonicRaw, Parrot, PhotoCD, PhotoMechanic, Photoshop,
2487
- PostScript, PrintIM, QuickTime, RAF, RIFF, RSRC, RTF, Radiance, Rawzor,
2488
- Real, Red, SVG, SigmaRaw, Sony, Stim, Theora, Torrent, Trailer, VCard,
2489
- Vorbis, WTV, XML, XMP, ZIP
2495
+ FLIR, File, Flash, FlashPix, Font, FotoStation, GIF, GIMP, GM, GeoTiff,
2496
+ GoPro, H264, HTML, ICC_Profile, ID3, IPTC, ISO, ITC, JFIF, JPEG, JSON,
2497
+ JUMBF, Jpeg2000, LNK, Leaf, Lytro, M2TS, MIE, MIFF, MISB, MNG, MOI, MPC,
2498
+ MPEG, MPF, MXF, MakerNotes, Matroska, Meta, Ogg, OpenEXR, Opus, PDF, PICT,
2499
+ PLIST, PNG, PSP, Palm, PanasonicRaw, Parrot, PhotoCD, PhotoMechanic,
2500
+ Photoshop, PostScript, PrintIM, QuickTime, RAF, RIFF, RSRC, RTF, Radiance,
2501
+ Rawzor, Real, Red, SVG, SigmaRaw, Sony, Stim, Theora, Torrent, Trailer,
2502
+ VCard, Vorbis, WTV, XML, XMP, ZIP
2490
2503
 
2491
2504
  =item Family 1 (Specific Location):
2492
2505
 
@@ -2494,7 +2507,7 @@ AAC, AC3, AFCP, AIFF, APE, ASF, AVI1, Adobe, AdobeCM, AdobeDNG, Apple,
2494
2507
  Audible, CBOR, CIFF, CameraIFD, Canon, CanonCustom, CanonDR4, CanonRaw,
2495
2508
  CanonVRD, Casio, Chapter#, Composite, DICOM, DJI, DNG, DV, DjVu, DjVu-Meta,
2496
2509
  Ducky, EPPIM, EXE, EXIF, ExifIFD, ExifTool, FITS, FLAC, FLIR, File, Flash,
2497
- FlashPix, Font, FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GPS,
2510
+ FlashPix, Font, FotoStation, FujiFilm, FujiIFD, GE, GIF, GIMP, GM, GPS,
2498
2511
  GSpherical, Garmin, GeoTiff, GlobParamIFD, GoPro, GraphConv, H264, HP, HTC,
2499
2512
  HTML, HTML-dc, HTML-ncc, HTML-office, HTML-prod, HTML-vw96, HTTP-equiv,
2500
2513
  ICC-chrm, ICC-clrt, ICC-header, ICC-meas, ICC-meta, ICC-view, ICC_Profile,
@@ -1,6 +1,6 @@
1
1
  Summary: perl module for image data extraction
2
2
  Name: perl-Image-ExifTool
3
- Version: 12.81
3
+ Version: 12.83
4
4
  Release: 1
5
5
  License: Artistic/GPL
6
6
  Group: Development/Libraries/Perl
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ExiftoolVendored
4
- VERSION = Gem::Version.new('12.81.0')
4
+ VERSION = Gem::Version.new('12.83.0')
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exiftool_vendored
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.81.0
4
+ version: 12.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew McEachen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-03-29 00:00:00.000000000 Z
12
+ date: 2024-04-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: exiftool
@@ -50,6 +50,7 @@ files:
50
50
  - bin/arg_files/xmp2gps.args
51
51
  - bin/arg_files/xmp2iptc.args
52
52
  - bin/arg_files/xmp2pdf.args
53
+ - bin/build_geolocation
53
54
  - bin/config_files/acdsee.config
54
55
  - bin/config_files/age.config
55
56
  - bin/config_files/bibble.config
@@ -155,25 +156,8 @@ files:
155
156
  - bin/lib/Image/ExifTool/GE.pm
156
157
  - bin/lib/Image/ExifTool/GIF.pm
157
158
  - bin/lib/Image/ExifTool/GIMP.pm
159
+ - bin/lib/Image/ExifTool/GM.pm
158
160
  - bin/lib/Image/ExifTool/GPS.pm
159
- - bin/lib/Image/ExifTool/GeoLang/cs.pm
160
- - bin/lib/Image/ExifTool/GeoLang/de.pm
161
- - bin/lib/Image/ExifTool/GeoLang/en_ca.pm
162
- - bin/lib/Image/ExifTool/GeoLang/en_gb.pm
163
- - bin/lib/Image/ExifTool/GeoLang/es.pm
164
- - bin/lib/Image/ExifTool/GeoLang/fi.pm
165
- - bin/lib/Image/ExifTool/GeoLang/fr.pm
166
- - bin/lib/Image/ExifTool/GeoLang/it.pm
167
- - bin/lib/Image/ExifTool/GeoLang/ja.pm
168
- - bin/lib/Image/ExifTool/GeoLang/ko.pm
169
- - bin/lib/Image/ExifTool/GeoLang/nl.pm
170
- - bin/lib/Image/ExifTool/GeoLang/pl.pm
171
- - bin/lib/Image/ExifTool/GeoLang/ru.pm
172
- - bin/lib/Image/ExifTool/GeoLang/sk.pm
173
- - bin/lib/Image/ExifTool/GeoLang/sv.pm
174
- - bin/lib/Image/ExifTool/GeoLang/tr.pm
175
- - bin/lib/Image/ExifTool/GeoLang/zh_cn.pm
176
- - bin/lib/Image/ExifTool/GeoLang/zh_tw.pm
177
161
  - bin/lib/Image/ExifTool/GeoTiff.pm
178
162
  - bin/lib/Image/ExifTool/Geolocation.dat
179
163
  - bin/lib/Image/ExifTool/Geolocation.pm