Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bastidood/webrtc-broadcast

An example implementation for a one-to-many WebRTC broadcast written in Rust.
https://github.com/bastidood/webrtc-broadcast

javascript rust typescript webrtc

Last synced: about 1 month ago
JSON representation

An example implementation for a one-to-many WebRTC broadcast written in Rust.

Awesome Lists containing this project

README

        

# WebRTC Broadcast
This project demonstrates an example implementation for a one-to-many broadcast stream via WebRTC. To be network-friendly towards the host, an intermediary server is involved so that the host uploads their stream only once (to the server). Then, the server clones and forwards the host's media packets to each of the client peers. Nevertheless, all of the media transport and stream maintenance are still handled by WebRTC.

See the READMEs of the [front-end](./client/README.md) and the [back-end](./server/README.md) for more details on build instructions and overall architecture.