@camstack/addon-pipeline 1.1.25 → 1.1.27
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/dist/audio-analyzer/index.js +1 -1
- package/dist/audio-analyzer/index.mjs +1 -1
- package/dist/audio-codec-ffmpeg/index.js +1 -1
- package/dist/audio-codec-ffmpeg/index.mjs +1 -1
- package/dist/constants-CAqYVigN.js +6615 -0
- package/dist/constants-oYgW36Ty.mjs +3587 -0
- package/dist/decoder-ffmpeg/index.js +34 -273
- package/dist/decoder-ffmpeg/index.mjs +33 -272
- package/dist/decoder-nodeav/index.js +1213 -0
- package/dist/decoder-nodeav/index.mjs +1205 -0
- package/dist/detection-pipeline/index.js +148 -26
- package/dist/detection-pipeline/index.mjs +148 -26
- package/dist/{dist-BecXbIzJ.mjs → dist-CgEP_0OL.mjs} +730 -14
- package/dist/dist-D3Ytt-_Y.js +41111 -0
- package/dist/{dist-wzWBZ26C.js → dist-DAIlCdAx.js} +730 -14
- package/dist/dist-DluJuxV5.mjs +37976 -0
- package/dist/{frame-handle-plane-DGg0Aevs.mjs → frame-handle-plane-Dq20KtKL.mjs} +1 -1
- package/dist/{frame-handle-plane-BAKiW6t4.js → frame-handle-plane-DtTRX_0n.js} +1 -1
- package/dist/frame-ring-sink-B_NvPTJZ.mjs +316 -0
- package/dist/frame-ring-sink-BbzrqTWj.js +339 -0
- package/dist/motion-wasm/index.js +1 -1
- package/dist/motion-wasm/index.mjs +1 -1
- package/dist/pipeline-runner/index.js +38 -9
- package/dist/pipeline-runner/index.mjs +38 -9
- package/dist/recorder/index.js +1 -1
- package/dist/recorder/index.mjs +1 -1
- package/dist/stream-broker/_stub.js +2 -2
- package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-CWPU9tbs.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-5tQlh9h4.mjs} +2 -2
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-CkOPfV8r.mjs +26 -0
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-BJK0-svt.mjs +26 -0
- package/dist/stream-broker/{hostInit-B7Fx3R_6.mjs → hostInit-DyLqyJaS.mjs} +2 -2
- package/dist/stream-broker/index.js +22 -17
- package/dist/stream-broker/index.mjs +22 -17
- package/dist/stream-broker/remoteEntry.js +1 -1
- package/embed-dist/assets/{MaskShapeCanvas-DI4BY7W2-CPkQfKnu.js → MaskShapeCanvas-DI4BY7W2-BDLNwJ_F.js} +1 -1
- package/embed-dist/assets/{MotionZonesSettings-NcxxQN8r-DlLMQBag.js → MotionZonesSettings-NcxxQN8r-CoLjNiUN.js} +1 -1
- package/embed-dist/assets/{PrivacyMaskSettings-APgPLF7p-kNcauIAN.js → PrivacyMaskSettings-APgPLF7p-DJE3OU-q.js} +1 -1
- package/embed-dist/assets/index-C-pL8ETk.js +81 -0
- package/embed-dist/index.html +1 -1
- package/package.json +31 -3
- package/python/inference_pool.py +520 -29
- package/python/test_inference_pool_backpressure.py +121 -0
- package/python/test_inference_pool_coreml_cache.py +416 -0
- package/python/test_inference_pool_device_selection.py +255 -0
- package/python/yamnet_audio.py +1 -1
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-wfWYFiTT.mjs +0 -26
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-lpFwIH9e.mjs +0 -26
- package/embed-dist/assets/index-xpPLFfsT.js +0 -80
package/embed-dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
6
|
<title>CamStack Embed</title>
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-C-pL8ETk.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="./assets/index-DrJ0ee3f.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-pipeline",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.27",
|
|
4
4
|
"description": "CamStack Pipeline bundle — runner, detection, motion, decoders, audio + stream broker. Multi-entry npm package shipping 7 addons under a single bundle.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"import": "./dist/decoder-ffmpeg/index.mjs",
|
|
37
37
|
"require": "./dist/decoder-ffmpeg/index.js"
|
|
38
38
|
},
|
|
39
|
+
"./decoder-nodeav": {
|
|
40
|
+
"import": "./dist/decoder-nodeav/index.mjs",
|
|
41
|
+
"require": "./dist/decoder-nodeav/index.js"
|
|
42
|
+
},
|
|
39
43
|
"./audio-codec-ffmpeg": {
|
|
40
44
|
"import": "./dist/audio-codec-ffmpeg/index.mjs",
|
|
41
45
|
"require": "./dist/audio-codec-ffmpeg/index.js"
|
|
@@ -149,7 +153,7 @@
|
|
|
149
153
|
"category": "pipeline",
|
|
150
154
|
"name": "Decoder (ffmpeg)",
|
|
151
155
|
"version": "0.1.0",
|
|
152
|
-
"description": "Out-of-process video decoder spawning an ffmpeg subprocess —
|
|
156
|
+
"description": "Out-of-process video decoder spawning an ffmpeg subprocess — a decode crash is isolated to the child, never taking down the runner. The DEFAULT decoder backend: it registers the decoder cap only when the node's `decoder` settings section selects `ffmpeg` (the default). ffmpeg is provisioned per node via ctx.deps.ensureFfmpeg().",
|
|
153
157
|
"entry": "./dist/decoder-ffmpeg/index.js",
|
|
154
158
|
"execution": {
|
|
155
159
|
"placement": "any-node",
|
|
@@ -157,7 +161,30 @@
|
|
|
157
161
|
},
|
|
158
162
|
"capabilities": [
|
|
159
163
|
{
|
|
160
|
-
"name": "decoder"
|
|
164
|
+
"name": "decoder",
|
|
165
|
+
"optional": true
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"passive": true,
|
|
169
|
+
"protected": true,
|
|
170
|
+
"icon": "assets/icon.svg",
|
|
171
|
+
"color": "#0ea5e9"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "decoder-nodeav",
|
|
175
|
+
"category": "pipeline",
|
|
176
|
+
"name": "Decoder (node-av)",
|
|
177
|
+
"version": "0.1.0",
|
|
178
|
+
"description": "In-process video decoder using FFmpeg native bindings (node-av) — no subprocess lifecycle (nothing to spawn, supervise, or leak). Registers the decoder cap only when the node's `decoder` settings section selects `nodeav`; decoder-ffmpeg is the default backend.",
|
|
179
|
+
"entry": "./dist/decoder-nodeav/index.js",
|
|
180
|
+
"execution": {
|
|
181
|
+
"placement": "any-node",
|
|
182
|
+
"heapProfile": "heavy"
|
|
183
|
+
},
|
|
184
|
+
"capabilities": [
|
|
185
|
+
{
|
|
186
|
+
"name": "decoder",
|
|
187
|
+
"optional": true
|
|
161
188
|
}
|
|
162
189
|
],
|
|
163
190
|
"passive": true,
|
|
@@ -299,6 +326,7 @@
|
|
|
299
326
|
"@camstack/system": "*",
|
|
300
327
|
"lucide-react": "^0.511.0",
|
|
301
328
|
"mp4box": "0.5.4",
|
|
329
|
+
"node-av": "^6.0.0",
|
|
302
330
|
"sharp": "^0.35.2",
|
|
303
331
|
"zod": "^4.3.6"
|
|
304
332
|
},
|