moq-rs/README.md

92 lines
3.9 KiB
Markdown
Raw Normal View History

2022-06-29 16:30:55 +00:00
# Warp
Segmented live media delivery protocol utilizing QUIC streams. See the [Warp draft](https://datatracker.ietf.org/doc/draft-lcurley-warp/).
2022-06-29 16:17:02 +00:00
Warp works by delivering each audio and video segment as a separate QUIC stream. These streams are assigned a priority such that old video will arrive last and can be dropped. This avoids buffering in many cases, offering the viewer a potentially better experience.
# Limitations
2022-06-29 16:17:02 +00:00
## Browser Support
This demo currently only works on Chrome for two reasons:
1. WebTransport support.
2022-06-29 16:30:55 +00:00
2. [Media underflow behavior](https://github.com/whatwg/html/issues/6359).
2022-06-29 16:17:02 +00:00
2022-06-29 16:30:55 +00:00
The ability to skip video abuses the fact that Chrome can play audio without video for up to 3 seconds (hardcoded!) when using MSE. It is possible to use something like WebCodecs instead... but that's still Chrome only at the moment.
2022-06-29 16:17:02 +00:00
## Streaming
This demo works by reading pre-encoded media and sleeping based on media timestamps. Obviously this is not a live stream; you should plug in your own encoder or source.
The media is encoded on disk as a LL-DASH playlist. There's a crude parser and I haven't used DASH before so don't expect it to work with arbitrary inputs.
## QUIC Implementation
This demo uses a fork of [quic-go](https://github.com/lucas-clemente/quic-go). There are two critical features missing upstream:
1. ~~[WebTransport](https://github.com/lucas-clemente/quic-go/issues/3191)~~
2. [Prioritization](https://github.com/lucas-clemente/quic-go/pull/3442)
## Congestion Control
This demo uses a single rendition. A production implementation will want to:
1. Change the rendition bitrate to match the estimated bitrate.
2. Switch renditions at segment boundaries based on the estimated bitrate.
3. or both!
Also, quic-go ships with the default New Reno congestion control. Something like [BBRv2](https://github.com/lucas-clemente/quic-go/issues/341) will work much better for live video as it limits RTT growth.
2022-06-29 16:30:55 +00:00
# Setup
## Requirements
2022-06-29 16:17:02 +00:00
* Go
* ffmpeg
* openssl
* Chrome Canary
2022-06-29 16:30:55 +00:00
## Media
This demo simulates a live stream by reading a file from disk and sleeping based on media timestamps. Obviously you should hook this up to a real live stream to do anything useful.
2022-06-29 16:17:02 +00:00
Download your favorite media file:
```
2022-11-08 13:18:35 +00:00
wget http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4 -O media/source.mp4
2022-06-29 16:17:02 +00:00
```
Use ffmpeg to create a LL-DASH playlist. This creates a segment every 2s and MP4 fragment every 10ms.
2022-06-29 16:17:02 +00:00
```
./media/generate
2022-06-29 16:17:02 +00:00
```
You can increase the `frag_duration` (microseconds) to slightly reduce the file size in exchange for higher latency.
2022-06-29 16:30:55 +00:00
## TLS
2022-06-29 16:17:02 +00:00
Unfortunately, QUIC mandates TLS and makes local development difficult.
2022-11-16 18:56:24 +00:00
If you have a valid certificate you can use it instead of self-signing. The go binaries take a `-tls-cert` and `-tls-key` argument. Skip the remaining steps in this section and use your hostname instead.
2022-06-29 16:17:02 +00:00
Otherwise, we use [mkcert](https://github.com/FiloSottile/mkcert) to install a self-signed CA:
2022-06-29 16:17:02 +00:00
```
./generate/cert
2022-06-29 16:17:02 +00:00
```
With no arguments, the server will generate self-signed cert using this root CA. This certificate is only valid for *2 weeks* due to how WebTransport performs certificate fingerprinting.
2022-06-29 16:17:02 +00:00
2022-06-29 16:30:55 +00:00
## Server
2022-11-18 23:13:35 +00:00
The Warp server supports WebTransport, pushing media over streams once a connection has been established. A more refined implementation would load content based on the WebTransport URL or some other messaging scheme.
2022-06-29 16:17:02 +00:00
```
cd server
go run main.go
2022-06-29 16:17:02 +00:00
```
2022-11-18 23:13:35 +00:00
This can be accessed via WebTransport on `https://localhost:4443` by default.
2022-07-11 19:18:02 +00:00
## Web Player
2022-11-16 18:56:24 +00:00
The web assets need to be hosted with a HTTPS server. If you're using a self-signed certificate, you may need to ignore the security warning in Chrome (Advanced -> proceed to localhost).
2022-06-29 16:17:02 +00:00
```
cd web
yarn install
2022-06-29 16:17:02 +00:00
yarn serve
```
2022-11-18 23:13:35 +00:00
These can be accessed on `https://localhost:4444` by default.
2022-11-16 18:56:24 +00:00
If you use a custom domain for the Warp server, make sure to override the server URL with the `url` query string parameter, e.g. `https://localhost:4444/?url=https://warp.demo`.