├── 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 | How to send a MediaStreamTrack with ORTC 5 | 15 | 16 | 17 |
18 | 19 | 20 |

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 |
24 | 78 | 79 | 80 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | How to send a MediaStreamTrack with ORTC 5 | 15 | 16 | 17 |
18 | 19 | 20 |

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 |
24 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /quic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | How to send a data over a quic stream 5 | 32 | 33 | 34 |
35 |
36 |

Send

37 | 39 |
40 |
41 | 42 |
43 |
44 |

Receive

45 | 46 |
47 |

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 |

54 |
55 | 148 | 149 | 150 | --------------------------------------------------------------------------------