Simulcast
Simulcast is a feature of WebRTC that allows a publisher to send multiple streams of the same media at different qualities. For example, this is useful for scenarios where you want to send a high quality stream for desktop users and a lower quality stream for mobile users.
graph LR A[Publisher] -->|Low quality| B[Cloudflare Calls SFU] A -->|Medium quality| B A -->|High quality| B B -->|Low quality| C@{ shape: procs, label: "Subscribers"} B -->|Medium quality| D@{ shape: procs, label: "Subscribers"} B -->|High quality| E@{ shape: procs, label: "Subscribers"}
Simulcast in WebRTC allows a single media source, like a camera or screen share, to be encoded at multiple quality levels and sent simultaneously, which is beneficial for subscribers with varying network conditions and device capabilities. The media source is encoded into multiple streams, each identified by RIDs (RTP Stream Identifiers) for different quality levels, such as low, medium, and high. These simulcast streams are described in the SDP you send to Cloudflare Calls SFU. It's the responsibility of the Cloudflare Calls SFU to ensure that the appropriate quality stream is delivered to each subscriber based on their network conditions and device capabilities.
Cloudflare Calls SFU will automatically handle the simulcast configuration based on the SDP you send to it from the publisher. The SFU will then automatically switch between the different quality levels based on the subscriber's network conditions. You can control the quality switching behavior using the simulcast
configuration object when you send an API call to start pulling a remote track.
The simulcast
configuration object in the API call when you start pulling a remote track allows you to specify:
-
preferredRid
: The preferred stream (RID for the simulcast stream. RIDs can be specified by the publisher. ↗) -
priorityOrdering
: Controls how the SFU handles bandwidth constraintsnone
: Keep sending the preferred layer even if there's not enough bandwidthasciibetical
: Use alphabetical ordering (a-z) to determine priority, where 'a' is most desirable and 'z' is least desirable
-
ridUnavailableStrategy
: Controls what happens when the preferred RID is no longer available, for example when the publisher stops sending itnone
: Do nothingnextPriority
: Switch to the next available RID based on the priority ordering
You will likely want to order the asciibetical RIDs based on your desired metric, such as higest resoltion to lowest or highest bandwidth to lowest.
Cloudflare Calls treats all media tracks equally at the transport level. For example, if you have multiple video tracks (cameras, screen shares, etc.), they all have equal priority for bandwidth allocation. This means:
- Each track's simulcast configuration is handled independently
- The SFU performs automatic bandwidth estimation and layer switching based on network conditions independently for each track
When a layer switch is requested (through updating preferredRid
) with the /tracks/update
API:
- The SFU will automatically generate a Picture Loss Indication (PLI)
- Layer switching only occurs when a keyframe arrives on the target layer
- PLI generation is debounced to prevent excessive requests
For publishers (local tracks), you only need to include the simulcast attributes in your SDP. The SFU will automatically handle the simulcast configuration based on the SDP. For example, the SDP should contain a section like this:
a=simulcast:send f;h;qa=rid:f senda=rid:h senda=rid:q send
You can include these by specifying sendEncodings
when creating the transceiver:
const transceiver = peerConnection.addTransceiver(track, { direction: "sendonly", sendEncodings: [ { scaleResolutionDownBy: 1, rid: "a" }, { scaleResolutionDownBy: 2, rid: "b" }, { scaleResolutionDownBy: 4, rid: "c" } ]});## Example
Here's an example of how to use simulcast with Cloudflare Calls:
1. Create a new local track with simulcast configuration. There should be a section in the SDP with `a=simulcast:send`.2. Use the [Cloudflare Calls API](/calls/https-api) to push this local track, by calling the /tracks/new endpoint.3. Use the [Cloudflare Calls API](/calls/https-api) to start pulling a remote track (from another browser or device), by calling the /tracks/new endpoint and specifying the `simulcast` configuration object along with the remote track ID you get from step 2.
For more examples, check out the [Calls Examples GitHub repository](https://github.com/cloudflare/calls-examples/tree/main/simulcast).
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Products
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark