exiftool-vendored 15.9.1 โ 15.9.2
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 +4 -0
- package/README.md +6 -3
- package/dist/Tags.d.ts +38 -38
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,10 @@ vendored versions of ExifTool match the version they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
+
### v15.9.2
|
|
29
|
+
|
|
30
|
+
- ๐ฆ Rebuild tags and docs with updated test images. Note that some `GPS` tags types changed to `string`: see v15.8.0.
|
|
31
|
+
|
|
28
32
|
### v15.9.1
|
|
29
33
|
|
|
30
34
|
- ๐ฆ Exposed `UnsetZoneOffsetMinutes` from `Timezones`
|
package/README.md
CHANGED
|
@@ -324,9 +324,12 @@ 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
|
|
328
|
-
|
|
329
|
-
|
|
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 `ExifTool.end()` for `node` to exit gracefully. This
|
|
332
|
+
cannot be in a `process.on("exit")` hook, as that will never get called.
|
|
330
333
|
|
|
331
334
|
### Mocha v4.0.0
|
|
332
335
|
|
package/dist/Tags.d.ts
CHANGED
|
@@ -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-
|
|
36
|
+
/** โ
โ
โ
โ
โ Example: 2021-12-29T10:35:44.000-08:00 */
|
|
37
37
|
FileAccessDate?: ExifDateTime | string;
|
|
38
|
-
/** โ
โ
โ
โ
โ Example: 2021-12-
|
|
38
|
+
/** โ
โ
โ
โ
โ Example: 2021-12-29T10:35:44.000-08:00 */
|
|
39
39
|
FileInodeChangeDate?: ExifDateTime | string;
|
|
40
|
-
/** โ
โ
โ
โ
โ Example: 2021-
|
|
40
|
+
/** โ
โ
โ
โ
โ Example: 2021-08-11T12:39:33.000-07: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-
|
|
96
|
+
/** โโโโ โ Example: 2021-07-23T16:13:55.000-07:00 */
|
|
97
97
|
DateTimeCreated?: ExifDateTime | string;
|
|
98
98
|
/** โโโโ โ Example: 2017-02-20T18:06:40.000Z */
|
|
99
99
|
DateTimeOriginal?: ExifDateTime | string;
|
|
@@ -125,17 +125,17 @@ export interface CompositeTags {
|
|
|
125
125
|
GPSAltitude?: number;
|
|
126
126
|
/** โโโโ โ Example: 2020-10-23T09:27:26.000Z */
|
|
127
127
|
GPSDateTime?: ExifDateTime | string;
|
|
128
|
-
/** โโโโ โ Example: 43.
|
|
129
|
-
GPSDestLatitude?:
|
|
130
|
-
/** โโโโ โ Example:
|
|
131
|
-
GPSDestLongitude?:
|
|
128
|
+
/** โโโโ โ Example: "43 deg 37' 59.61" N" */
|
|
129
|
+
GPSDestLatitude?: string;
|
|
130
|
+
/** โโโโ โ Example: "80 deg 23' 16.31" W" */
|
|
131
|
+
GPSDestLongitude?: string;
|
|
132
132
|
/** โโโโ โ Example: 48.857748 */
|
|
133
133
|
GPSLatitude?: number;
|
|
134
|
-
/** โโโโ โ Example: "
|
|
134
|
+
/** โโโโ โ Example: "North" */
|
|
135
135
|
GPSLatitudeRef?: string;
|
|
136
136
|
/** โโโโ โ Example: 2.2918888 */
|
|
137
137
|
GPSLongitude?: number;
|
|
138
|
-
/** โโโโ โ Example: "
|
|
138
|
+
/** โโโโ โ Example: "West" */
|
|
139
139
|
GPSLongitudeRef?: string;
|
|
140
140
|
/** โโโโ โ Example: "7.196465 134.376806666667" */
|
|
141
141
|
GPSPosition?: string;
|
|
@@ -185,11 +185,11 @@ export interface CompositeTags {
|
|
|
185
185
|
ShutterCurtainHack?: string;
|
|
186
186
|
/** โ
โ
โ
โ
โ Example: "Inf" */
|
|
187
187
|
ShutterSpeed?: string;
|
|
188
|
-
/** โ
โโโ โ Example: 2021-
|
|
188
|
+
/** โ
โโโ โ Example: 2021-07-23T16:13:55.459-07:00 */
|
|
189
189
|
SubSecCreateDate?: ExifDateTime | string;
|
|
190
|
-
/** โ
โโโ โ Example: 2021-
|
|
190
|
+
/** โ
โโโ โ Example: 2021-08-05T17:10:14.000+09:00 */
|
|
191
191
|
SubSecDateTimeOriginal?: ExifDateTime | string;
|
|
192
|
-
/** โ
โโโ โ Example: 2021-
|
|
192
|
+
/** โ
โโโ โ Example: 2021-08-05T17:10:14.000+09:00 */
|
|
193
193
|
SubSecModifyDate?: ExifDateTime | string;
|
|
194
194
|
}
|
|
195
195
|
export interface APP1Tags {
|
|
@@ -237,8 +237,8 @@ export interface APP1Tags {
|
|
|
237
237
|
GPSDOP?: number;
|
|
238
238
|
/** โโโโ Example: "WGS84" */
|
|
239
239
|
GPSMapDatum?: string;
|
|
240
|
-
/** โโโโ Example:
|
|
241
|
-
GPSValid?:
|
|
240
|
+
/** โโโโ Example: "Yes" */
|
|
241
|
+
GPSValid?: string;
|
|
242
242
|
/** โโโโ Example: "7.4 C" */
|
|
243
243
|
IRWindowTemperature?: string;
|
|
244
244
|
/** โโโโ Example: 1 */
|
|
@@ -595,51 +595,51 @@ export interface EXIFTags {
|
|
|
595
595
|
FocalPlaneXResolution?: number;
|
|
596
596
|
/** โ
โ
โ
โ โ Example: 9846.1538 */
|
|
597
597
|
FocalPlaneYResolution?: number;
|
|
598
|
-
/** โโโโ โ Example: 2 */
|
|
599
|
-
GPSAltitudeRef?:
|
|
598
|
+
/** โโโโ โ Example: "Unknown (2)" */
|
|
599
|
+
GPSAltitudeRef?: string;
|
|
600
600
|
/** โโโโ โ Example: "ๅบไธญๅธ้ทๅใฎๆฃฎๅ็ฉ้คจ" */
|
|
601
601
|
GPSAreaInformation?: string;
|
|
602
602
|
/** โโโโ โ Example: 2020-10-23 */
|
|
603
603
|
GPSDateStamp?: ExifDate | string;
|
|
604
604
|
/** โโโโ โ Example: 86.180049 */
|
|
605
605
|
GPSDestBearing?: number;
|
|
606
|
-
/** โโโโ โ Example: "
|
|
606
|
+
/** โโโโ โ Example: "True North" */
|
|
607
607
|
GPSDestBearingRef?: string;
|
|
608
608
|
/** โโโโ โ Example: 0.030120052 */
|
|
609
609
|
GPSDestDistance?: number;
|
|
610
|
-
/** โโโโ โ Example: "
|
|
610
|
+
/** โโโโ โ Example: "Kilometers" */
|
|
611
611
|
GPSDestDistanceRef?: string;
|
|
612
|
-
/** โโโโ โ Example: "
|
|
612
|
+
/** โโโโ โ Example: "North" */
|
|
613
613
|
GPSDestLatitudeRef?: string;
|
|
614
|
-
/** โโโโ โ Example: "
|
|
614
|
+
/** โโโโ โ Example: "West" */
|
|
615
615
|
GPSDestLongitudeRef?: string;
|
|
616
|
-
/** โโโโ โ Example:
|
|
617
|
-
GPSDifferential?:
|
|
618
|
-
/** โโโโ โ Example: 8.
|
|
619
|
-
GPSHPositioningError?:
|
|
616
|
+
/** โโโโ โ Example: "No Correction" */
|
|
617
|
+
GPSDifferential?: string;
|
|
618
|
+
/** โโโโ โ Example: "8.937059922 m" */
|
|
619
|
+
GPSHPositioningError?: string;
|
|
620
620
|
/** โโโโ โ Example: 94.800416 */
|
|
621
621
|
GPSImgDirection?: number;
|
|
622
|
-
/** โโโโ โ Example: "
|
|
622
|
+
/** โโโโ โ Example: "Unknown ()" */
|
|
623
623
|
GPSImgDirectionRef?: string;
|
|
624
|
-
/** โโโโ โ Example:
|
|
625
|
-
GPSMeasureMode?:
|
|
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: "
|
|
632
|
+
/** โโโโ โ Example: "knots" */
|
|
633
633
|
GPSSpeedRef?: string;
|
|
634
|
-
/** โโโโ โ Example: "
|
|
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: "
|
|
640
|
+
/** โโโโ โ Example: "True North" */
|
|
641
641
|
GPSTrackRef?: string;
|
|
642
|
-
/** โ
โโโ โ Example: "50
|
|
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: "
|
|
674
|
+
/** โโโโ โ Example: "ZEISS" */
|
|
675
675
|
LensMake?: string;
|
|
676
676
|
/** โ
โ
โ
โ
โ Example: "White Fluorescent" */
|
|
677
677
|
LightSource?: string;
|
|
@@ -1181,7 +1181,7 @@ export interface QuickTimeTags {
|
|
|
1181
1181
|
CurrentTime?: string;
|
|
1182
1182
|
/** โโโโ โ Example: "Helvetica" */
|
|
1183
1183
|
FontName?: string;
|
|
1184
|
-
/** โโโโ โ Example: "45.
|
|
1184
|
+
/** โโโโ โ Example: "45 deg 34' 31.08" N, 122 deg 7' 40.44" W" */
|
|
1185
1185
|
GPSCoordinates?: string;
|
|
1186
1186
|
/** โโโโ โ Example: 0 */
|
|
1187
1187
|
GenBalance?: number;
|
|
@@ -4213,7 +4213,7 @@ export interface MakerNotesTags {
|
|
|
4213
4213
|
SoftFocusFilter?: string;
|
|
4214
4214
|
/** โโโโ โ Example: "n/a" */
|
|
4215
4215
|
SoftSkinEffect?: string;
|
|
4216
|
-
/** โโโโ โ Example:
|
|
4216
|
+
/** โโโโ โ Example: 2021-07-23T16:13:55.000-07:00 */
|
|
4217
4217
|
SonyDateTime?: ExifDateTime | string;
|
|
4218
4218
|
/** โโโโ โ Example: 2015-11-26T14:41:25.000 */
|
|
4219
4219
|
SonyDateTime2?: ExifDateTime | string;
|
|
@@ -4243,7 +4243,7 @@ export interface MakerNotesTags {
|
|
|
4243
4243
|
SonyMaxApertureValue?: number;
|
|
4244
4244
|
/** โโโโ โ Example: 34 */
|
|
4245
4245
|
SonyMinAperture?: number;
|
|
4246
|
-
/** โโโโ โ Example: "ZV-
|
|
4246
|
+
/** โโโโ โ Example: "ZV-E10" */
|
|
4247
4247
|
SonyModelID?: string;
|
|
4248
4248
|
/** โโโโ โ Example: "Fine" */
|
|
4249
4249
|
SonyQuality?: string;
|
|
@@ -4713,9 +4713,9 @@ export interface XMPTags {
|
|
|
4713
4713
|
CroppedAreaTopPixels?: number;
|
|
4714
4714
|
/** โโโโ โ Example: 2014-05-11T13:08:25.659-04:00 */
|
|
4715
4715
|
DateAcquired?: ExifDateTime | string;
|
|
4716
|
-
/** โโโโ โ Example: 2017-08-13T12:38:30.000
|
|
4716
|
+
/** โโโโ โ Example: 2017-08-13T12:38:30.000+04:00 */
|
|
4717
4717
|
DateTime?: ExifDateTime | string;
|
|
4718
|
-
/** โโโโ โ Example: 2017-08-13T12:38:30.000
|
|
4718
|
+
/** โโโโ โ Example: 2017-08-13T12:38:30.000+04:00 */
|
|
4719
4719
|
DateTimeDigitized?: ExifDateTime | string;
|
|
4720
4720
|
/** โโโโ โ Example: 2015-06-02T09:56:01.000Z */
|
|
4721
4721
|
DateUTC?: ExifDateTime | string;
|