@quatrain/worker 1.1.15 → 1.1.16

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/lib/FileSystem.js CHANGED
@@ -156,7 +156,7 @@ class FileSystem {
156
156
  * Return meta data on given file
157
157
  */
158
158
  static getInfo = (file) => {
159
- if (file.endsWith('.mp4')) {
159
+ if (file.endsWith('.mp4') || file.endsWith('.insv')) {
160
160
  return new Promise((resolve, reject) => ffmpeg.ffprobe(file, (err, metadata) => {
161
161
  if (err) {
162
162
  Worker_1.Worker.error(err);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/worker",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "description": "Container Worker helpers",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -25,9 +25,9 @@
25
25
  "typescript": "^5.1.5"
26
26
  },
27
27
  "dependencies": {
28
- "@quatrain/core": "^1.1.12",
28
+ "@quatrain/core": "^1.1.14",
29
29
  "axios": "^1.7.7",
30
- "fluent-ffmpeg": "^2.1.3",
30
+ "fluent-ffmpeg": "^2.1.2",
31
31
  "fs-extra": "^11.2.0",
32
32
  "node-fetch-native": "^1.6.4"
33
33
  },