From 061972e380c206af83f84e8c27afdc24300d32d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=9Aled=C5=BA?= Date: Wed, 7 Aug 2024 17:05:00 +0200 Subject: [PATCH] Add simulcast tutorial --- guides/advanced/simulcast.md | 113 +++++++++++++++++++++++++++++++++++ mix.exs | 2 +- 2 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 guides/advanced/simulcast.md diff --git a/guides/advanced/simulcast.md b/guides/advanced/simulcast.md new file mode 100644 index 0000000..aaacdd0 --- /dev/null +++ b/guides/advanced/simulcast.md @@ -0,0 +1,113 @@ +# Simulcast + +Simulcast is a technique where a client sends multiple encodings of the same video to the server, which is then responsible for dynamically choosing the appropraite encoding for every peer (other client). +Encodings differ between each other in resolution and/or frame rate. +The selection of the encoding is based on: +* Receiver available bandwidth. +* Receiver preferences (e.g. explicit request to receive video at HD resolution instead of FHD). +* UI layout (e.g. videos displayed in smaller tiles will be sent at a lower resolution). + +Simulcast is not utilized in direct client-client connections (no intermediate server) because in such cases, the sender can adjust +its resolution or frame rate based on a feedback from the receiver. + +Elixir WebRTC comes with: +* Support for inbound simulcast - it allows to receive multiple incoming resolutions +* RTP munger and keyframe detectors, which can be used for implementing encoding switching on the server side + +Currently there is no support for: +* Outbound simulcast +* Bandwidth estimation +* Automatic encoding switching + +## Turning simulcast on + +### Elixir WebRTC + +Elixir WebRTC automatically accepts incoming simulcast tracks so there are no extra steps required. + +### JavaScript + +Simulcast can be enabled when adding a new track. For example: + +```js +const pc = new RTCPeerConnection(); + +const localStream = await navigator.mediaDevices.getUserMedia({ + video: { + width: { ideal: 1280 }, + height: { ideal: 720 }, + }, +}); + +pc.addTransceiver(localStream.getVideoTracks()[0], { + streams: [localStream], + sendEncodings: [ + { rid: 'h', maxBitrate: 1500 * 1024 }, + { rid: 'm', scaleResolutionDownBy: 2, maxBitrate: 600 * 1024 }, + { rid: 'l', scaleResolutionDownBy: 4, maxBitrate: 300 * 1024 }, + ], +}); +``` + +> #### Minimal starting resolution {: .warning} +> To run 3 simulcast encodings, the minimal starting resolution +> must be 960x540. See more [here](https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/video/config/simulcast.cc;l=79?q=simulcast.cc) + + +## Receiving simulcast packets + +When simulcast is enabled, packets are labeled with an `rid`, which denotes simulcast +encoding that a packet belongs to: + +```elixir +{:ex_webrtc, pc_pid, {:rtp, track_id, rid, packet}} +``` + +## Switching between simulcast encodings + +Switching between simulcast encodings requires some modifications to RTP packets. +Every encoding starts with a random RTP sequence number and a random RTP timestamp. +Because client that receives our stream is never aware of simulcast (they always receive +a single encoding), we have to rewrite those sequence numbers and timestamps to be continuous and increasing. +This process is known as munging. + +1. Create munger with codec sample rate + +```elixir +alias ExWebRTC.PeerConnection +alias ExWebRTC.RTP.{H264, Munger} + +m = Munger.new(90_000) +``` + +2. When a packet arrives, rewrite its sequnce number and timestamp: + +```elixir +{packet, munger} = Munger.munge(munger, packet) +``` + +3. To switch to another encoding, request a keyframe for this encoding. +Once the keyframe arrives, update the munger and start forwarding new packets. +For example, transitioning from encoding `m` to `h`: + + +```elixir +:ok = PeerConnection.send_pli(input_pc, track_id, "h") + +# ... + +def handle_info({:ex_webrtc, input_pc, {:rtp, _track_id, "h", packet}}, state) do + if H264.keyframe?(packet) do + munger = Munger.update(munger) + {munger, packet} = Munger.munge(munger, packet) + PeerConnection.send_rtp(state.output_pc, state.output_track_id, packet) + state = %{state | munger: munger} + {:noreply, state} + else + # Ignore packets from 'h' until we receive a keyframe. + {:noreply, state} + end +end +``` + +See our [Broadcaster](https://github.com/elixir-webrtc/apps/tree/master/broadcaster) app source code for more. diff --git a/mix.exs b/mix.exs index 7667177..b18d684 100644 --- a/mix.exs +++ b/mix.exs @@ -74,7 +74,7 @@ defmodule ExWebRTC.MixProject do defp docs do intro_guides = ["intro", "negotiation", "forwarding", "consuming"] - advanced_guides = ["modifying", "mastering_transceivers", "debugging"] + advanced_guides = ["simulcast", "modifying", "mastering_transceivers", "debugging"] [ main: "readme",