@camstack/addon-pipeline 1.1.38 → 1.1.40
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 +168 -61
- package/dist/audio-analyzer/index.mjs +168 -61
- package/dist/detection-pipeline/index.js +2 -2
- package/dist/detection-pipeline/index.mjs +2 -2
- package/dist/{dist-CdltGhTt.js → dist-BJTPkJFw.js} +283 -82
- package/dist/{dist-DdZEBePv.mjs → dist-v6cKLmU3.mjs} +284 -77
- package/dist/{frame-handle-plane-zfv8z5a5.js → frame-handle-plane-BP8YV4sF.js} +54 -5
- package/dist/{frame-handle-plane-C0Rzay-b.mjs → frame-handle-plane-DKAXTtfn.mjs} +54 -5
- package/dist/motion-wasm/index.js +1 -1
- package/dist/motion-wasm/index.mjs +1 -1
- package/dist/pipeline-runner/index.js +893 -12
- package/dist/pipeline-runner/index.mjs +892 -13
- package/dist/recorder/index.js +2 -2
- package/dist/recorder/index.mjs +2 -2
- package/dist/session-decode/decode-worker-child.js +511 -0
- package/dist/session-decode/decode-worker-child.mjs +510 -0
- package/dist/stream-broker/_stub.js +44 -44
- package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-CfUpZdH5.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-6I7-nufj.mjs} +3 -3
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DqJvWBKS.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-dGka8yZY.mjs +26 -0
- package/dist/stream-broker/{hostInit-YSFfELtG.mjs → hostInit-CUkFGqiI.mjs} +3 -3
- package/dist/stream-broker/index.js +268 -38
- package/dist/stream-broker/index.mjs +268 -38
- package/dist/stream-broker/remoteEntry.js +1 -1
- package/dist/worker-protocol-BCfO8gUF.js +67 -0
- package/dist/worker-protocol-pk7qdYXt.mjs +56 -0
- package/embed-dist/assets/{MaskShapeCanvas-DI4BY7W2-D3FtMsgt.js → MaskShapeCanvas-DI4BY7W2-Cr_fCzY5.js} +1 -1
- package/embed-dist/assets/{MotionZonesSettings-NcxxQN8r-DidcQOd2.js → MotionZonesSettings-NcxxQN8r-COcvoHDH.js} +1 -1
- package/embed-dist/assets/{PrivacyMaskSettings-APgPLF7p-DyzMlv2v.js → PrivacyMaskSettings-APgPLF7p-Bv-bbyJl.js} +1 -1
- package/embed-dist/assets/index-Ctbq9AXh.css +2 -0
- package/embed-dist/assets/index-jMj5PyJk.js +81 -0
- package/embed-dist/index.html +2 -2
- package/package.json +6 -28
- package/python/inference_pool.py +3 -1
- package/dist/audio-codec-ffmpeg/index.js +0 -1238
- package/dist/audio-codec-ffmpeg/index.mjs +0 -1220
- package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DhY3MZ2C.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-BsrrdOBU.mjs +0 -26
- package/embed-dist/assets/index-C5UpuPr8.css +0 -2
- package/embed-dist/assets/index-Cr7799kl.js +0 -81
package/embed-dist/index.html
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
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-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-jMj5PyJk.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./assets/index-Ctbq9AXh.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
11
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-pipeline",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.40",
|
|
4
4
|
"description": "CamStack Pipeline bundle — runner, detection, motion, audio + stream broker. Multi-entry npm package shipping pipeline addons under a single bundle.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -31,10 +31,6 @@
|
|
|
31
31
|
"import": "./dist/motion-wasm/index.mjs",
|
|
32
32
|
"require": "./dist/motion-wasm/index.js"
|
|
33
33
|
},
|
|
34
|
-
"./audio-codec-ffmpeg": {
|
|
35
|
-
"import": "./dist/audio-codec-ffmpeg/index.mjs",
|
|
36
|
-
"require": "./dist/audio-codec-ffmpeg/index.js"
|
|
37
|
-
},
|
|
38
34
|
"./audio-analyzer": {
|
|
39
35
|
"import": "./dist/audio-analyzer/index.mjs",
|
|
40
36
|
"require": "./dist/audio-analyzer/index.js"
|
|
@@ -139,27 +135,6 @@
|
|
|
139
135
|
"icon": "assets/icon.svg",
|
|
140
136
|
"color": "#0ea5e9"
|
|
141
137
|
},
|
|
142
|
-
{
|
|
143
|
-
"id": "audio-codec-ffmpeg",
|
|
144
|
-
"category": "pipeline",
|
|
145
|
-
"name": "Audio Codec (ffmpeg)",
|
|
146
|
-
"version": "0.1.0",
|
|
147
|
-
"description": "Bidirectional audio codec I/O in an ffmpeg subprocess — decodes camera audio (AAC, Opus, PCMU/PCMA, G.722) into per-consumer PCM sessions and encodes intercom PCM back into camera-supported codecs. A codec crash is isolated to the child; ffmpeg is provisioned per node via ctx.deps.ensureFfmpeg().",
|
|
148
|
-
"entry": "./dist/audio-codec-ffmpeg/index.js",
|
|
149
|
-
"execution": {
|
|
150
|
-
"placement": "any-node",
|
|
151
|
-
"heapProfile": "heavy"
|
|
152
|
-
},
|
|
153
|
-
"capabilities": [
|
|
154
|
-
{
|
|
155
|
-
"name": "audio-codec"
|
|
156
|
-
}
|
|
157
|
-
],
|
|
158
|
-
"passive": true,
|
|
159
|
-
"protected": true,
|
|
160
|
-
"icon": "assets/icon.svg",
|
|
161
|
-
"color": "#0ea5e9"
|
|
162
|
-
},
|
|
163
138
|
{
|
|
164
139
|
"id": "audio-analyzer",
|
|
165
140
|
"category": "pipeline",
|
|
@@ -224,10 +199,12 @@
|
|
|
224
199
|
},
|
|
225
200
|
"capabilities": [
|
|
226
201
|
{
|
|
227
|
-
"name": "recording"
|
|
202
|
+
"name": "recording",
|
|
203
|
+
"optional": true
|
|
228
204
|
},
|
|
229
205
|
{
|
|
230
|
-
"name": "storage-evictable"
|
|
206
|
+
"name": "storage-evictable",
|
|
207
|
+
"optional": true
|
|
231
208
|
}
|
|
232
209
|
],
|
|
233
210
|
"storageLocations": [
|
|
@@ -273,6 +250,7 @@
|
|
|
273
250
|
"@camstack/system": "*",
|
|
274
251
|
"lucide-react": "^0.511.0",
|
|
275
252
|
"mp4box": "0.5.4",
|
|
253
|
+
"node-av": "^6.0.0",
|
|
276
254
|
"sharp": "^0.35.2",
|
|
277
255
|
"zod": "^4.3.6"
|
|
278
256
|
},
|
package/python/inference_pool.py
CHANGED
|
@@ -433,7 +433,9 @@ def _init_runtime(runtime: str) -> None:
|
|
|
433
433
|
import coremltools as ct
|
|
434
434
|
_runtime_lib = ct
|
|
435
435
|
elif runtime == "openvino":
|
|
436
|
-
|
|
436
|
+
# `openvino.runtime` is deprecated (removed in a future OpenVINO release);
|
|
437
|
+
# `Core` is exported from the top-level `openvino` namespace.
|
|
438
|
+
from openvino import Core
|
|
437
439
|
_runtime_lib = Core()
|
|
438
440
|
elif runtime == "onnxruntime":
|
|
439
441
|
import onnxruntime as ort
|