ossrs / go-oryx-lib

The public multiple media library for https://github.com/ossrs/oryx.
MIT License
107 stars 53 forks source link

support QUIC protocol for real time Peer to peer #4

Open ghost opened 7 years ago

ghost commented 7 years ago

QUIC the protocol google chrome, youtube and google hangouts uses for streaming.

Here is a good write up of it. https://bloggeek.me/quic-webrtc/

Its uses UDP with a congestion control, and its basically replaces the old SCTP

there is a 100% golang lib here: https://github.com/lucas-clemente/quic-go

Its very easy to use and requires https / h2.

Also this is a good description of it too. https://www.callstats.io/2017/02/03/web-protocols-http2-quic/

winlinvip commented 7 years ago

Great~