@camstack/addon-pipeline 0.1.13 → 0.1.14
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-nodeav/index.js +1 -1
- package/dist/audio-codec-nodeav/index.mjs +1 -1
- package/dist/decoder-nodeav/index.js +1 -1
- package/dist/decoder-nodeav/index.mjs +1 -1
- package/dist/detection-pipeline/index.js +1 -1
- package/dist/detection-pipeline/index.mjs +1 -1
- package/dist/{index-BBpVDiWL.js → index-CFPKrb2Y.js} +29 -231
- package/dist/index-CFPKrb2Y.js.map +1 -0
- package/dist/{index-BwLnHesq.mjs → index-DKh0uEve.mjs} +29 -231
- package/dist/index-DKh0uEve.mjs.map +1 -0
- package/dist/motion-wasm/index.js +1 -1
- package/dist/motion-wasm/index.mjs +1 -1
- package/dist/pipeline-runner/index.js +1 -1
- package/dist/pipeline-runner/index.mjs +1 -1
- package/dist/stream-broker/@mf-types.zip +0 -0
- package/dist/stream-broker/__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs-CpCK52pE.mjs +19 -0
- package/dist/stream-broker/__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.mjs-BN3K4dM8.mjs +20 -0
- package/dist/stream-broker/_stub.js +1 -1
- package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-B8d_i3jf.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-CqeKw-Ig.mjs} +6 -6
- package/dist/stream-broker/{hostInit-oba_vMZE.mjs → hostInit-DkjoXTMb.mjs} +6 -6
- package/dist/stream-broker/{index-COebxMhm.mjs → index-BP0-1QYT.mjs} +1923 -2181
- package/dist/stream-broker/{index-BkB3U-Tc.mjs → index-DKercbDS.mjs} +572 -569
- package/dist/stream-broker/{index-BAZcm437.mjs → index-lmXLeXy8.mjs} +1 -1
- package/dist/stream-broker/index.js +4 -4
- package/dist/stream-broker/index.js.map +1 -1
- package/dist/stream-broker/index.mjs +4 -4
- package/dist/stream-broker/index.mjs.map +1 -1
- package/dist/stream-broker/remoteEntry.js +1 -1
- package/package.json +1 -1
- package/dist/index-BBpVDiWL.js.map +0 -1
- package/dist/index-BwLnHesq.mjs.map +0 -1
- package/dist/stream-broker/__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs-p-Z3JTk9.mjs +0 -19
- package/dist/stream-broker/__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.mjs-MYpjp-jd.mjs +0 -20
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as _e, b as x, A as be, n as ve } from "./__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_trpc_mf_1_client__loadShare__.mjs-DeouEaSs.mjs";
|
|
2
|
-
import { _ as V, a as Ee } from "./__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs-
|
|
2
|
+
import { _ as V, a as Ee } from "./__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.mjs-CpCK52pE.mjs";
|
|
3
3
|
class Pe {
|
|
4
4
|
constructor() {
|
|
5
5
|
this.keyToValue = /* @__PURE__ */ new Map(), this.valueToKey = /* @__PURE__ */ new Map();
|
|
@@ -22,7 +22,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
mod
|
|
23
23
|
));
|
|
24
24
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
25
|
-
const index = require("../index-
|
|
25
|
+
const index = require("../index-CFPKrb2Y.js");
|
|
26
26
|
const net = require("node:net");
|
|
27
27
|
const crypto = require("node:crypto");
|
|
28
28
|
const net$1 = require("net");
|
|
@@ -10267,9 +10267,9 @@ class StreamBrokerAddon extends index.BaseAddon {
|
|
|
10267
10267
|
const webrtcServer = new BrokerWebrtcServer({
|
|
10268
10268
|
logger: this.ctx.logger.child("webrtc"),
|
|
10269
10269
|
getIceServers: async () => {
|
|
10270
|
-
if (!turnApi.
|
|
10270
|
+
if (!turnApi.turnProvider) return [];
|
|
10271
10271
|
try {
|
|
10272
|
-
const servers = await turnApi.
|
|
10272
|
+
const servers = await turnApi.turnProvider.getTurnServers.query();
|
|
10273
10273
|
const out = [];
|
|
10274
10274
|
for (const s of servers) {
|
|
10275
10275
|
if (!s.urls || Array.isArray(s.urls) && s.urls.length === 0) continue;
|
|
@@ -10281,7 +10281,7 @@ class StreamBrokerAddon extends index.BaseAddon {
|
|
|
10281
10281
|
}
|
|
10282
10282
|
return out;
|
|
10283
10283
|
} catch (err) {
|
|
10284
|
-
this.ctx.logger.warn("
|
|
10284
|
+
this.ctx.logger.warn("turnProvider.getTurnServers failed — session will start without TURN", {
|
|
10285
10285
|
meta: { error: err instanceof Error ? err.message : String(err) }
|
|
10286
10286
|
});
|
|
10287
10287
|
return [];
|