exiftool-vendored.exe 12.73.0 → 12.78.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 (65) hide show
  1. package/bin/exiftool_files/Changes +94 -6
  2. package/bin/exiftool_files/README +46 -45
  3. package/bin/exiftool_files/config_files/example.config +10 -2
  4. package/bin/exiftool_files/exiftool.pl +138 -87
  5. package/bin/exiftool_files/lib/File/RandomAccess.pm +31 -5
  6. package/bin/exiftool_files/lib/File/RandomAccess.pod +4 -4
  7. package/bin/exiftool_files/lib/Image/ExifTool/7Z.pm +3 -3
  8. package/bin/exiftool_files/lib/Image/ExifTool/AFCP.pm +2 -2
  9. package/bin/exiftool_files/lib/Image/ExifTool/BZZ.pm +2 -2
  10. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +7 -7
  11. package/bin/exiftool_files/lib/Image/ExifTool/Canon.pm +17 -13
  12. package/bin/exiftool_files/lib/Image/ExifTool/CanonVRD.pm +8 -2
  13. package/bin/exiftool_files/lib/Image/ExifTool/DICOM.pm +2 -2
  14. package/bin/exiftool_files/lib/Image/ExifTool/DNG.pm +4 -4
  15. package/bin/exiftool_files/lib/Image/ExifTool/Exif.pm +54 -5
  16. package/bin/exiftool_files/lib/Image/ExifTool/FLIR.pm +2 -2
  17. package/bin/exiftool_files/lib/Image/ExifTool/Fixup.pm +3 -3
  18. package/bin/exiftool_files/lib/Image/ExifTool/FlashPix.pm +3 -3
  19. package/bin/exiftool_files/lib/Image/ExifTool/FujiFilm.pm +8 -3
  20. package/bin/exiftool_files/lib/Image/ExifTool/GPS.pm +5 -3
  21. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.dat +0 -0
  22. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.pm +237 -0
  23. package/bin/exiftool_files/lib/Image/ExifTool/Geotag.pm +4 -4
  24. package/bin/exiftool_files/lib/Image/ExifTool/HtmlDump.pm +7 -4
  25. package/bin/exiftool_files/lib/Image/ExifTool/ID3.pm +2 -2
  26. package/bin/exiftool_files/lib/Image/ExifTool/Import.pm +9 -6
  27. package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +11 -11
  28. package/bin/exiftool_files/lib/Image/ExifTool/Jpeg2000.pm +51 -12
  29. package/bin/exiftool_files/lib/Image/ExifTool/MIE.pm +3 -3
  30. package/bin/exiftool_files/lib/Image/ExifTool/MWG.pm +1 -0
  31. package/bin/exiftool_files/lib/Image/ExifTool/MacOS.pm +19 -4
  32. package/bin/exiftool_files/lib/Image/ExifTool/MinoltaRaw.pm +2 -2
  33. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +5 -3
  34. package/bin/exiftool_files/lib/Image/ExifTool/NikonCustom.pm +3 -3
  35. package/bin/exiftool_files/lib/Image/ExifTool/Ogg.pm +4 -3
  36. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +3 -1
  37. package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +59 -9
  38. package/bin/exiftool_files/lib/Image/ExifTool/PLIST.pm +3 -3
  39. package/bin/exiftool_files/lib/Image/ExifTool/PanasonicRaw.pm +3 -3
  40. package/bin/exiftool_files/lib/Image/ExifTool/Pentax.pm +1 -1
  41. package/bin/exiftool_files/lib/Image/ExifTool/PhaseOne.pm +2 -2
  42. package/bin/exiftool_files/lib/Image/ExifTool/Photoshop.pm +3 -3
  43. package/bin/exiftool_files/lib/Image/ExifTool/PostScript.pm +2 -2
  44. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +223 -117
  45. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +260 -242
  46. package/bin/exiftool_files/lib/Image/ExifTool/RSRC.pm +2 -2
  47. package/bin/exiftool_files/lib/Image/ExifTool/Samsung.pm +4 -4
  48. package/bin/exiftool_files/lib/Image/ExifTool/Shift.pl +1 -2
  49. package/bin/exiftool_files/lib/Image/ExifTool/SigmaRaw.pm +3 -3
  50. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +3 -3
  51. package/bin/exiftool_files/lib/Image/ExifTool/TagInfoXML.pm +2 -2
  52. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +85 -8
  53. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +148 -8
  54. package/bin/exiftool_files/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
  55. package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +26 -23
  56. package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -1
  57. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +15 -2
  58. package/bin/exiftool_files/lib/Image/ExifTool/WriteXMP.pl +4 -2
  59. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +77 -52
  60. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +2 -1
  61. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +9 -0
  62. package/bin/exiftool_files/lib/Image/ExifTool/ZIP.pm +6 -6
  63. package/bin/exiftool_files/lib/Image/ExifTool.pm +204 -63
  64. package/bin/exiftool_files/lib/Image/ExifTool.pod +118 -94
  65. package/package.json +5 -5
@@ -4,9 +4,96 @@ ExifTool Version History
4
4
 
5
5
  RSS feed: https://exiftool.org/rss.xml
6
6
 
7
- Note: The most recent production release is Version 12.70. (Other versions are
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
+ Mar. 5, 2024 - Version 12.78 - "Geolocation"
11
+
12
+ - Added new Geolocation feature and write-only Geolocate tag
13
+ - Added new config file entry (@Image::ExifTool::UserDefined::Arguments) to
14
+ allow default command-line arguments to be specified
15
+ - Added print conversion for TIFF-EPStandardID
16
+ - Added ability to delete Nextbase information from MP4 videos
17
+ - Decode timed GPS from MP4 videos written by Nextbase software
18
+ - Decode a number of new tags from Nextbase MP4 videos
19
+ - Decode a few new tags from Garmin MP4 videos
20
+ - Extract PreviewJXL images from DNG 1.7 files
21
+ - Generate Validate, ImageDataHash and UserParam tags earlier to allow them to
22
+ be used in UserDefined Composite tags
23
+ - Enhanced the -c option so a minus sign in the format specification prints a
24
+ signed coordinate without a leading "+" for positive numbers
25
+ - Changed formatting of some Accelerometer tags for consistency
26
+ - Changed behaviour of -ee3 option to do a brute-force scan for freeGPS in the
27
+ media data even when referenced by 'gps ' atom
28
+ - Other internal changes to decoding of timed GPS from videos
29
+ - Fixed problem were ExifTool would give up on extracting some types of timed
30
+ GPS from videos after 100 void fixes
31
+ - Fixed bug that could cause runtime error when reading Ogg files
32
+ - Fixed issue where some tags from alternate files using the -fileNUM option
33
+ weren't generated as requested
34
+ - API Changes:
35
+ - Added Geolocation,
36
+ GeolocMaxDist and
37
+ GeolocMinPop API options
38
+
39
+ Feb. 16, 2024 - Version 12.77
40
+
41
+ - Added new Olympus CameraType and LensType value (thanks herb)
42
+ - Added a new Canon Irix LensType
43
+ - Added the ability to delete MacOS XAttrMDItemWhereFroms
44
+ - Decode a few new Canon DPP tags (thanks John Moyer)
45
+ - Decode timed GPS from Adzome GS65H MOV videos
46
+ - Improved handling of XML-unfriendly characters in JSON field names (fixes
47
+ issue where -X option could produce invalid XML when reading JSON with the
48
+ -struct option)
49
+ - Fixed decoding of ShutterCount for Canon G5X-ii CR3 files
50
+
51
+ Jan. 31, 2024 - Version 12.76 (production release)
52
+
53
+ - Properly implement patch of 12.45 to avoid duplicating raw data when writing
54
+ Sony ARW images where the raw data is double-referenced as both strips and
55
+ tiles
56
+ - Improved handling of bad offsets in HtmlDump output
57
+
58
+ Jan. 30, 2024 - Version 12.75 (production release)
59
+
60
+ - CORRUPTION WARNING: Fixed bug introduced in 12.45 which could result in
61
+ corrupted Sony ARW images from some newer models when rewriting lossless
62
+ compressed ARW images which were previously edited by 12.44 or earlier
63
+ (the corruption is repairable, but requires a special version of ExifTool)
64
+ - Added ability to read C2PA JUMBF metadata from PDF and SVG files
65
+ - Added ability to extract JUMBF metadata as a block
66
+ - Added read support for C2PA (JUMBF-format) files
67
+ - Removed "date before 1970" warning entirely since 64-bit systems should be
68
+ able to handle dates in this range
69
+ - Improved Canon FocusMode decoding
70
+ - Fixed bug introducd in 12.74 which could cause "Undefined subroutine"
71
+ runtime error when reading MIE files
72
+
73
+ Jan. 23, 2024 - Version 12.74
74
+
75
+ - Added a couple of new Nikon lenses (thanks Chris)
76
+ - Added write support for a few new QuickTime Keys tags
77
+ - Decode ShutterCount for Canon EOS R5 (thanks John Moyer)
78
+ - Improved error messages in the case of file read errors
79
+ - Enhanced tag name strings (eg. -if and -p option arguments) to allow values
80
+ of multiple matching tags to be concatenated when a group name of "All" is
81
+ specified
82
+ - Enhanced -p option to add -p- feature which avoids adding trailing newline
83
+ - Changed warning from "Shift results in negative time" to "Shift results in
84
+ date before 1970"
85
+ - Patched calculation of GPSDateTime for the timed metadata in Track3 of
86
+ Garmin videos so the API QuickTimeUTC option is no longer required
87
+ - Fixed conversion error when writing QuickTime:GoogleTrackDuration
88
+ - Fixed misidentification of non-TIFF-format files containing DNGVersion tag
89
+ - Fixed bug where Avoid-ed XMP structures could be created when writing
90
+ another same-named structure
91
+ - Internal Changes:
92
+ - Changed form of all new() calls to accommodate backward
93
+ incompatibilities in recent versions of Perl
94
+ - Changed order of InsertTagValues() arguments
95
+ - DateFmt() now returns value of formatted date/time string
96
+
10
97
  Jan. 10, 2024 - Version 12.73
11
98
 
12
99
  - Added write support for Leica XMP-xmpDSA tags
@@ -22,7 +109,8 @@ Jan. 10, 2024 - Version 12.73
22
109
  decoding
23
110
  - Fixed writing of date/time tags in XMP-xmpMM:Pantry structure
24
111
  - API Changes:
25
- - Added LimitLongValues option
112
+ - Added LimitLongValues option to provide control over tags which
113
+ previously had a hard-coded length limit
26
114
 
27
115
  Dec. 29, 2023 - Version 12.72
28
116
 
@@ -501,7 +589,7 @@ Oct. 13, 2022 - Version 12.48
501
589
  "Z" are actually in Zulu time -- a bit of a mess really)
502
590
  - Prevent dynamically-generated Unknown tags from being extracted when the
503
591
  -validate option is used without -u
504
- - Patched to better handle irregular timestamps in streaming GPS of NextBase
592
+ - Patched to better handle irregular timestamps in streaming GPS of Nextbase
505
593
  dashcam videos
506
594
  - Fixed incompatibility with Sigma Photo Pro which could result in Sigma Photo
507
595
  Pro corrupting an ExifTool-edited X3F image (the section length in the
@@ -1373,7 +1461,7 @@ Mar. 19, 2020 - Version 11.92
1373
1461
  - Added a new Nikon LensID (thanks Wolfgang Exler)
1374
1462
  - Decode a few new Leica tags (thanks Tim Gray)
1375
1463
  - Decode AccelerometerData from Samsung Gear 360 videos
1376
- - Fixed a couple of problems decoding timed GPS metadata from NextBase dashcam
1464
+ - Fixed a couple of problems decoding timed GPS metadata from Nextbase dashcam
1377
1465
  videos
1378
1466
  - Fixed problem where -X option could produce invalid XML when reading
1379
1467
  corrupted XMP
@@ -2262,7 +2350,7 @@ Oct. 16, 2018 - Version 11.14
2262
2350
 
2263
2351
  Oct. 9, 2018 - Version 11.13
2264
2352
 
2265
- - Decode GPS from NextBase 512G dashcam MOV videos (different than 512GW)
2353
+ - Decode GPS from Nextbase 512G dashcam MOV videos (different than 512GW)
2266
2354
  - Added a new Canon LensType (thanks LibRaw)
2267
2355
  - Minor improvements to verbose dump of streaming GPS metadata
2268
2356
  - Reverted change of version 10.71 which resulted in Windows not recognizing
@@ -2281,7 +2369,7 @@ Oct. 2, 2018 - Version 11.12
2281
2369
  - Added a new Sony/Minolta LensType (thanks LibRaw and Jos Roost)
2282
2370
  - Added a new Nikon LensID
2283
2371
  - Decode a few new Sony SRF2 tags (thanks LibRaw)
2284
- - Decode GPS from NextBase 512GW dashcam MOV videos
2372
+ - Decode GPS from Nextbase 512GW dashcam MOV videos
2285
2373
  - Validate MS-DOC FIB before extracting contained tags
2286
2374
  - Fixed bug extracting GPSSpeed for some dashcam models
2287
2375
 
@@ -14,49 +14,50 @@ supported by ExifTool (r = read, w = write, c = create):
14
14
 
15
15
  File Types
16
16
  ------------+-------------+-------------+-------------+------------
17
- 360 r/w | DOCX r | ISO r | NRW r/w | RAR r
18
- 3FR r | DPX r | ITC r | NUMBERS r | RAW r/w
19
- 3G2 r/w | DR4 r/w/c | J2C r | O r | RIFF r
20
- 3GP r/w | DSS r | JNG r/w | ODP r | RSRC r
21
- 7Z r | DV r | JP2 r/w | ODS r | RTF r
22
- A r | DVB r/w | JPEG r/w | ODT r | RW2 r/w
23
- AA r | DVR-MS r | JSON r | OFR r | RWL r/w
24
- AAC r | DYLIB r | JXL r | OGG r | RWZ r
25
- AAE r | EIP r | K25 r | OGV r | RM r
26
- AAX r/w | EPS r/w | KDC r | ONP r | SEQ r
27
- ACR r | EPUB r | KEY r | OPUS r | SKETCH r
28
- AFM r | ERF r/w | LA r | ORF r/w | SO r
29
- AI r/w | EXE r | LFP r | ORI r/w | SR2 r/w
30
- AIFF r | EXIF r/w/c | LIF r | OTF r | SRF r
31
- APE r | EXR r | LNK r | PAC r | SRW r/w
32
- ARQ r/w | EXV r/w/c | LRV r/w | PAGES r | SVG r
33
- ARW r/w | F4A/V r/w | M2TS r | PBM r/w | SWF r
34
- ASF r | FFF r/w | M4A/V r/w | PCD r | THM r/w
35
- AVI r | FITS r | MACOS r | PCX r | TIFF r/w
36
- AVIF r/w | FLA r | MAX r | PDB r | TORRENT r
37
- AZW r | FLAC r | MEF r/w | PDF r/w | TTC r
38
- BMP r | FLIF r/w | MIE r/w/c | PEF r/w | TTF r
39
- BPG r | FLV r | MIFF r | PFA r | TXT r
40
- BTF r | FPF r | MKA r | PFB r | VCF r
41
- CHM r | FPX r | MKS r | PFM r | VNT r
42
- COS r | GIF r/w | MKV r | PGF r | VRD r/w/c
43
- CR2 r/w | GLV r/w | MNG r/w | PGM r/w | VSD r
44
- CR3 r/w | GPR r/w | MOBI r | PLIST r | WAV r
45
- CRM r/w | GZ r | MODD r | PICT r | WDP r/w
46
- CRW r/w | HDP r/w | MOI r | PMP r | WEBP r/w
47
- CS1 r/w | HDR r | MOS r/w | PNG r/w | WEBM r
48
- CSV r | HEIC r/w | MOV r/w | PPM r/w | WMA r
49
- CUR r | HEIF r/w | MP3 r | PPT r | WMV r
50
- CZI r | HTML r | MP4 r/w | PPTX r | WPG r
51
- DCM r | ICC r/w/c | MPC r | PS r/w | WTV r
52
- DCP r/w | ICO r | MPG r | PSB r/w | WV r
53
- DCR r | ICS r | MPO r/w | PSD r/w | X3F r/w
54
- DFONT r | IDML r | MQV r/w | PSP r | XCF r
55
- DIVX r | IIQ r/w | MRC r | QTIF r/w | XISF r
56
- DJVU r | IND r/w | MRW r/w | R3D r | XLS r
57
- DLL r | INSP r/w | MXF r | RA r | XLSX r
58
- DNG r/w | INSV r | NEF r/w | RAF r/w | XMP r/w/c
59
- DOC r | INX r | NKSC r/w | RAM r | ZIP r
17
+ 360 r/w | DOCX r | ITC r | O r | RSRC r
18
+ 3FR r | DPX r | J2C r | ODP r | RTF r
19
+ 3G2 r/w | DR4 r/w/c | JNG r/w | ODS r | RW2 r/w
20
+ 3GP r/w | DSS r | JP2 r/w | ODT r | RWL r/w
21
+ 7Z r | DV r | JPEG r/w | OFR r | RWZ r
22
+ A r | DVB r/w | JSON r | OGG r | RM r
23
+ AA r | DVR-MS r | JXL r/w | OGV r | SEQ r
24
+ AAC r | DYLIB r | K25 r | ONP r | SKETCH r
25
+ AAE r | EIP r | KDC r | OPUS r | SO r
26
+ AAX r/w | EPS r/w | KEY r | ORF r/w | SR2 r/w
27
+ ACR r | EPUB r | LA r | ORI r/w | SRF r
28
+ AFM r | ERF r/w | LFP r | OTF r | SRW r/w
29
+ AI r/w | EXE r | LIF r | PAC r | SVG r
30
+ AIFF r | EXIF r/w/c | LNK r | PAGES r | SWF r
31
+ APE r | EXR r | LRV r/w | PBM r/w | THM r/w
32
+ ARQ r/w | EXV r/w/c | M2TS r | PCD r | TIFF r/w
33
+ ARW r/w | F4A/V r/w | M4A/V r/w | PCX r | TORRENT r
34
+ ASF r | FFF r/w | MACOS r | PDB r | TTC r
35
+ AVI r | FITS r | MAX r | PDF r/w | TTF r
36
+ AVIF r/w | FLA r | MEF r/w | PEF r/w | TXT r
37
+ AZW r | FLAC r | MIE r/w/c | PFA r | VCF r
38
+ BMP r | FLIF r/w | MIFF r | PFB r | VNT r
39
+ BPG r | FLV r | MKA r | PFM r | VRD r/w/c
40
+ BTF r | FPF r | MKS r | PGF r | VSD r
41
+ C2PA r | FPX r | MKV r | PGM r/w | WAV r
42
+ CHM r | GIF r/w | MNG r/w | PLIST r | WDP r/w
43
+ COS r | GLV r/w | MOBI r | PICT r | WEBP r/w
44
+ CR2 r/w | GPR r/w | MODD r | PMP r | WEBM r
45
+ CR3 r/w | GZ r | MOI r | PNG r/w | WMA r
46
+ CRM r/w | HDP r/w | MOS r/w | PPM r/w | WMV r
47
+ CRW r/w | HDR r | MOV r/w | PPT r | WPG r
48
+ CS1 r/w | HEIC r/w | MP3 r | PPTX r | WTV r
49
+ CSV r | HEIF r/w | MP4 r/w | PS r/w | WV r
50
+ CUR r | HTML r | MPC r | PSB r/w | X3F r/w
51
+ CZI r | ICC r/w/c | MPG r | PSD r/w | XCF r
52
+ DCM r | ICO r | MPO r/w | PSP r | XISF r
53
+ DCP r/w | ICS r | MQV r/w | QTIF r/w | XLS r
54
+ DCR r | IDML r | MRC r | R3D r | XLSX r
55
+ DFONT r | IIQ r/w | MRW r/w | RA r | XMP r/w/c
56
+ DIVX r | IND r/w | MXF r | RAF r/w | ZIP r
57
+ DJVU r | INSP r/w | NEF r/w | RAM r |
58
+ DLL r | INSV r | NKSC r/w | RAR r |
59
+ DNG r/w | INX r | NRW r/w | RAW r/w |
60
+ DOC r | ISO r | NUMBERS r | RIFF r |
60
61
 
61
62
  Meta Information
62
63
  ----------------------+----------------------+---------------------
@@ -108,8 +109,8 @@ your home directory, then you would type the following commands in a
108
109
  terminal window to extract and run ExifTool:
109
110
 
110
111
  cd ~/Desktop
111
- gzip -dc Image-ExifTool-12.73.tar.gz | tar -xf -
112
- cd Image-ExifTool-12.73
112
+ gzip -dc Image-ExifTool-12.78.tar.gz | tar -xf -
113
+ cd Image-ExifTool-12.78
113
114
  ./exiftool t/images/ExifTool.jpg
114
115
 
115
116
  Note: These commands extract meta information from one of the test images.
@@ -6,7 +6,8 @@
6
6
  # Notes: This example file shows how to define your own shortcuts and
7
7
  # add new EXIF, IPTC, XMP, PNG, MIE and Composite tags, as well
8
8
  # as how to specify preferred lenses for the LensID tag, and
9
- # define new file types and default ExifTool option values.
9
+ # define new file types and default ExifTool API options and
10
+ # command-line arguments.
10
11
  #
11
12
  # Note that unknown tags may be extracted even if they aren't
12
13
  # defined, but tags must be defined to be written. Also note
@@ -345,7 +346,7 @@ use Image::ExifTool::MIE;
345
346
  use Image::ExifTool::QuickTime;
346
347
  $Image::ExifTool::QuickTime::Keys{PREFERRED} = 3;
347
348
 
348
- # Specify default ExifTool option values
349
+ # Specify default ExifTool API options
349
350
  # (see the Options function documentation for available options)
350
351
  %Image::ExifTool::UserDefined::Options = (
351
352
  CoordFormat => '%.6f', # change default GPS coordinate format
@@ -354,5 +355,12 @@ $Image::ExifTool::QuickTime::Keys{PREFERRED} = 3;
354
355
  RequestAll => 3, # request additional tags not normally generated
355
356
  );
356
357
 
358
+ # Specify default exiftool command-line arguments
359
+ # - inserted before all other options except -config
360
+ # - applies to all -execute'd commands
361
+ @Image::ExifTool::UserDefined::Arguments = (
362
+ '-i', 'HIDDEN', # ignore hidden files by default (names beginning with ".")
363
+ );
364
+
357
365
  #------------------------------------------------------------------------------
358
366
  1; #end