hanc-webrtc-widgets 2.3.0 → 2.3.1
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.
|
@@ -17312,54 +17312,53 @@ class wd extends EventTarget {
|
|
|
17312
17312
|
const { token: r, url: a, room_name: o, user_identity: c } = await s.json();
|
|
17313
17313
|
this.roomName = o, this.userIdentity = c, this.reconnectAttempts = 0, this.wasConnectedBeforeHidden = !1, await this.connectWithTimeout(n, a, r, 2e4);
|
|
17314
17314
|
try {
|
|
17315
|
-
|
|
17316
|
-
|
|
17317
|
-
|
|
17318
|
-
|
|
17315
|
+
n.startAudio().then(() => {
|
|
17316
|
+
console.log("[LiveKit] Audio playback started");
|
|
17317
|
+
}).catch((l) => {
|
|
17318
|
+
console.warn("[LiveKit] Failed to start audio:", l);
|
|
17319
|
+
});
|
|
17319
17320
|
} catch (l) {
|
|
17320
17321
|
console.warn("[LiveKit] Failed to start audio:", l);
|
|
17321
17322
|
}
|
|
17322
|
-
this.updateStatus("connected"), this.isReady = !0,
|
|
17323
|
-
this.
|
|
17324
|
-
|
|
17325
|
-
|
|
17326
|
-
|
|
17327
|
-
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
17332
|
-
|
|
17333
|
-
|
|
17334
|
-
|
|
17335
|
-
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
|
|
17340
|
-
|
|
17341
|
-
|
|
17342
|
-
|
|
17343
|
-
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
|
|
17350
|
-
);
|
|
17351
|
-
}
|
|
17352
|
-
} catch (d) {
|
|
17353
|
-
console.warn("[LiveKit] Error getting local audio track:", d);
|
|
17323
|
+
this.updateStatus("connected"), this.isReady = !0, this.scheduleTimer(async () => {
|
|
17324
|
+
if (this.isDestroyed || !this.room || this.room.state !== "connected") {
|
|
17325
|
+
t.then((d) => {
|
|
17326
|
+
d && d.getTracks().forEach((u) => u.stop());
|
|
17327
|
+
});
|
|
17328
|
+
return;
|
|
17329
|
+
}
|
|
17330
|
+
const l = await Promise.race([
|
|
17331
|
+
t,
|
|
17332
|
+
new Promise((d) => setTimeout(() => d(null), 1500))
|
|
17333
|
+
]);
|
|
17334
|
+
if (l)
|
|
17335
|
+
try {
|
|
17336
|
+
await n.localParticipant.setMicrophoneEnabled(!0, {
|
|
17337
|
+
echoCancellation: !0,
|
|
17338
|
+
noiseSuppression: !0,
|
|
17339
|
+
autoGainControl: !this.isAppleDevice
|
|
17340
|
+
}), this.microphoneEnabled = !0, this.dispatchEvent(new CustomEvent("microphone-enabled")), l.getTracks().forEach((d) => d.stop()), this.scheduleTimer(() => {
|
|
17341
|
+
if (!(this.isDestroyed || !this.room || this.room.state !== "connected"))
|
|
17342
|
+
try {
|
|
17343
|
+
const d = Array.from(n.localParticipant.audioTrackPublications.values()).find((u) => u.kind === "audio");
|
|
17344
|
+
if (d != null && d.track) {
|
|
17345
|
+
const u = d.track.mediaStreamTrack;
|
|
17346
|
+
u && this.dispatchEvent(
|
|
17347
|
+
new CustomEvent("local-audio-track", {
|
|
17348
|
+
detail: u
|
|
17349
|
+
})
|
|
17350
|
+
);
|
|
17354
17351
|
}
|
|
17355
|
-
|
|
17356
|
-
|
|
17357
|
-
|
|
17358
|
-
}
|
|
17359
|
-
|
|
17360
|
-
this.microphoneEnabled = !1, this.dispatchEvent(new CustomEvent("microphone-disabled"));
|
|
17361
|
-
|
|
17362
|
-
|
|
17352
|
+
} catch (d) {
|
|
17353
|
+
console.warn("[LiveKit] Error getting local audio track:", d);
|
|
17354
|
+
}
|
|
17355
|
+
}, 100);
|
|
17356
|
+
} catch (d) {
|
|
17357
|
+
console.warn("Could not enable microphone on connect:", d), this.microphoneEnabled = !1, this.dispatchEvent(new CustomEvent("microphone-disabled"));
|
|
17358
|
+
}
|
|
17359
|
+
else
|
|
17360
|
+
this.microphoneEnabled = !1, this.dispatchEvent(new CustomEvent("microphone-disabled"));
|
|
17361
|
+
}, 0), this.dispatchEvent(
|
|
17363
17362
|
new CustomEvent("room-connected", {
|
|
17364
17363
|
detail: { roomName: o, identity: c }
|
|
17365
17364
|
})
|