exiftool-vendored 15.10.1 → 15.12.1
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/CHANGELOG.md +25 -0
- package/dist/ExifTool.d.ts +16 -6
- package/dist/ExifTool.js +2 -0
- package/dist/ExifTool.js.map +1 -1
- package/dist/Tags.d.ts +69 -55
- package/package.json +28 -17
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,31 @@ vendored versions of ExifTool match the version they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
+
### v15.12.1
|
|
29
|
+
|
|
30
|
+
- 📦 Updated dependencies (batch-cluster
|
|
31
|
+
[v10.3.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1030)),
|
|
32
|
+
including more pessimistic defaults for `streamFlushMillis` and new
|
|
33
|
+
`noTaskData` event.
|
|
34
|
+
|
|
35
|
+
- 📦 Exported type signatures, `AdditionalWriteTags`, `ExpandedDateTags`,
|
|
36
|
+
`Maybe`, `Omit`, and `Struct` to improve `typedoc`-generated documentation.
|
|
37
|
+
Rebuilt docs.
|
|
38
|
+
|
|
39
|
+
### v15.12.0
|
|
40
|
+
|
|
41
|
+
- 📦 We now verify external `exiftool`s are healthy with a `-ver` ping every 30 seconds.
|
|
42
|
+
|
|
43
|
+
- 📦 Updated dependencies (batch-cluster [v10.2.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1020)) that includes this [performance improvement/bugfix](https://github.com/photostructure/batch-cluster.js/issues/15)
|
|
44
|
+
|
|
45
|
+
### v15.11.0
|
|
46
|
+
|
|
47
|
+
- 🌱 ExifTool upgraded to [v12.40](https://exiftool.org/history.html#v12.40).
|
|
48
|
+
|
|
49
|
+
- 📦 Updated dependencies (batch-cluster [v10.0.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1000))
|
|
50
|
+
|
|
51
|
+
- 📦 Rebuild `Tags.ts` and docs
|
|
52
|
+
|
|
28
53
|
### v15.10.1
|
|
29
54
|
|
|
30
55
|
- 📦 Updated dependencies (batch-cluster v8.1.0)
|
package/dist/ExifTool.d.ts
CHANGED
|
@@ -3,7 +3,9 @@ import * as bc from "batch-cluster";
|
|
|
3
3
|
import { ExifDate } from "./ExifDate";
|
|
4
4
|
import { ExifDateTime } from "./ExifDateTime";
|
|
5
5
|
import { ExifToolTask } from "./ExifToolTask";
|
|
6
|
+
import { Maybe } from "./Maybe";
|
|
6
7
|
import { PreviewTag } from "./PreviewTag";
|
|
8
|
+
import { Struct } from "./Struct";
|
|
7
9
|
import { Tags } from "./Tags";
|
|
8
10
|
export { ExifDate } from "./ExifDate";
|
|
9
11
|
export { ExifDateTime } from "./ExifDateTime";
|
|
@@ -11,7 +13,7 @@ export { ExifTime } from "./ExifTime";
|
|
|
11
13
|
export { ExifToolTask } from "./ExifToolTask";
|
|
12
14
|
export { parseJSON } from "./JSON";
|
|
13
15
|
export { offsetMinutesToZoneName, UnsetZone, UnsetZoneName, UnsetZoneOffsetMinutes, } from "./Timezones";
|
|
14
|
-
export type { Tags };
|
|
16
|
+
export type { AdditionalWriteTags, ExpandedDateTags, Maybe, Omit, Struct, Tags };
|
|
15
17
|
export declare const DefaultExifToolPath: string;
|
|
16
18
|
export declare const DefaultExiftoolArgs: string[];
|
|
17
19
|
/**
|
|
@@ -320,16 +322,24 @@ export declare class ExifTool {
|
|
|
320
322
|
* @return report why child processes were recycled
|
|
321
323
|
*/
|
|
322
324
|
childEndCounts(): {
|
|
323
|
-
|
|
324
|
-
ending: number;
|
|
325
|
-
unhealthy: number;
|
|
325
|
+
broken: number;
|
|
326
326
|
closed: number;
|
|
327
|
-
|
|
327
|
+
ending: number;
|
|
328
|
+
ended: number;
|
|
328
329
|
idle: number;
|
|
329
|
-
broken: number;
|
|
330
330
|
old: number;
|
|
331
|
+
"proc.close": number;
|
|
332
|
+
"proc.disconnect": number;
|
|
333
|
+
"proc.error": number;
|
|
334
|
+
"proc.exit": number;
|
|
335
|
+
"stderr.error": number;
|
|
336
|
+
stderr: number;
|
|
337
|
+
"stdin.error": number;
|
|
338
|
+
"stdout.error": number;
|
|
331
339
|
timeout: number;
|
|
332
340
|
tooMany: number;
|
|
341
|
+
unhealthy: number;
|
|
342
|
+
worn: number;
|
|
333
343
|
};
|
|
334
344
|
}
|
|
335
345
|
/**
|
package/dist/ExifTool.js
CHANGED
|
@@ -100,6 +100,8 @@ exports.DefaultExifToolOptions = Object.freeze({
|
|
|
100
100
|
fail: "{ready}",
|
|
101
101
|
exitCommand: "-stay_open\nFalse\n",
|
|
102
102
|
versionCommand: new VersionTask_1.VersionTask().command,
|
|
103
|
+
healthCheckIntervalMillis: 30000,
|
|
104
|
+
healthCheckCommand: "-ver\n-execute\n",
|
|
103
105
|
numericTags: [
|
|
104
106
|
"*Duration*",
|
|
105
107
|
"GPSAltitude",
|
package/dist/ExifTool.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExifTool.js","sourceRoot":"","sources":["../src/ExifTool.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAmC;AACnC,mDAAoC;AACpC,wCAAyB;AACzB,wCAAyB;AACzB,4CAA6B;AAC7B,4CAA6B;AAC7B,6CAA4C;AAC5C,iEAA6D;AAC7D,6DAAyD;AACzD,2DAAuD;AAIvD,iCAA6B;
|
|
1
|
+
{"version":3,"file":"ExifTool.js","sourceRoot":"","sources":["../src/ExifTool.ts"],"names":[],"mappings":"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"}
|
package/dist/Tags.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { Struct } from "./Struct";
|
|
|
7
7
|
export interface ExifToolTags {
|
|
8
8
|
/** ☆☆☆☆ ✔ Example: "File is empty" */
|
|
9
9
|
Error?: string;
|
|
10
|
-
/** ★★★★ ✔ Example: 12.
|
|
10
|
+
/** ★★★★ ✔ Example: 12.4 */
|
|
11
11
|
ExifToolVersion?: number;
|
|
12
12
|
/** ☆☆☆☆ ✔ Example: "Unrecognized IPTC record 0 (ignored)" */
|
|
13
13
|
Warning?: string;
|
|
@@ -33,11 +33,11 @@ export interface FileTags {
|
|
|
33
33
|
EncodingProcess?: string;
|
|
34
34
|
/** ★★★★ ✔ Example: "Little-endian (Intel, II)" */
|
|
35
35
|
ExifByteOrder?: string;
|
|
36
|
-
/** ★★★★ ✔ Example:
|
|
36
|
+
/** ★★★★ ✔ Example: 2022-02-24T22:06:50.000-08:00 */
|
|
37
37
|
FileAccessDate?: ExifDateTime | string;
|
|
38
|
-
/** ★★★★ ✔ Example:
|
|
38
|
+
/** ★★★★ ✔ Example: 2022-02-22T22:04:12.000-08:00 */
|
|
39
39
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
40
|
-
/** ★★★★ ✔ Example:
|
|
40
|
+
/** ★★★★ ✔ Example: 2022-01-04T09:34:09.000-08:00 */
|
|
41
41
|
FileModifyDate?: ExifDateTime | string;
|
|
42
42
|
/** ★★★★ ✔ Example: "utc+8_oly.jpg" */
|
|
43
43
|
FileName?: string;
|
|
@@ -93,7 +93,7 @@ export interface CompositeTags {
|
|
|
93
93
|
DOF?: string;
|
|
94
94
|
/** ☆☆☆☆ Example: 2006-12-19 */
|
|
95
95
|
DateCreated?: ExifDate | string;
|
|
96
|
-
/** ☆☆☆☆ ✔ Example:
|
|
96
|
+
/** ☆☆☆☆ ✔ Example: undefined */
|
|
97
97
|
DateTimeCreated?: ExifDateTime | string;
|
|
98
98
|
/** ☆☆☆☆ ✔ Example: 2017-02-20T18:06:40.000Z */
|
|
99
99
|
DateTimeOriginal?: ExifDateTime | string;
|
|
@@ -123,6 +123,8 @@ export interface CompositeTags {
|
|
|
123
123
|
FocusDistance2?: string;
|
|
124
124
|
/** ☆☆☆☆ ✔ Example: 99.8 */
|
|
125
125
|
GPSAltitude?: number;
|
|
126
|
+
/** ☆☆☆☆ Example: "Above Sea Level" */
|
|
127
|
+
GPSAltitudeRef?: string;
|
|
126
128
|
/** ☆☆☆☆ ✔ Example: 2020-10-23T09:27:26.000Z */
|
|
127
129
|
GPSDateTime?: ExifDateTime | string;
|
|
128
130
|
/** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
|
|
@@ -183,13 +185,13 @@ export interface CompositeTags {
|
|
|
183
185
|
ShootingMode?: string;
|
|
184
186
|
/** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
|
|
185
187
|
ShutterCurtainHack?: string;
|
|
186
|
-
/** ★★★★ ✔ Example: "
|
|
188
|
+
/** ★★★★ ✔ Example: "inf" */
|
|
187
189
|
ShutterSpeed?: string;
|
|
188
|
-
/** ★☆☆☆ ✔ Example:
|
|
190
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
189
191
|
SubSecCreateDate?: ExifDateTime | string;
|
|
190
|
-
/** ★☆☆☆ ✔ Example:
|
|
192
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
191
193
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
192
|
-
/** ★☆☆☆ ✔ Example:
|
|
194
|
+
/** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
|
|
193
195
|
SubSecModifyDate?: ExifDateTime | string;
|
|
194
196
|
}
|
|
195
197
|
export interface APP1Tags {
|
|
@@ -235,6 +237,10 @@ export interface APP1Tags {
|
|
|
235
237
|
FrameRate?: number;
|
|
236
238
|
/** ☆☆☆☆ Example: 1.9 */
|
|
237
239
|
GPSDOP?: number;
|
|
240
|
+
/** ☆☆☆☆ Example: 94 */
|
|
241
|
+
GPSImgDirection?: number;
|
|
242
|
+
/** ☆☆☆☆ Example: "Magnetic North" */
|
|
243
|
+
GPSImgDirectionRef?: string;
|
|
238
244
|
/** ☆☆☆☆ Example: "WGS84" */
|
|
239
245
|
GPSMapDatum?: string;
|
|
240
246
|
/** ☆☆☆☆ Example: "Yes" */
|
|
@@ -595,8 +601,6 @@ export interface EXIFTags {
|
|
|
595
601
|
FocalPlaneXResolution?: number;
|
|
596
602
|
/** ★★★☆ ✔ Example: 9846.1538 */
|
|
597
603
|
FocalPlaneYResolution?: number;
|
|
598
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (2)" */
|
|
599
|
-
GPSAltitudeRef?: string;
|
|
600
604
|
/** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
|
|
601
605
|
GPSAreaInformation?: string;
|
|
602
606
|
/** ☆☆☆☆ ✔ Example: 2020-10-23 */
|
|
@@ -617,10 +621,6 @@ export interface EXIFTags {
|
|
|
617
621
|
GPSDifferential?: string;
|
|
618
622
|
/** ☆☆☆☆ ✔ Example: "8.937059922 m" */
|
|
619
623
|
GPSHPositioningError?: string;
|
|
620
|
-
/** ☆☆☆☆ ✔ Example: 94.800416 */
|
|
621
|
-
GPSImgDirection?: number;
|
|
622
|
-
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
623
|
-
GPSImgDirectionRef?: string;
|
|
624
624
|
/** ☆☆☆☆ ✔ Example: "Unknown ()" */
|
|
625
625
|
GPSMeasureMode?: string;
|
|
626
626
|
/** ☆☆☆☆ ✔ Example: "gps" */
|
|
@@ -1169,6 +1169,8 @@ export interface QuickTimeTags {
|
|
|
1169
1169
|
BackgroundColor?: string;
|
|
1170
1170
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1171
1171
|
ChapterListTrackID?: number;
|
|
1172
|
+
/** ☆☆☆☆ Example: "3840x2160" */
|
|
1173
|
+
CleanApertureDimensions?: string;
|
|
1172
1174
|
/** ☆☆☆☆ ✔ Example: "nclx 9 1 9" */
|
|
1173
1175
|
ColorRepresentation?: string;
|
|
1174
1176
|
/** ☆☆☆☆ ✔ Example: ["qt "] */
|
|
@@ -1177,11 +1179,17 @@ export interface QuickTimeTags {
|
|
|
1177
1179
|
CompressorID?: string;
|
|
1178
1180
|
/** ☆☆☆☆ ✔ Example: "Photo - JPEG" */
|
|
1179
1181
|
CompressorName?: string;
|
|
1182
|
+
/** ☆☆☆☆ Example: "Track 1" */
|
|
1183
|
+
ContentDescribes?: string;
|
|
1184
|
+
/** ☆☆☆☆ Example: 2021-10-24T17:00:51.000+01:00 */
|
|
1185
|
+
CreationDate?: ExifDateTime | string;
|
|
1180
1186
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1181
1187
|
CurrentTime?: string;
|
|
1188
|
+
/** ☆☆☆☆ Example: "3840x2160" */
|
|
1189
|
+
EncodedPixelsDimensions?: string;
|
|
1182
1190
|
/** ☆☆☆☆ ✔ Example: "Helvetica" */
|
|
1183
1191
|
FontName?: string;
|
|
1184
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1192
|
+
/** ☆☆☆☆ ✔ Example: "51 deg 28' 58.44" N, 3 deg 11' 9.96" W, 13.739 m Above Sea Level" */
|
|
1185
1193
|
GPSCoordinates?: string;
|
|
1186
1194
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1187
1195
|
GenBalance?: number;
|
|
@@ -1199,15 +1207,17 @@ export interface QuickTimeTags {
|
|
|
1199
1207
|
HandlerClass?: string;
|
|
1200
1208
|
/** ☆☆☆☆ ✔ Example: "SoundHandle" */
|
|
1201
1209
|
HandlerDescription?: string;
|
|
1202
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1210
|
+
/** ☆☆☆☆ ✔ Example: "Metadata Tags" */
|
|
1203
1211
|
HandlerType?: string;
|
|
1204
1212
|
/** ☆☆☆☆ ✔ Example: "Panasonic" */
|
|
1205
1213
|
HandlerVendorID?: string;
|
|
1214
|
+
/** ☆☆☆☆ Example: 4.798027 */
|
|
1215
|
+
LocationAccuracyHorizontal?: number;
|
|
1206
1216
|
/** ☆☆☆☆ ✔ Example: "MP4 v2 [ISO 14496-14]" */
|
|
1207
1217
|
MajorBrand?: string;
|
|
1208
1218
|
/** ☆☆☆☆ ✔ Example: "1 0 0 0 1 0 0 0 1" */
|
|
1209
1219
|
MatrixStructure?: string;
|
|
1210
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1220
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-24T16:54:46.000+01:00 */
|
|
1211
1221
|
MediaCreateDate?: ExifDateTime | string;
|
|
1212
1222
|
/** ☆☆☆☆ ✔ Example: 98304 */
|
|
1213
1223
|
MediaDataOffset?: number;
|
|
@@ -1217,17 +1227,19 @@ export interface QuickTimeTags {
|
|
|
1217
1227
|
MediaDuration?: number;
|
|
1218
1228
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1219
1229
|
MediaHeaderVersion?: number;
|
|
1220
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1230
|
+
/** ☆☆☆☆ ✔ Example: "und" */
|
|
1221
1231
|
MediaLanguageCode?: string;
|
|
1222
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1232
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-24T16:55:12.000+01:00 */
|
|
1223
1233
|
MediaModifyDate?: ExifDateTime | string;
|
|
1224
1234
|
/** ☆☆☆☆ ✔ Example: 8000 */
|
|
1225
1235
|
MediaTimeScale?: number;
|
|
1236
|
+
/** ☆☆☆☆ Example: "mebx" */
|
|
1237
|
+
MetaFormat?: string;
|
|
1226
1238
|
/** ☆☆☆☆ ✔ Example: "2011.7.0" */
|
|
1227
1239
|
MinorVersion?: string;
|
|
1228
1240
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1229
1241
|
MovieHeaderVersion?: number;
|
|
1230
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1242
|
+
/** ☆☆☆☆ ✔ Example: 6 */
|
|
1231
1243
|
NextTrackID?: number;
|
|
1232
1244
|
/** ☆☆☆☆ ✔ Example: "32768 32768 32768" */
|
|
1233
1245
|
OpColor?: string;
|
|
@@ -1245,6 +1257,10 @@ export interface QuickTimeTags {
|
|
|
1245
1257
|
PreviewDuration?: number;
|
|
1246
1258
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
1247
1259
|
PreviewTime?: string;
|
|
1260
|
+
/** ☆☆☆☆ Example: "3840x2160" */
|
|
1261
|
+
ProductionApertureDimensions?: string;
|
|
1262
|
+
/** ☆☆☆☆ Example: "mp4a" */
|
|
1263
|
+
PurchaseFileFormat?: string;
|
|
1248
1264
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1249
1265
|
SelectionDuration?: number;
|
|
1250
1266
|
/** ☆☆☆☆ ✔ Example: "0 s" */
|
|
@@ -1267,7 +1283,7 @@ export interface QuickTimeTags {
|
|
|
1267
1283
|
TimeCode?: number;
|
|
1268
1284
|
/** ☆☆☆☆ ✔ Example: 90000 */
|
|
1269
1285
|
TimeScale?: number;
|
|
1270
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1286
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-24T16:54:46.000+01:00 */
|
|
1271
1287
|
TrackCreateDate?: ExifDateTime | string;
|
|
1272
1288
|
/** ☆☆☆☆ ✔ Example: 9.5095 */
|
|
1273
1289
|
TrackDuration?: number;
|
|
@@ -1277,7 +1293,7 @@ export interface QuickTimeTags {
|
|
|
1277
1293
|
TrackID?: number;
|
|
1278
1294
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
1279
1295
|
TrackLayer?: number;
|
|
1280
|
-
/** ☆☆☆☆ ✔ Example:
|
|
1296
|
+
/** ☆☆☆☆ ✔ Example: 2021-10-24T16:55:12.000+01:00 */
|
|
1281
1297
|
TrackModifyDate?: ExifDateTime | string;
|
|
1282
1298
|
/** ☆☆☆☆ ✔ Example: "0.00%" */
|
|
1283
1299
|
TrackVolume?: string;
|
|
@@ -1641,7 +1657,7 @@ export interface MakerNotesTags {
|
|
|
1641
1657
|
ArtModeParameters?: string;
|
|
1642
1658
|
/** ☆☆☆☆ ✔ Example: "0 192 4607 3263" */
|
|
1643
1659
|
AspectFrame?: string;
|
|
1644
|
-
/** ★☆☆☆ ✔ Example: "Unknown (
|
|
1660
|
+
/** ★☆☆☆ ✔ Example: "Unknown (942874672)" */
|
|
1645
1661
|
AspectRatio?: string;
|
|
1646
1662
|
/** ☆☆☆☆ ✔ Example: "Auto Bracketing" */
|
|
1647
1663
|
AssignBktButton?: string;
|
|
@@ -1863,7 +1879,7 @@ export interface MakerNotesTags {
|
|
|
1863
1879
|
CameraID?: string;
|
|
1864
1880
|
/** ★★☆☆ ✔ Example: "n/a" */
|
|
1865
1881
|
CameraISO?: string;
|
|
1866
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
1882
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (155)" */
|
|
1867
1883
|
CameraOrientation?: string;
|
|
1868
1884
|
/** ☆☆☆☆ ✔ Example: "(Binary data 8964 bytes, use -b option to extract)" */
|
|
1869
1885
|
CameraParameters?: string;
|
|
@@ -2035,13 +2051,13 @@ export interface MakerNotesTags {
|
|
|
2035
2051
|
ColorToneAuto?: number;
|
|
2036
2052
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2037
2053
|
ColorToneFaithful?: number;
|
|
2038
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2054
|
+
/** ☆☆☆☆ ✔ Example: 11 */
|
|
2039
2055
|
ColorToneLandscape?: number;
|
|
2040
2056
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2041
2057
|
ColorToneNeutral?: number;
|
|
2042
2058
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2043
2059
|
ColorTonePortrait?: number;
|
|
2044
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2060
|
+
/** ☆☆☆☆ ✔ Example: 15663191 */
|
|
2045
2061
|
ColorToneStandard?: number;
|
|
2046
2062
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2047
2063
|
ColorToneUserDef1?: number;
|
|
@@ -2121,27 +2137,27 @@ export interface MakerNotesTags {
|
|
|
2121
2137
|
ContrastDetectAFArea?: string;
|
|
2122
2138
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2123
2139
|
ContrastDetectAFInFocus?: string;
|
|
2124
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2140
|
+
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2125
2141
|
ContrastFaithful?: number;
|
|
2126
2142
|
/** ☆☆☆☆ Example: 0 */
|
|
2127
2143
|
ContrastHighlight?: number;
|
|
2128
2144
|
/** ☆☆☆☆ Example: "Off" */
|
|
2129
2145
|
ContrastHighlightShadowAdj?: string;
|
|
2130
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2146
|
+
/** ☆☆☆☆ ✔ Example: 6553600 */
|
|
2131
2147
|
ContrastLandscape?: number;
|
|
2132
2148
|
/** ☆☆☆☆ ✔ Example: "Unknown (19)" */
|
|
2133
2149
|
ContrastMode?: string;
|
|
2134
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2150
|
+
/** ☆☆☆☆ ✔ Example: 524288 */
|
|
2135
2151
|
ContrastMonochrome?: number;
|
|
2136
2152
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2137
2153
|
ContrastNeutral?: number;
|
|
2138
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2154
|
+
/** ☆☆☆☆ ✔ Example: 9699328 */
|
|
2139
2155
|
ContrastPortrait?: number;
|
|
2140
2156
|
/** ☆☆☆☆ ✔ Example: "1 (min -5, max 5)" */
|
|
2141
2157
|
ContrastSetting?: string;
|
|
2142
2158
|
/** ☆☆☆☆ Example: 0 */
|
|
2143
2159
|
ContrastShadow?: number;
|
|
2144
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2160
|
+
/** ☆☆☆☆ ✔ Example: 12058626 */
|
|
2145
2161
|
ContrastStandard?: number;
|
|
2146
2162
|
/** ☆☆☆☆ ✔ Example: 3 */
|
|
2147
2163
|
ContrastUserDef1?: number;
|
|
@@ -2173,9 +2189,7 @@ export interface MakerNotesTags {
|
|
|
2173
2189
|
CreativeStyle?: string;
|
|
2174
2190
|
/** ☆☆☆☆ ✔ Example: "Standard" */
|
|
2175
2191
|
CreativeStyleSetting?: string;
|
|
2176
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2177
|
-
CropArea?: string;
|
|
2178
|
-
/** ☆☆☆☆ ✔ Example: 14 */
|
|
2192
|
+
/** ☆☆☆☆ ✔ Example: 48 */
|
|
2179
2193
|
CropBottomMargin?: number;
|
|
2180
2194
|
/** ☆☆☆☆ ✔ Example: 7776 */
|
|
2181
2195
|
CropHeight?: number;
|
|
@@ -2183,21 +2197,21 @@ export interface MakerNotesTags {
|
|
|
2183
2197
|
CropHiSpeed?: string;
|
|
2184
2198
|
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
2185
2199
|
CropLeft?: string;
|
|
2186
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2200
|
+
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2187
2201
|
CropLeftMargin?: number;
|
|
2188
2202
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2189
2203
|
CropMode?: string;
|
|
2190
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2204
|
+
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2191
2205
|
CropRightMargin?: number;
|
|
2192
2206
|
/** ☆☆☆☆ ✔ Example: "8 0" */
|
|
2193
2207
|
CropTop?: string;
|
|
2194
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2208
|
+
/** ☆☆☆☆ ✔ Example: 8240 */
|
|
2195
2209
|
CropTopMargin?: number;
|
|
2196
2210
|
/** ☆☆☆☆ ✔ Example: 5184 */
|
|
2197
2211
|
CropWidth?: number;
|
|
2198
2212
|
/** ☆☆☆☆ ✔ Example: 5792 */
|
|
2199
2213
|
CroppedImageHeight?: number;
|
|
2200
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2214
|
+
/** ☆☆☆☆ ✔ Example: 3153968 */
|
|
2201
2215
|
CroppedImageLeft?: number;
|
|
2202
2216
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
2203
2217
|
CroppedImageTop?: number;
|
|
@@ -2253,7 +2267,7 @@ export interface MakerNotesTags {
|
|
|
2253
2267
|
DateTime2?: ExifDateTime | string;
|
|
2254
2268
|
/** ☆☆☆☆ Example: "Off" */
|
|
2255
2269
|
DateTimeStamp?: string;
|
|
2256
|
-
/** ☆☆☆☆ ✔ Example:
|
|
2270
|
+
/** ☆☆☆☆ ✔ Example: "0000:00:00 00:00:00" */
|
|
2257
2271
|
DateTimeUTC?: string;
|
|
2258
2272
|
/** ☆☆☆☆ ✔ Example: "Yes" */
|
|
2259
2273
|
DaylightSavings?: string;
|
|
@@ -2313,7 +2327,7 @@ export interface MakerNotesTags {
|
|
|
2313
2327
|
DriveModeSetting?: string;
|
|
2314
2328
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2315
2329
|
DriveSpeed?: string;
|
|
2316
|
-
/** ☆☆☆☆ ✔ Example: "(Binary data
|
|
2330
|
+
/** ☆☆☆☆ ✔ Example: "(Binary data 2047 bytes, use -b option to extract)" */
|
|
2317
2331
|
DustRemovalData?: string;
|
|
2318
2332
|
/** ☆☆☆☆ ✔ Example: "9 Points" */
|
|
2319
2333
|
DynamicAFArea?: string;
|
|
@@ -2527,13 +2541,13 @@ export interface MakerNotesTags {
|
|
|
2527
2541
|
FilterEffect?: string;
|
|
2528
2542
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2529
2543
|
FilterEffectAuto?: string;
|
|
2530
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2544
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
|
|
2531
2545
|
FilterEffectMonochrome?: string;
|
|
2532
2546
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
2533
2547
|
FilterEffectUserDef1?: string;
|
|
2534
2548
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
2535
2549
|
FilterEffectUserDef2?: string;
|
|
2536
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
2550
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (0xfb0000)" */
|
|
2537
2551
|
FilterEffectUserDef3?: string;
|
|
2538
2552
|
/** ☆☆☆☆ ✔ Example: "On" */
|
|
2539
2553
|
FinderDisplayDuringExposure?: string;
|
|
@@ -3127,7 +3141,7 @@ export interface MakerNotesTags {
|
|
|
3127
3141
|
LateralChromaticAberration?: string;
|
|
3128
3142
|
/** ☆☆☆☆ Example: "4.0 to 22" */
|
|
3129
3143
|
LensApertureRange?: string;
|
|
3130
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
3144
|
+
/** ☆☆☆☆ ✔ Example: "Aperture" */
|
|
3131
3145
|
LensControlRing?: string;
|
|
3132
3146
|
/** ☆☆☆☆ ✔ Example: "0801" */
|
|
3133
3147
|
LensDataVersion?: string;
|
|
@@ -3921,7 +3935,7 @@ export interface MakerNotesTags {
|
|
|
3921
3935
|
Resaved?: string;
|
|
3922
3936
|
/** ☆☆☆☆ Example: "MED" */
|
|
3923
3937
|
ResolutionMode?: string;
|
|
3924
|
-
/** ☆☆☆☆ ✔ Example: "Flags
|
|
3938
|
+
/** ☆☆☆☆ ✔ Example: "Flags 0x77" */
|
|
3925
3939
|
RestrictDriveModes?: string;
|
|
3926
3940
|
/** ★☆☆☆ ✔ Example: "Unknown ()" */
|
|
3927
3941
|
RetouchHistory?: string;
|
|
@@ -3987,13 +4001,13 @@ export interface MakerNotesTags {
|
|
|
3987
4001
|
SaturationAdj?: number;
|
|
3988
4002
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3989
4003
|
SaturationAuto?: number;
|
|
3990
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4004
|
+
/** ☆☆☆☆ ✔ Example: 655360 */
|
|
3991
4005
|
SaturationFaithful?: number;
|
|
3992
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4006
|
+
/** ☆☆☆☆ ✔ Example: 8650752 */
|
|
3993
4007
|
SaturationLandscape?: number;
|
|
3994
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4008
|
+
/** ☆☆☆☆ ✔ Example: 6619136 */
|
|
3995
4009
|
SaturationNeutral?: number;
|
|
3996
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4010
|
+
/** ☆☆☆☆ ✔ Example: 6553609 */
|
|
3997
4011
|
SaturationPortrait?: number;
|
|
3998
4012
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
3999
4013
|
SaturationSetting?: number;
|
|
@@ -4127,7 +4141,7 @@ export interface MakerNotesTags {
|
|
|
4127
4141
|
SharpnessMonochrome?: number;
|
|
4128
4142
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4129
4143
|
SharpnessNeutral?: number;
|
|
4130
|
-
/** ☆☆☆☆ ✔ Example:
|
|
4144
|
+
/** ☆☆☆☆ ✔ Example: 2752758 */
|
|
4131
4145
|
SharpnessPortrait?: number;
|
|
4132
4146
|
/** ☆☆☆☆ ✔ Example: "+3" */
|
|
4133
4147
|
SharpnessRange?: string;
|
|
@@ -4145,7 +4159,7 @@ export interface MakerNotesTags {
|
|
|
4145
4159
|
SharpnessUserDef3?: number;
|
|
4146
4160
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4147
4161
|
ShootingInfoDisplay?: string;
|
|
4148
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4162
|
+
/** ☆☆☆☆ ✔ Example: "10 s" */
|
|
4149
4163
|
ShootingInfoMonitorOffTime?: string;
|
|
4150
4164
|
/** ☆☆☆☆ ✔ Example: "Continuous" */
|
|
4151
4165
|
ShootingModeSetting?: string;
|
|
@@ -4401,7 +4415,7 @@ export interface MakerNotesTags {
|
|
|
4401
4415
|
ToningEffectUserDef1?: string;
|
|
4402
4416
|
/** ☆☆☆☆ ✔ Example: "None" */
|
|
4403
4417
|
ToningEffectUserDef2?: string;
|
|
4404
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4418
|
+
/** ☆☆☆☆ ✔ Example: "Sepia" */
|
|
4405
4419
|
ToningEffectUserDef3?: string;
|
|
4406
4420
|
/** ☆☆☆☆ ✔ Example: "n/a" */
|
|
4407
4421
|
ToningSaturation?: string;
|
|
@@ -4433,11 +4447,11 @@ export interface MakerNotesTags {
|
|
|
4433
4447
|
UsableMeteringModes?: string;
|
|
4434
4448
|
/** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
|
|
4435
4449
|
UsableShootingModes?: string;
|
|
4436
|
-
/** ☆☆☆☆ ✔ Example: "Unknown (
|
|
4450
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4437
4451
|
UserDef1PictureStyle?: string;
|
|
4438
4452
|
/** ☆☆☆☆ ✔ Example: "Unknown (0)" */
|
|
4439
4453
|
UserDef2PictureStyle?: string;
|
|
4440
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4454
|
+
/** ☆☆☆☆ ✔ Example: "Unknown (4)" */
|
|
4441
4455
|
UserDef3PictureStyle?: string;
|
|
4442
4456
|
/** ☆☆☆☆ Example: "PC900 COVERT PRO" */
|
|
4443
4457
|
UserLabel?: string;
|
|
@@ -4665,7 +4679,7 @@ export interface XMPTags {
|
|
|
4665
4679
|
CircularGradientBasedCorrections?: Struct[];
|
|
4666
4680
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4667
4681
|
Clarity2012?: number;
|
|
4668
|
-
/** ☆☆☆☆ ✔ Example: "
|
|
4682
|
+
/** ☆☆☆☆ ✔ Example: "3 (Superior)" */
|
|
4669
4683
|
ColorClass?: string;
|
|
4670
4684
|
/** ☆☆☆☆ ✔ Example: 0 */
|
|
4671
4685
|
ColorLabel?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.12.1",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -42,6 +42,17 @@
|
|
|
42
42
|
"type": "git",
|
|
43
43
|
"url": "https://github.com/photostructure/exiftool-vendored.js.git"
|
|
44
44
|
},
|
|
45
|
+
"release-it": {
|
|
46
|
+
"hooks": {
|
|
47
|
+
"before:init": [
|
|
48
|
+
"yarn install",
|
|
49
|
+
"yarn test"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"github": {
|
|
53
|
+
"release": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
45
56
|
"keywords": [
|
|
46
57
|
"ExifTool",
|
|
47
58
|
"EXIF",
|
|
@@ -69,30 +80,30 @@
|
|
|
69
80
|
},
|
|
70
81
|
"devDependencies": {
|
|
71
82
|
"@types/chai": "^4.3.0",
|
|
72
|
-
"@types/chai-as-promised": "^7.1.
|
|
83
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
73
84
|
"@types/chai-subset": "^1.3.3",
|
|
74
85
|
"@types/fs-extra": "^9.0.13",
|
|
75
86
|
"@types/globule": "^1.1.4",
|
|
76
87
|
"@types/he": "^1.1.2",
|
|
77
|
-
"@types/mocha": "^9.
|
|
78
|
-
"@types/node": "^17.0.
|
|
88
|
+
"@types/mocha": "^9.1.0",
|
|
89
|
+
"@types/node": "^17.0.21",
|
|
79
90
|
"@types/progress": "^2.0.5",
|
|
80
91
|
"@types/rimraf": "^3.0.2",
|
|
81
92
|
"@types/tar-fs": "^2.0.1",
|
|
82
93
|
"@types/tmp": "^0.2.3",
|
|
83
94
|
"@types/xmldom": "^0.1.31",
|
|
84
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
85
|
-
"@typescript-eslint/parser": "^5.
|
|
86
|
-
"chai": "^4.3.
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
96
|
+
"@typescript-eslint/parser": "^5.12.1",
|
|
97
|
+
"chai": "^4.3.6",
|
|
87
98
|
"chai-as-promised": "^7.1.1",
|
|
88
99
|
"chai-subset": "^1.6.0",
|
|
89
|
-
"eslint": "^8.
|
|
100
|
+
"eslint": "^8.9.0",
|
|
90
101
|
"eslint-plugin-import": "^2.25.4",
|
|
91
102
|
"eslint-plugin-node": "^11.1.0",
|
|
92
103
|
"extract-zip": "^2.0.1",
|
|
93
|
-
"fs-extra": "^10.0.
|
|
104
|
+
"fs-extra": "^10.0.1",
|
|
94
105
|
"globule": "^1.3.3",
|
|
95
|
-
"mocha": "^9.1
|
|
106
|
+
"mocha": "^9.2.1",
|
|
96
107
|
"npm-run-all": "^4.1.5",
|
|
97
108
|
"prettier": "^2.5.1",
|
|
98
109
|
"progress": "^2.0.3",
|
|
@@ -101,20 +112,20 @@
|
|
|
101
112
|
"source-map-support": "^0.5.21",
|
|
102
113
|
"tar-fs": "^2.1.1",
|
|
103
114
|
"tmp": "^0.2.1",
|
|
104
|
-
"typedoc": "^0.22.
|
|
105
|
-
"typescript": "^4.5.
|
|
106
|
-
"@xmldom/xmldom": "^0.8.
|
|
115
|
+
"typedoc": "^0.22.12",
|
|
116
|
+
"typescript": "^4.5.5",
|
|
117
|
+
"@xmldom/xmldom": "^0.8.1",
|
|
107
118
|
"xpath": "^0.0.32"
|
|
108
119
|
},
|
|
109
120
|
"dependencies": {
|
|
110
121
|
"@types/luxon": "^2.0.9",
|
|
111
|
-
"batch-cluster": "^
|
|
122
|
+
"batch-cluster": "^10.3.0",
|
|
112
123
|
"he": "^1.2.0",
|
|
113
|
-
"luxon": "^2.3.
|
|
124
|
+
"luxon": "^2.3.1",
|
|
114
125
|
"tz-lookup": "^6.1.25"
|
|
115
126
|
},
|
|
116
127
|
"optionalDependencies": {
|
|
117
|
-
"exiftool-vendored.exe": "12.
|
|
118
|
-
"exiftool-vendored.pl": "12.
|
|
128
|
+
"exiftool-vendored.exe": "12.40.0",
|
|
129
|
+
"exiftool-vendored.pl": "12.40.0"
|
|
119
130
|
}
|
|
120
131
|
}
|