@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,4 +1,4 @@
|
|
|
1
|
-
import { e as errMsg, J as maskUrlCredentials, R as RingBuffer, E as EventCategory, K as CAM_PROFILE_ORDER, L as DeviceFeature, B as BaseAddon, M as asJsonObject, N as streamBrokerCapability, O as cameraStreamsCapability, P as webrtcSessionCapability, Q as addonWidgetsSourceCapability, f as createEvent } from "../index-
|
|
1
|
+
import { e as errMsg, J as maskUrlCredentials, R as RingBuffer, E as EventCategory, K as CAM_PROFILE_ORDER, L as DeviceFeature, B as BaseAddon, M as asJsonObject, N as streamBrokerCapability, O as cameraStreamsCapability, P as webrtcSessionCapability, Q as addonWidgetsSourceCapability, f as createEvent } from "../index-DKh0uEve.mjs";
|
|
2
2
|
import * as net from "node:net";
|
|
3
3
|
import net__default from "node:net";
|
|
4
4
|
import * as crypto from "node:crypto";
|
|
@@ -10224,9 +10224,9 @@ class StreamBrokerAddon extends BaseAddon {
|
|
|
10224
10224
|
const webrtcServer = new BrokerWebrtcServer({
|
|
10225
10225
|
logger: this.ctx.logger.child("webrtc"),
|
|
10226
10226
|
getIceServers: async () => {
|
|
10227
|
-
if (!turnApi.
|
|
10227
|
+
if (!turnApi.turnProvider) return [];
|
|
10228
10228
|
try {
|
|
10229
|
-
const servers = await turnApi.
|
|
10229
|
+
const servers = await turnApi.turnProvider.getTurnServers.query();
|
|
10230
10230
|
const out = [];
|
|
10231
10231
|
for (const s of servers) {
|
|
10232
10232
|
if (!s.urls || Array.isArray(s.urls) && s.urls.length === 0) continue;
|
|
@@ -10238,7 +10238,7 @@ class StreamBrokerAddon extends BaseAddon {
|
|
|
10238
10238
|
}
|
|
10239
10239
|
return out;
|
|
10240
10240
|
} catch (err) {
|
|
10241
|
-
this.ctx.logger.warn("
|
|
10241
|
+
this.ctx.logger.warn("turnProvider.getTurnServers failed — session will start without TURN", {
|
|
10242
10242
|
meta: { error: err instanceof Error ? err.message : String(err) }
|
|
10243
10243
|
});
|
|
10244
10244
|
return [];
|