Iñaki Baz Castillo

Results 550 comments of Iñaki Baz Castillo

NOTE: I do not even need to establish a session with a peer, but just create a `RTCPeerConnection`, attach it the local `MediaStream` and then call `pc.close()`.

The fact is that it does not crash on `PC.close()` but when calling it and **also** `MediaStream.close()`. You can check it here: http://rtcninja.aliax.net/ Just click Start, Stop, and Start again...

Yes, I removed the "closeMediaStream(localStream") once the PeerConnection is closed. I've re-enabled it and yes, it freezes Safari.

2015-06-30 11:22 GMT+02:00 Jacques-Olivier Haché [email protected]: > FYI, I tested against our current internal build and the issue was gone. > A new version including this fix should be released...

> Right now it's not possible due the order of the elements on each container and the css positions. Have you considered using flexbox in the notifications container so the...

Let my clarify that I'm not asking for this `dtls` lib to do SRTP I/O at all. I just meant that it may enable it by negotiating `use_srtp` DTLS extension...

Yes, I already waited for DTLS connection in my pseudo code above: ```js // Wait for DTLS to be connected. await new Promise((resolve) => dtlsConnection.on('connect', resolve)); ``` :)

Let me just one question more, please. I'm looking for the best way to implement DataChannel in my SFU [mediasoup](https://mediasoup.org). mediasoup is Node with C++ subprocesses that handle media (UDP,...

Thanks to both for your comments. So now there are two Node SCTP implementations that can run over DTLS: * [@nodertc/sctp](https://github.com/nodertc/sctp), which accepts a duplex stream as transport. * [@latysheff/node-sctp](https://github.com/latysheff/node-sctp),...