exiftool-vendored 15.9.1 → 15.11.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/CHANGELOG.md CHANGED
@@ -25,6 +25,30 @@ vendored versions of ExifTool match the version they vendor.
25
25
 
26
26
  ## Version history
27
27
 
28
+ ### v15.11.0
29
+
30
+ - 🌱 ExifTool upgraded to [v12.40](https://exiftool.org/history.html#v12.40).
31
+
32
+ - 📦 Updated dependencies (batch-cluster [v10.0.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1000))
33
+
34
+ - 📦 Rebuild `Tags.ts` and docs
35
+
36
+ ### v15.10.1
37
+
38
+ - 📦 Updated dependencies (batch-cluster v8.1.0)
39
+
40
+ - 📦 Rebuild docs
41
+
42
+ ### v15.10.0
43
+
44
+ - 🌱 ExifTool upgraded to [v12.39](https://exiftool.org/history.html#v12.39).
45
+
46
+ - 🐞/📦 Include `@types/luxon` in `dependencies` (thanks, [davidmz](https://github.com/photostructure/exiftool-vendored.js/pull/108)!)
47
+
48
+ ### v15.9.2
49
+
50
+ - 📦 Rebuild tags and docs with updated test images. Note that some `GPS` tags types changed to `string`: see v15.8.0.
51
+
28
52
  ### v15.9.1
29
53
 
30
54
  - 📦 Exposed `UnsetZoneOffsetMinutes` from `Timezones`
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016-2021 Matthew McEachen
3
+ Copyright (c) 2016-2022 Matthew McEachen
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -324,9 +324,16 @@ If you run this in a docker image based off Alpine or Debian Slim, **this won't
324
324
 
325
325
  **Always remember to call `.end()`.**
326
326
 
327
- ExifTool child processes consume system resources. Ensure you don't leave zombie
328
- processes around by calling `.end()`, which returns a `Promise<void>` if you
329
- want to wait for the shutdown to be complete.
327
+ ExifTool child processes consume system resources, and [prevents `node` from
328
+ exiting due to the way Node.js streams
329
+ work](https://github.com/photostructure/exiftool-vendored.js/issues/106).
330
+
331
+ You must explicitly call `.end()` on any used instance of `ExifTool` for `node`
332
+ to exit gracefully.
333
+
334
+ This call cannot be in a `process.on("exit")` hook, as the `stdio` streams
335
+ attached to the child process cannot be `unref`'ed. (If there's a solution to
336
+ this, please post to the above issue!)
330
337
 
331
338
  ### Mocha v4.0.0
332
339
 
@@ -320,15 +320,24 @@ export declare class ExifTool {
320
320
  * @return report why child processes were recycled
321
321
  */
322
322
  childEndCounts(): {
323
- dead: number;
324
- ending: number;
325
- unhealthy: number;
326
- closed: number;
327
- worn: number;
328
323
  idle: number;
329
324
  broken: number;
325
+ closed: number;
326
+ ending: number;
327
+ ended: number;
330
328
  old: number;
329
+ "proc.close": number;
330
+ "proc.disconnect": number;
331
+ "proc.error": number;
332
+ "proc.exit": number;
333
+ "stderr.error": number;
334
+ stderr: number;
335
+ "stdin.error": number;
336
+ "stdout.error": number;
331
337
  timeout: number;
338
+ tooMany: number;
339
+ unhealthy: number;
340
+ worn: number;
332
341
  };
333
342
  }
334
343
  /**
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.38 */
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: 2021-12-20T17:04:11.000-08:00 */
36
+ /** ★★★★ ✔ Example: 2022-02-10T17:21:41.000-08:00 */
37
37
  FileAccessDate?: ExifDateTime | string;
38
- /** ★★★★ ✔ Example: 2021-12-18T15:34:05.000-08:00 */
38
+ /** ★★★★ ✔ Example: 2022-02-10T16:31:21.000-08:00 */
39
39
  FileInodeChangeDate?: ExifDateTime | string;
40
- /** ★★★★ ✔ Example: 2021-06-08T12:53:12.000-07:00 */
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: 2021-03-16T18:14:25.000-07:00 */
96
+ /** ☆☆☆☆ ✔ Example: undefined */
97
97
  DateTimeCreated?: ExifDateTime | string;
98
98
  /** ☆☆☆☆ ✔ Example: 2017-02-20T18:06:40.000Z */
99
99
  DateTimeOriginal?: ExifDateTime | string;
@@ -123,19 +123,21 @@ 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
- /** ☆☆☆☆ ✔ Example: 43.633224 */
129
- GPSDestLatitude?: number;
130
- /** ☆☆☆☆ ✔ Example: 139.58194 */
131
- GPSDestLongitude?: number;
130
+ /** ☆☆☆☆ ✔ Example: "43 deg 37' 59.61" N" */
131
+ GPSDestLatitude?: string;
132
+ /** ☆☆☆☆ ✔ Example: "80 deg 23' 16.31" W" */
133
+ GPSDestLongitude?: string;
132
134
  /** ☆☆☆☆ ✔ Example: 48.857748 */
133
135
  GPSLatitude?: number;
134
- /** ☆☆☆☆ ✔ Example: "N" */
136
+ /** ☆☆☆☆ ✔ Example: "North" */
135
137
  GPSLatitudeRef?: string;
136
138
  /** ☆☆☆☆ ✔ Example: 2.2918888 */
137
139
  GPSLongitude?: number;
138
- /** ☆☆☆☆ ✔ Example: "W" */
140
+ /** ☆☆☆☆ ✔ Example: "West" */
139
141
  GPSLongitudeRef?: string;
140
142
  /** ☆☆☆☆ ✔ Example: "7.196465 134.376806666667" */
141
143
  GPSPosition?: string;
@@ -183,13 +185,13 @@ export interface CompositeTags {
183
185
  ShootingMode?: string;
184
186
  /** ☆☆☆☆ ✔ Example: "1st-curtain sync" */
185
187
  ShutterCurtainHack?: string;
186
- /** ★★★★ ✔ Example: "Inf" */
188
+ /** ★★★★ ✔ Example: "inf" */
187
189
  ShutterSpeed?: string;
188
- /** ★☆☆☆ ✔ Example: 2021-01-29T13:50:39.093-08:00 */
190
+ /** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
189
191
  SubSecCreateDate?: ExifDateTime | string;
190
- /** ★☆☆☆ ✔ Example: 2021-03-22T15:15:03.000-05:00 */
192
+ /** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
191
193
  SubSecDateTimeOriginal?: ExifDateTime | string;
192
- /** ★☆☆☆ ✔ Example: 2021-03-22T15:15:03.000-05:00 */
194
+ /** ★☆☆☆ ✔ Example: 2022-01-14T10:56:21.580Z */
193
195
  SubSecModifyDate?: ExifDateTime | string;
194
196
  }
195
197
  export interface APP1Tags {
@@ -235,10 +237,14 @@ 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
- /** ☆☆☆☆ Example: 1 */
241
- GPSValid?: number;
246
+ /** ☆☆☆☆ Example: "Yes" */
247
+ GPSValid?: string;
242
248
  /** ☆☆☆☆ Example: "7.4 C" */
243
249
  IRWindowTemperature?: string;
244
250
  /** ☆☆☆☆ Example: 1 */
@@ -595,51 +601,45 @@ export interface EXIFTags {
595
601
  FocalPlaneXResolution?: number;
596
602
  /** ★★★☆ ✔ Example: 9846.1538 */
597
603
  FocalPlaneYResolution?: number;
598
- /** ☆☆☆☆ ✔ Example: 2 */
599
- GPSAltitudeRef?: number;
600
604
  /** ☆☆☆☆ ✔ Example: "府中市郷土の森博物館" */
601
605
  GPSAreaInformation?: string;
602
606
  /** ☆☆☆☆ ✔ Example: 2020-10-23 */
603
607
  GPSDateStamp?: ExifDate | string;
604
608
  /** ☆☆☆☆ ✔ Example: 86.180049 */
605
609
  GPSDestBearing?: number;
606
- /** ☆☆☆☆ ✔ Example: "T" */
610
+ /** ☆☆☆☆ ✔ Example: "True North" */
607
611
  GPSDestBearingRef?: string;
608
612
  /** ☆☆☆☆ ✔ Example: 0.030120052 */
609
613
  GPSDestDistance?: number;
610
- /** ☆☆☆☆ ✔ Example: "K" */
614
+ /** ☆☆☆☆ ✔ Example: "Kilometers" */
611
615
  GPSDestDistanceRef?: string;
612
- /** ☆☆☆☆ ✔ Example: "N" */
616
+ /** ☆☆☆☆ ✔ Example: "North" */
613
617
  GPSDestLatitudeRef?: string;
614
- /** ☆☆☆☆ ✔ Example: "W" */
618
+ /** ☆☆☆☆ ✔ Example: "West" */
615
619
  GPSDestLongitudeRef?: string;
616
- /** ☆☆☆☆ ✔ Example: 1 */
617
- GPSDifferential?: number;
618
- /** ☆☆☆☆ ✔ Example: 8.9370599 */
619
- GPSHPositioningError?: number;
620
- /** ☆☆☆☆ ✔ Example: 94.800416 */
621
- GPSImgDirection?: number;
622
- /** ☆☆☆☆ ✔ Example: "T" */
623
- GPSImgDirectionRef?: string;
624
- /** ☆☆☆☆ ✔ Example: 3 */
625
- GPSMeasureMode?: number;
620
+ /** ☆☆☆☆ ✔ Example: "No Correction" */
621
+ GPSDifferential?: string;
622
+ /** ☆☆☆☆ ✔ Example: "8.937059922 m" */
623
+ GPSHPositioningError?: string;
624
+ /** ☆☆☆☆ ✔ Example: "Unknown ()" */
625
+ GPSMeasureMode?: string;
626
626
  /** ☆☆☆☆ ✔ Example: "gps" */
627
627
  GPSProcessingMethod?: string;
628
628
  /** ☆☆☆☆ ✔ Example: "??B??" */
629
629
  GPSSatellites?: string;
630
630
  /** ☆☆☆☆ ✔ Example: 5 */
631
631
  GPSSpeed?: number;
632
- /** ☆☆☆☆ ✔ Example: "N" */
632
+ /** ☆☆☆☆ ✔ Example: "knots" */
633
633
  GPSSpeedRef?: string;
634
- /** ☆☆☆☆ ✔ Example: "V" */
634
+ /** ☆☆☆☆ ✔ Example: "Unknown ()" */
635
635
  GPSStatus?: string;
636
636
  /** ☆☆☆☆ ✔ Example: 23:59:41.001 */
637
637
  GPSTimeStamp?: ExifTime | string;
638
638
  /** ☆☆☆☆ ✔ Example: 71.76 */
639
639
  GPSTrack?: number;
640
- /** ☆☆☆☆ ✔ Example: "T" */
640
+ /** ☆☆☆☆ ✔ Example: "True North" */
641
641
  GPSTrackRef?: string;
642
- /** ★☆☆☆ ✔ Example: "50 51 48 48" */
642
+ /** ★☆☆☆ ✔ Example: "50.51.48.48" */
643
643
  GPSVersionID?: string;
644
644
  /** ★★★☆ ✔ Example: "Unknown (8176)" */
645
645
  GainControl?: string;
@@ -671,7 +671,7 @@ export interface EXIFTags {
671
671
  JpgFromRawStart?: number;
672
672
  /** ★☆☆☆ ✔ Example: "?mm f/?" */
673
673
  LensInfo?: string;
674
- /** ☆☆☆☆ ✔ Example: "SIGMA " */
674
+ /** ☆☆☆☆ ✔ Example: "ZEISS" */
675
675
  LensMake?: string;
676
676
  /** ★★★★ ✔ Example: "White Fluorescent" */
677
677
  LightSource?: string;
@@ -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: "45.5753 -122.1279" */
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: "Audio Track" */
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: 2020-04-19T13:42:52.000+00:00 */
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: "jpn" */
1230
+ /** ☆☆☆☆ ✔ Example: "und" */
1221
1231
  MediaLanguageCode?: string;
1222
- /** ☆☆☆☆ ✔ Example: 2020-04-19T13:42:52.000+00:00 */
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: 4 */
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: 2020-04-19T13:42:52.000+00:00 */
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: 2020-04-19T13:42:52.000+00:00 */
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 (256)" */
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: "Tilt Upwards" */
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: 0 */
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: 0 */
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: 0 */
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: 0 */
2146
+ /** ☆☆☆☆ ✔ Example: 6553600 */
2131
2147
  ContrastLandscape?: number;
2132
2148
  /** ☆☆☆☆ ✔ Example: "Unknown (19)" */
2133
2149
  ContrastMode?: string;
2134
- /** ☆☆☆☆ ✔ Example: 0 */
2150
+ /** ☆☆☆☆ ✔ Example: 524288 */
2135
2151
  ContrastMonochrome?: number;
2136
2152
  /** ☆☆☆☆ ✔ Example: 0 */
2137
2153
  ContrastNeutral?: number;
2138
- /** ☆☆☆☆ ✔ Example: 0 */
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: 1 */
2160
+ /** ☆☆☆☆ ✔ Example: 12058626 */
2145
2161
  ContrastStandard?: number;
2146
2162
  /** ☆☆☆☆ ✔ Example: 3 */
2147
2163
  ContrastUserDef1?: number;
@@ -2175,7 +2191,7 @@ export interface MakerNotesTags {
2175
2191
  CreativeStyleSetting?: string;
2176
2192
  /** ☆☆☆☆ ✔ Example: "16 8 5568 3712" */
2177
2193
  CropArea?: string;
2178
- /** ☆☆☆☆ ✔ Example: 14 */
2194
+ /** ☆☆☆☆ ✔ Example: 48 */
2179
2195
  CropBottomMargin?: number;
2180
2196
  /** ☆☆☆☆ ✔ Example: 7776 */
2181
2197
  CropHeight?: number;
@@ -2183,21 +2199,21 @@ export interface MakerNotesTags {
2183
2199
  CropHiSpeed?: string;
2184
2200
  /** ☆☆☆☆ ✔ Example: "8 0" */
2185
2201
  CropLeft?: string;
2186
- /** ☆☆☆☆ ✔ Example: 22 */
2202
+ /** ☆☆☆☆ ✔ Example: 8240 */
2187
2203
  CropLeftMargin?: number;
2188
2204
  /** ☆☆☆☆ ✔ Example: "n/a" */
2189
2205
  CropMode?: string;
2190
- /** ☆☆☆☆ ✔ Example: 20 */
2206
+ /** ☆☆☆☆ ✔ Example: 8240 */
2191
2207
  CropRightMargin?: number;
2192
2208
  /** ☆☆☆☆ ✔ Example: "8 0" */
2193
2209
  CropTop?: string;
2194
- /** ☆☆☆☆ ✔ Example: 14 */
2210
+ /** ☆☆☆☆ ✔ Example: 8240 */
2195
2211
  CropTopMargin?: number;
2196
2212
  /** ☆☆☆☆ ✔ Example: 5184 */
2197
2213
  CropWidth?: number;
2198
2214
  /** ☆☆☆☆ ✔ Example: 5792 */
2199
2215
  CroppedImageHeight?: number;
2200
- /** ☆☆☆☆ ✔ Example: 304 */
2216
+ /** ☆☆☆☆ ✔ Example: 3153968 */
2201
2217
  CroppedImageLeft?: number;
2202
2218
  /** ☆☆☆☆ ✔ Example: 0 */
2203
2219
  CroppedImageTop?: number;
@@ -2313,7 +2329,7 @@ export interface MakerNotesTags {
2313
2329
  DriveModeSetting?: string;
2314
2330
  /** ☆☆☆☆ ✔ Example: "n/a" */
2315
2331
  DriveSpeed?: string;
2316
- /** ☆☆☆☆ ✔ Example: "(Binary data 1024 bytes, use -b option to extract)" */
2332
+ /** ☆☆☆☆ ✔ Example: "(Binary data 2047 bytes, use -b option to extract)" */
2317
2333
  DustRemovalData?: string;
2318
2334
  /** ☆☆☆☆ ✔ Example: "9 Points" */
2319
2335
  DynamicAFArea?: string;
@@ -2527,13 +2543,13 @@ export interface MakerNotesTags {
2527
2543
  FilterEffect?: string;
2528
2544
  /** ☆☆☆☆ ✔ Example: "n/a" */
2529
2545
  FilterEffectAuto?: string;
2530
- /** ☆☆☆☆ ✔ Example: "None" */
2546
+ /** ☆☆☆☆ ✔ Example: "Unknown (0x10000)" */
2531
2547
  FilterEffectMonochrome?: string;
2532
2548
  /** ☆☆☆☆ ✔ Example: "n/a" */
2533
2549
  FilterEffectUserDef1?: string;
2534
2550
  /** ☆☆☆☆ ✔ Example: "None" */
2535
2551
  FilterEffectUserDef2?: string;
2536
- /** ☆☆☆☆ ✔ Example: "None" */
2552
+ /** ☆☆☆☆ ✔ Example: "Unknown (0xfb0000)" */
2537
2553
  FilterEffectUserDef3?: string;
2538
2554
  /** ☆☆☆☆ ✔ Example: "On" */
2539
2555
  FinderDisplayDuringExposure?: string;
@@ -3127,7 +3143,7 @@ export interface MakerNotesTags {
3127
3143
  LateralChromaticAberration?: string;
3128
3144
  /** ☆☆☆☆ Example: "4.0 to 22" */
3129
3145
  LensApertureRange?: string;
3130
- /** ☆☆☆☆ ✔ Example: "Focus (M/A)" */
3146
+ /** ☆☆☆☆ ✔ Example: "Aperture" */
3131
3147
  LensControlRing?: string;
3132
3148
  /** ☆☆☆☆ ✔ Example: "0801" */
3133
3149
  LensDataVersion?: string;
@@ -3921,7 +3937,7 @@ export interface MakerNotesTags {
3921
3937
  Resaved?: string;
3922
3938
  /** ☆☆☆☆ Example: "MED" */
3923
3939
  ResolutionMode?: string;
3924
- /** ☆☆☆☆ ✔ Example: "Flags 0x3bf" */
3940
+ /** ☆☆☆☆ ✔ Example: "Flags 0x77" */
3925
3941
  RestrictDriveModes?: string;
3926
3942
  /** ★☆☆☆ ✔ Example: "Unknown ()" */
3927
3943
  RetouchHistory?: string;
@@ -3987,13 +4003,13 @@ export interface MakerNotesTags {
3987
4003
  SaturationAdj?: number;
3988
4004
  /** ☆☆☆☆ ✔ Example: 0 */
3989
4005
  SaturationAuto?: number;
3990
- /** ☆☆☆☆ ✔ Example: 0 */
4006
+ /** ☆☆☆☆ ✔ Example: 655360 */
3991
4007
  SaturationFaithful?: number;
3992
- /** ☆☆☆☆ ✔ Example: 4 */
4008
+ /** ☆☆☆☆ ✔ Example: 8650752 */
3993
4009
  SaturationLandscape?: number;
3994
- /** ☆☆☆☆ ✔ Example: 0 */
4010
+ /** ☆☆☆☆ ✔ Example: 6619136 */
3995
4011
  SaturationNeutral?: number;
3996
- /** ☆☆☆☆ ✔ Example: 2 */
4012
+ /** ☆☆☆☆ ✔ Example: 6553609 */
3997
4013
  SaturationPortrait?: number;
3998
4014
  /** ☆☆☆☆ ✔ Example: 0 */
3999
4015
  SaturationSetting?: number;
@@ -4127,7 +4143,7 @@ export interface MakerNotesTags {
4127
4143
  SharpnessMonochrome?: number;
4128
4144
  /** ☆☆☆☆ ✔ Example: 0 */
4129
4145
  SharpnessNeutral?: number;
4130
- /** ☆☆☆☆ ✔ Example: 2 */
4146
+ /** ☆☆☆☆ ✔ Example: 2752758 */
4131
4147
  SharpnessPortrait?: number;
4132
4148
  /** ☆☆☆☆ ✔ Example: "+3" */
4133
4149
  SharpnessRange?: string;
@@ -4213,7 +4229,7 @@ export interface MakerNotesTags {
4213
4229
  SoftFocusFilter?: string;
4214
4230
  /** ☆☆☆☆ ✔ Example: "n/a" */
4215
4231
  SoftSkinEffect?: string;
4216
- /** ☆☆☆☆ ✔ Example: 2020-10-23T09:46:18.000-06:00 */
4232
+ /** ☆☆☆☆ ✔ Example: 2021-07-23T16:13:55.000-07:00 */
4217
4233
  SonyDateTime?: ExifDateTime | string;
4218
4234
  /** ☆☆☆☆ ✔ Example: 2015-11-26T14:41:25.000 */
4219
4235
  SonyDateTime2?: ExifDateTime | string;
@@ -4243,7 +4259,7 @@ export interface MakerNotesTags {
4243
4259
  SonyMaxApertureValue?: number;
4244
4260
  /** ☆☆☆☆ ✔ Example: 34 */
4245
4261
  SonyMinAperture?: number;
4246
- /** ☆☆☆☆ ✔ Example: "ZV-1" */
4262
+ /** ☆☆☆☆ ✔ Example: "ZV-E10" */
4247
4263
  SonyModelID?: string;
4248
4264
  /** ☆☆☆☆ ✔ Example: "Fine" */
4249
4265
  SonyQuality?: string;
@@ -4401,7 +4417,7 @@ export interface MakerNotesTags {
4401
4417
  ToningEffectUserDef1?: string;
4402
4418
  /** ☆☆☆☆ ✔ Example: "None" */
4403
4419
  ToningEffectUserDef2?: string;
4404
- /** ☆☆☆☆ ✔ Example: "None" */
4420
+ /** ☆☆☆☆ ✔ Example: "Sepia" */
4405
4421
  ToningEffectUserDef3?: string;
4406
4422
  /** ☆☆☆☆ ✔ Example: "n/a" */
4407
4423
  ToningSaturation?: string;
@@ -4433,11 +4449,11 @@ export interface MakerNotesTags {
4433
4449
  UsableMeteringModes?: string;
4434
4450
  /** ☆☆☆☆ ✔ Example: "Flags 0x3f" */
4435
4451
  UsableShootingModes?: string;
4436
- /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
4452
+ /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4437
4453
  UserDef1PictureStyle?: string;
4438
4454
  /** ☆☆☆☆ ✔ Example: "Unknown (0)" */
4439
4455
  UserDef2PictureStyle?: string;
4440
- /** ☆☆☆☆ ✔ Example: "Standard" */
4456
+ /** ☆☆☆☆ ✔ Example: "Unknown (4)" */
4441
4457
  UserDef3PictureStyle?: string;
4442
4458
  /** ☆☆☆☆ Example: "PC900 COVERT PRO" */
4443
4459
  UserLabel?: string;
@@ -4713,9 +4729,9 @@ export interface XMPTags {
4713
4729
  CroppedAreaTopPixels?: number;
4714
4730
  /** ☆☆☆☆ ✔ Example: 2014-05-11T13:08:25.659-04:00 */
4715
4731
  DateAcquired?: ExifDateTime | string;
4716
- /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000-04:00 */
4732
+ /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
4717
4733
  DateTime?: ExifDateTime | string;
4718
- /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000-04:00 */
4734
+ /** ☆☆☆☆ ✔ Example: 2017-08-13T12:38:30.000+04:00 */
4719
4735
  DateTimeDigitized?: ExifDateTime | string;
4720
4736
  /** ☆☆☆☆ ✔ Example: 2015-06-02T09:56:01.000Z */
4721
4737
  DateUTC?: ExifDateTime | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored",
3
- "version": "15.9.1",
3
+ "version": "15.11.0",
4
4
  "description": "Efficient, cross-platform access to ExifTool",
5
5
  "main": "./dist/ExifTool.js",
6
6
  "types": "./dist/ExifTool.d.ts",
@@ -69,31 +69,30 @@
69
69
  },
70
70
  "devDependencies": {
71
71
  "@types/chai": "^4.3.0",
72
- "@types/chai-as-promised": "^7.1.4",
72
+ "@types/chai-as-promised": "^7.1.5",
73
73
  "@types/chai-subset": "^1.3.3",
74
74
  "@types/fs-extra": "^9.0.13",
75
75
  "@types/globule": "^1.1.4",
76
76
  "@types/he": "^1.1.2",
77
- "@types/luxon": "^2.0.8",
78
- "@types/mocha": "^9.0.0",
79
- "@types/node": "^17.0.2",
77
+ "@types/mocha": "^9.1.0",
78
+ "@types/node": "^17.0.17",
80
79
  "@types/progress": "^2.0.5",
81
80
  "@types/rimraf": "^3.0.2",
82
81
  "@types/tar-fs": "^2.0.1",
83
82
  "@types/tmp": "^0.2.3",
84
83
  "@types/xmldom": "^0.1.31",
85
- "@typescript-eslint/eslint-plugin": "^5.8.0",
86
- "@typescript-eslint/parser": "^5.8.0",
87
- "chai": "^4.3.4",
84
+ "@typescript-eslint/eslint-plugin": "^5.11.0",
85
+ "@typescript-eslint/parser": "^5.11.0",
86
+ "chai": "^4.3.6",
88
87
  "chai-as-promised": "^7.1.1",
89
88
  "chai-subset": "^1.6.0",
90
- "eslint": "^8.5.0",
91
- "eslint-plugin-import": "^2.25.3",
89
+ "eslint": "^8.9.0",
90
+ "eslint-plugin-import": "^2.25.4",
92
91
  "eslint-plugin-node": "^11.1.0",
93
92
  "extract-zip": "^2.0.1",
94
93
  "fs-extra": "^10.0.0",
95
94
  "globule": "^1.3.3",
96
- "mocha": "^9.1.3",
95
+ "mocha": "^9.2.0",
97
96
  "npm-run-all": "^4.1.5",
98
97
  "prettier": "^2.5.1",
99
98
  "progress": "^2.0.3",
@@ -102,19 +101,20 @@
102
101
  "source-map-support": "^0.5.21",
103
102
  "tar-fs": "^2.1.1",
104
103
  "tmp": "^0.2.1",
105
- "typedoc": "^0.22.10",
106
- "typescript": "^4.5.4",
104
+ "typedoc": "^0.22.11",
105
+ "typescript": "^4.5.5",
107
106
  "@xmldom/xmldom": "^0.8.0",
108
107
  "xpath": "^0.0.32"
109
108
  },
110
109
  "dependencies": {
111
- "batch-cluster": "^8.0.1",
110
+ "@types/luxon": "^2.0.9",
111
+ "batch-cluster": "^10.0.0",
112
112
  "he": "^1.2.0",
113
- "luxon": "^2.2.0",
113
+ "luxon": "^2.3.0",
114
114
  "tz-lookup": "^6.1.25"
115
115
  },
116
116
  "optionalDependencies": {
117
- "exiftool-vendored.exe": "12.38.0",
118
- "exiftool-vendored.pl": "12.38.0"
117
+ "exiftool-vendored.exe": "12.40.0",
118
+ "exiftool-vendored.pl": "12.40.0"
119
119
  }
120
120
  }