exiftool-vendored.pl 13.30.0 → 13.31.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.
- package/bin/Changes +19 -0
- package/bin/META.json +2 -2
- package/bin/META.yml +2 -2
- package/bin/README +2 -2
- package/bin/exiftool +9 -6
- package/bin/lib/Image/ExifTool/Canon.pm +7 -4
- package/bin/lib/Image/ExifTool/Exif.pm +3 -2
- package/bin/lib/Image/ExifTool/FujiFilm.pm +3 -0
- package/bin/lib/Image/ExifTool/GoPro.pm +10 -3
- package/bin/lib/Image/ExifTool/LNK.pm +21 -3
- package/bin/lib/Image/ExifTool/Lang/de.pm +2 -1
- package/bin/lib/Image/ExifTool/Lang/fr.pm +2 -1
- package/bin/lib/Image/ExifTool/LigoGPS.pm +14 -6
- package/bin/lib/Image/ExifTool/Nikon.pm +10 -3
- package/bin/lib/Image/ExifTool/PDF.pm +1 -0
- package/bin/lib/Image/ExifTool/Panasonic.pm +1 -1
- package/bin/lib/Image/ExifTool/Parrot.pm +1 -1
- package/bin/lib/Image/ExifTool/Pentax.pm +6 -4
- package/bin/lib/Image/ExifTool/Plot.pm +2 -3
- package/bin/lib/Image/ExifTool/QuickTime.pm +3 -2
- package/bin/lib/Image/ExifTool/QuickTimeStream.pl +41 -17
- package/bin/lib/Image/ExifTool/Sigma.pm +19 -1
- package/bin/lib/Image/ExifTool/TagLookup.pm +5 -2
- package/bin/lib/Image/ExifTool/TagNames.pod +11 -6
- package/bin/lib/Image/ExifTool/WritePDF.pl +1 -0
- package/bin/lib/Image/ExifTool/Writer.pl +127 -128
- package/bin/lib/Image/ExifTool.pm +6 -4
- package/bin/perl-Image-ExifTool.spec +1 -1
- package/bin/windows_exiftool.txt +12 -9
- package/package.json +9 -4
package/bin/windows_exiftool.txt
CHANGED
|
@@ -611,11 +611,13 @@ OPTIONS
|
|
|
611
611
|
useful for some text strings since control characters (such as
|
|
612
612
|
newlines) are not replaced by '.' as they are in the default
|
|
613
613
|
output. By default, list items are separated by a newline when
|
|
614
|
-
extracted with the -b option
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
614
|
+
extracted with the -b option and no terminator is added after each
|
|
615
|
+
tag value, but the list separator may be changed with a -sep option
|
|
616
|
+
and a terminator may be set by adding a second -sep option (see the
|
|
617
|
+
-sep option for details). May be combined with -j, -php or -X to
|
|
618
|
+
extract binary data in JSON, PHP or XML format, but note that
|
|
619
|
+
"Unsafe" tags are not extracted as binary unless they are specified
|
|
620
|
+
explicitly or the API RequestAll option is set to 3 or higher.
|
|
619
621
|
|
|
620
622
|
With a leading double dash (--b or --binary), tags which contain
|
|
621
623
|
binary data are suppressed in the output when reading.
|
|
@@ -1079,7 +1081,7 @@ OPTIONS
|
|
|
1079
1081
|
|
|
1080
1082
|
produces output like this:
|
|
1081
1083
|
|
|
1082
|
-
-- Generated by ExifTool 13.
|
|
1084
|
+
-- Generated by ExifTool 13.31 --
|
|
1083
1085
|
File: a.jpg - 2003:10:31 15:44:19
|
|
1084
1086
|
(f/5.6, 1/60s, ISO 100)
|
|
1085
1087
|
File: b.jpg - 2006:05:23 11:57:38
|
|
@@ -1895,9 +1897,10 @@ OPTIONS
|
|
|
1895
1897
|
with -listf, -listr or -listwf to add file descriptions to the
|
|
1896
1898
|
list. The -lang option may be combined with -listx to output
|
|
1897
1899
|
descriptions in a single language, and the -sort and/or -lang
|
|
1898
|
-
options may be combined with -listgeo
|
|
1899
|
-
|
|
1900
|
-
|
|
1900
|
+
options may be combined with -listgeo (installation of the
|
|
1901
|
+
alternate database is required for the additional languages). Also,
|
|
1902
|
+
the API GeolocMinPop, GeolocFeature and GeolocAltNames options
|
|
1903
|
+
apply to the -listgeo output. Here are some examples:
|
|
1901
1904
|
|
|
1902
1905
|
-list # list all tag names
|
|
1903
1906
|
-list -EXIF:All # list all EXIF tags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored.pl",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.31.0",
|
|
4
4
|
"description": "Vendored perl ExifTool for Node.js",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",
|
|
@@ -30,7 +30,11 @@
|
|
|
30
30
|
"scripts": {
|
|
31
31
|
"prettier": "prettier --write test/*.js",
|
|
32
32
|
"test": "mocha",
|
|
33
|
-
"update
|
|
33
|
+
"update": "run-p update:*",
|
|
34
|
+
"update:deps": "ncu -u",
|
|
35
|
+
"update:exiftool": "bash -c ./update-exiftool.sh",
|
|
36
|
+
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/cmd/pinact@latest",
|
|
37
|
+
"update:actions": "pinact run -u",
|
|
34
38
|
"release": "release-it"
|
|
35
39
|
},
|
|
36
40
|
"release-it": {
|
|
@@ -47,8 +51,9 @@
|
|
|
47
51
|
}
|
|
48
52
|
},
|
|
49
53
|
"devDependencies": {
|
|
50
|
-
"mocha": "^11.
|
|
54
|
+
"mocha": "^11.7.0",
|
|
55
|
+
"npm-run-all": "4.1.5",
|
|
51
56
|
"prettier": "^3.5.3",
|
|
52
|
-
"release-it": "^19.0.
|
|
57
|
+
"release-it": "^19.0.3"
|
|
53
58
|
}
|
|
54
59
|
}
|