@camstack/addon-decoder-ffmpeg 0.1.12 → 1.1.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/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@camstack/addon-decoder-ffmpeg",
3
- "version": "0.1.12",
4
- "description": "FFmpeg-based video decoder (software decode via child process, JPEG pipe output)",
3
+ "version": "1.1.1",
4
+ "description": "Standalone ffmpeg-subprocess decoder fallback addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",
7
7
  "addon",
8
8
  "camstack-addon",
9
9
  "decoder",
10
- "ffmpeg"
10
+ "ffmpeg",
11
+ "pipeline"
11
12
  ],
12
13
  "license": "MIT",
13
14
  "repository": {
@@ -26,26 +27,30 @@
26
27
  "./package.json": "./package.json"
27
28
  },
28
29
  "camstack": {
29
- "displayName": "Decoder (FFmpeg)",
30
+ "displayName": "Decoder (ffmpeg)",
31
+ "system": false,
30
32
  "addons": [
31
33
  {
32
34
  "id": "decoder-ffmpeg",
33
- "name": "Decoder (FFmpeg)",
35
+ "category": "pipeline",
36
+ "name": "Decoder (ffmpeg)",
34
37
  "version": "0.1.0",
35
- "description": "FFmpeg-based video decoder via child process",
38
+ "description": "Explicit fallback video decoder spawning an ffmpeg subprocess. Registers the decoder cap only when this node's decoder backend setting selects ffmpeg; node-av is the default backend.",
36
39
  "entry": "./dist/index.js",
37
40
  "execution": {
38
41
  "placement": "any-node",
39
- "group": "pipeline"
42
+ "heapProfile": "heavy"
40
43
  },
41
44
  "capabilities": [
42
45
  {
43
- "name": "decoder"
46
+ "name": "decoder",
47
+ "optional": true
44
48
  }
45
49
  ],
46
50
  "passive": true,
51
+ "protected": true,
47
52
  "icon": "assets/icon.svg",
48
- "color": "#16a34a"
53
+ "color": "#0ea5e9"
49
54
  }
50
55
  ]
51
56
  },
@@ -55,16 +60,23 @@
55
60
  ],
56
61
  "scripts": {
57
62
  "build": "vite build",
63
+ "dev": "vite build --watch",
58
64
  "typecheck": "tsc --noEmit",
59
- "test": "vitest run --passWithNoTests"
65
+ "test": "vitest run",
66
+ "publish": "npm publish --access public"
60
67
  },
61
68
  "peerDependencies": {
62
- "@camstack/types": "^0.1.0"
69
+ "@camstack/types": "*"
70
+ },
71
+ "dependencies": {
72
+ "zod": "^4.3.6"
63
73
  },
64
74
  "devDependencies": {
75
+ "@camstack/sdk": "*",
76
+ "@camstack/shm-ring": "*",
65
77
  "@camstack/types": "*",
66
- "tsup": "^8.0.0",
67
- "typescript": "~5.9.0",
68
- "vitest": "^3.0.0"
78
+ "typescript": "~6.0.3",
79
+ "vite": "^8.0.11",
80
+ "vitest": "^3.2.4"
69
81
  }
70
82
  }