A selective forwarding unit is a video routing service which allows webrtc sessions to scale more efficiently. This package provides a simple, flexible, high performance Go implementation of a WebRTC SFU. It can be called directly or through a gRPC or json-rpc interface.
If you have a local golang environment already setup, simply run
go build ./cmd/server/json-rpc/main.go && ./main -c config.toml
If you prefer a containerized environment, you can use the included Docker image
docker run -p 50051:50051 -p 5000-5020:5000-5020/udp pionwebrtc/ion-sfu:v1.0.6-jsonrpc
If you have a local golang environment already setup, simply run
go build ./cmd/server/grpc/main.go && ./main -c config.toml
If you prefer a containerized environment, you can use the included Docker image
docker run -p 50051:50051 -p 5000-5020:5000-5020/udp pionwebrtc/ion-sfu:v1.0.6-grpc
To get an idea of how to interact with the ion-sfu instance, check out our examples.
ion-sfu
supports real-time processing on media streamed through the sfu using ion-avp
.
For an example of recording a MediaStream to webm, checkout the save-to-webm example.
MIT License - see LICENSE for full text