@camstack/addon-pipeline 1.1.17 → 1.1.19

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.
Files changed (31) hide show
  1. package/dist/audio-analyzer/index.js +1 -1
  2. package/dist/audio-analyzer/index.mjs +1 -1
  3. package/dist/audio-codec-nodeav/index.js +1 -1
  4. package/dist/audio-codec-nodeav/index.mjs +1 -1
  5. package/dist/decoder-ffmpeg/index.js +1179 -0
  6. package/dist/decoder-ffmpeg/index.mjs +1162 -0
  7. package/dist/detection-pipeline/index.js +1 -1
  8. package/dist/detection-pipeline/index.mjs +1 -1
  9. package/dist/{dist-CBcVKDyT.mjs → dist-7Yx2dmuV.mjs} +1 -0
  10. package/dist/{dist-CRzS7bK1.js → dist-BgoBMCez.js} +1 -0
  11. package/dist/ffmpeg-args-common-CASoNt42.js +68 -0
  12. package/dist/ffmpeg-args-common-c3p-nWtU.mjs +51 -0
  13. package/dist/motion-wasm/index.js +1 -1
  14. package/dist/motion-wasm/index.mjs +1 -1
  15. package/dist/pipeline-runner/index.js +1 -1
  16. package/dist/pipeline-runner/index.mjs +1 -1
  17. package/dist/recorder/index.js +1 -1
  18. package/dist/recorder/index.mjs +1 -1
  19. package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-Cu2RfLyo.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-w2pP0MYO.mjs} +1 -1
  20. package/dist/stream-broker/{hostInit-D2VENktw.mjs → hostInit-BUEbBinp.mjs} +1 -1
  21. package/dist/stream-broker/index.js +68 -73
  22. package/dist/stream-broker/index.mjs +58 -63
  23. package/dist/stream-broker/remoteEntry.js +1 -1
  24. package/embed-dist/assets/{MaskShapeCanvas-DI4BY7W2-ohKbGSOY.js → MaskShapeCanvas-DI4BY7W2-CYmHXacX.js} +1 -1
  25. package/embed-dist/assets/{MotionZonesSettings-NcxxQN8r-m6kOetLh.js → MotionZonesSettings-NcxxQN8r-B-BkPQvX.js} +1 -1
  26. package/embed-dist/assets/{PrivacyMaskSettings-APgPLF7p-BNbgX3su.js → PrivacyMaskSettings-APgPLF7p-DC3Jw85p.js} +1 -1
  27. package/embed-dist/assets/{index-CqqHOFtM.js → index-B0IQgci0.js} +4 -4
  28. package/embed-dist/index.html +1 -1
  29. package/package.json +8 -8
  30. package/dist/decoder-nodeav/index.js +0 -1393
  31. package/dist/decoder-nodeav/index.mjs +0 -1385
@@ -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-CqqHOFtM.js"></script>
7
+ <script type="module" crossorigin src="./assets/index-B0IQgci0.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="./assets/index-C7SSikPl.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.17",
3
+ "version": "1.1.19",
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",
@@ -32,9 +32,9 @@
32
32
  "import": "./dist/motion-wasm/index.mjs",
33
33
  "require": "./dist/motion-wasm/index.js"
34
34
  },
35
- "./decoder-nodeav": {
36
- "import": "./dist/decoder-nodeav/index.mjs",
37
- "require": "./dist/decoder-nodeav/index.js"
35
+ "./decoder-ffmpeg": {
36
+ "import": "./dist/decoder-ffmpeg/index.mjs",
37
+ "require": "./dist/decoder-ffmpeg/index.js"
38
38
  },
39
39
  "./audio-codec-nodeav": {
40
40
  "import": "./dist/audio-codec-nodeav/index.mjs",
@@ -145,12 +145,12 @@
145
145
  "color": "#0ea5e9"
146
146
  },
147
147
  {
148
- "id": "decoder-nodeav",
148
+ "id": "decoder-ffmpeg",
149
149
  "category": "pipeline",
150
- "name": "Decoder (node-av)",
150
+ "name": "Decoder (ffmpeg)",
151
151
  "version": "0.1.0",
152
- "description": "Hardware-accelerated video decoder using FFmpeg native bindings",
153
- "entry": "./dist/decoder-nodeav/index.js",
152
+ "description": "Out-of-process video decoder spawning an ffmpeg subprocess — VA-API safe on Intel (a decode crash is isolated to the child, never taking down the runner). The sole decoder; ffmpeg is provisioned per node via ctx.deps.ensureFfmpeg().",
153
+ "entry": "./dist/decoder-ffmpeg/index.js",
154
154
  "execution": {
155
155
  "placement": "any-node",
156
156
  "heapProfile": "heavy"