owt-client-javascript
owt-client-javascript copied to clipboard
Open WebRTC Toolkit JavaScript SDK
https://github.com/open-webrtc-toolkit/owt-client-javascript/blob/main/src/sdk/conference/client.js#L357 When I publish 1 stream with audio & video and subscribe it, the statement is executed twice. Then there're 2 ID map to same channel, which causes later events...
For debugging purposes, I have currently added the following subscriptions: ```javascript subscription.addEventListener("mute", console.debug); subscription.addEventListener("unmute", console.debug); subscription.stream.getAudioTracks().forEach((t) => { t.addEventListener("mute", console.debug); t.addEventListener("unmute", console.debug); }) subscription.stream.getVideoTracks().forEach((t) => { t.addEventListener("mute", console.debug); t.addEventListener("unmute", console.debug);...
Hi, I publish a stream with audio and video, but later I disabled the audio/video, other user subscribed the stream and he wants to know the status of the stream...
Cherry pick from #323
Hi, I couldn't find an API to update the Video / Audio source without creating a new `Owt.Base.LocalStream` and calling `conference.publish` again. Is implementing something this without republishing currently possible?...
Hi All , I wanted to ask is there any way find if my current publishing video bandwidth is not enough due to network condition I want to switch off...
Hi, Is there any way to fetch updated ConferenceInfo object ? Thank You.
Hi, I had a query regarding simulcast mode, will the framework adjusts the bit rate according to various receivers bandwidth limitations or we have to do it manually ? Thank...
Hi, In simulcast mode, different rid got generated instead of specified one when stream got published using iOS safari. In desktop chrome it worked fine. Can someone help me on...