├── README.md ├── doublecandidate.html ├── index.html └── quic.html /README.md: -------------------------------------------------------------------------------- 1 | # First steps with ORTC 2 | See https://webrtchacks.com/first-steps-ortc/ 3 | 4 | # License 5 | MIT 6 | -------------------------------------------------------------------------------- /doublecandidate.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |21 | This shows how to send a MediaStreamTrack with ORTC. Note that ORTC is only supported in Microsoft Edge right now and (at the time of this writing) is considered experimental. 22 |
23 |21 | This shows how to send a MediaStreamTrack with ORTC. Note that ORTC is only supported in Microsoft Edge right now and (at the time of this writing) is considered experimental. 22 |
23 |
48 | This shows how to send data over a quic stream ontop of an ICE transport. Note that QUIC support in Google Chrome is non-standard at this point and severely deviating from the specification. See here for more information.
49 | To run this in Chrome 73 you may need to start Chrome with these command line arguments:
50 |
51 | --enable-blink-features=RTCQuicTransport,RTCIceTransportExtension
52 |
53 |