This guide covers types of latency, causes of latency, reconnect windows, and lower latency options.
Mux Video live streaming is built with RTMP ingest and HLS delivery. HLS inherently introduces latency. To the broadcasting industry, this latency is called glass-to-glass latency. Standard glass-to-glass latency with HLS is greater than 20 seconds and typically about 25 to 30 seconds.
To clarify some terminology and industry jargon:
The nature of HLS delivery means that clients are not necessarily synchronized. Some clients might be 15 seconds behind wall-clock time and others might be 30 seconds behind.
You don't have to worry about these gritty details when using Mux for live streams, but to give you an idea of how a live stream works:
When you consider each of the steps above, any point of that pipeline has the potential to slow down or get backed up. The more latency you can tolerate, the safer the system is and the lower probability you have for an unhappy viewer. If any single step gets backed up momentarily, the whole system has a chance to catch up before an interruption in playback. And, when everything is running smoothly, the player has extra time to spend downloading the higher quality version of your content.
As shown in the image above, there is latency added at every step. However, Mux does not control any latency added during video capture on the camera, encoder processing delays, and amount of video buffered & the decoding time of the video player.
When an end-user is streaming from their encoder to Mux, we need to know how to handle situations when the client disconnects unexpectedly.
There are situations when a client disconnects on purpose: for example hitting "Stop streaming" on OBS.
Those are intentional disconnects, we're talking about times when the client just stops sending video.
In order to handle this, live streams have a reconnect_window
. After an unexpected disconnect,
Mux will keep the live stream "active" for the given period of time and wait for the client to reconnect and start streaming again.
When the reconnect_window
expires, the live stream transitions back into the idle
state. In HLS terminology,
Mux writes the #EXT-X-ENDLIST
tag to the HLS manifest. At this point, your player can consider the live stream to have ended.
By default, reconnect_window
is 60
(seconds) - you can set this as high as 1800
(30 minutes).
By adding the slate image, you can improve your viewer's video playback experience during the Reconnect window time interval. You can learn more on Reconnect Windows and Slates here.
Mux live streams have options for "reduced" and "low" latency. The "latency_mode": "reduced"
option gets your latency down to a range of 12-20 seconds and
the "latency_mode": "low"
further reduces the latency to as low as 5 seconds. But your viewers might see some variance to the glass-to-glass latency because
the latency depends on many factors, including player configurations, your viewer's geographic location, and their internet connectivity speed.
You should only set latency_mode
to reduced
or low
if you have control over the following:
Typically, home networks in cities and mobile connections are not stable enough to reliably use reduced
or low
latency options.
Check out our Live Stream API ReferenceAPI and find the latency_mode
parameter and set the parameter to "reduced"
in the request to create a live stream.
Set the latency mode on a live stream to reduced
by making this POST request:
//POST https://api.mux.com/video/v1/live-streams
{
"latency_mode": "reduced",
"reconnect_window": 60,
"playback_policy": ["public"],
"new_asset_settings": {
"playback_policy": ["public"]
}
}
You can read more about the reduced latency feature in this blog post about Reduced Latency.
Create Live StreamAPI is also used to set the "latency_mode": "low"
flag.
Set the latency mode on a live stream to low
by making this POST request:
//POST https://api.mux.com/video/v1/live-streams
{
"latency_mode": "low",
"reconnect_window": 60,
"playback_policy": ["public"],
"new_asset_settings": {
"playback_policy": ["public"]
}
}
A live stream can only be configured as "reduced" or "low" or "standard" latency.
Yes. The "latency_mode": "low"
mode uses Apple's new low-latency HLS (LL-HLS) spec
that allows your viewers to play live streams with as low as 5 seconds glass-to-glass latency. In comparison, the other latency modes are based on the
earlier version of the HLS spec which puts a cap on the lower limits of the glass-to-glass latency.
Mux has closely followed the new low-latency HLS spec and published about the development of the new spec a few times on our blog in June 2019 and again in January 2020.
Yes. Because "latency_mode": "low"
mode uses a recent version of Apple's LL-HLS spec, you may need to upgrade your video player. Below is the list of the
most commonly used video players and the minimum version.
The video player may have supported LL-HLS spec in earlier versions. However, the minimum video player version mentioned below represents the version we used for evaluating Mux's low-latency feature.
Additionally, the video player companies are continuously improving video playback experience as the LL-HLS spec is more widely adopted and used in the real world. We recommend updating your video player versions frequently whenever possible to get the latest fixes and improvements.
Player | Version | Additional details |
---|---|---|
HLS.js | >= 1.1.5 | Other potentially relevant issues to track - (#3596) |
JW Player | >= 8.20.5 | Setting the liveSyncDuration configuration option can increase latency. So you should not set this option for low-latency playback. |
THEOplayer | >= 6.0.0 | LL-HLS playback is enabled by default. |
THEOplayer | >= 2.84.1 | Requires enabling LL-HLS add-on on your player instance and set lowlatency parameter to true in the player configuration. |
VideoJS | >= 8.0.0 | LL-HLS playback is enabled by default. |
VideoJS | >= 7.16.0 | Enabling low latency playback requires initializing videojs-https-streaming with the experimentalLLHLS flag. See FAQs. |
Mux Player | >= 1.0 | |
Mux Video.js Kit | >= 0.4 | Mux Video.js Kit uses HLS.js so the same issues apply. |
Apple iOS (AVPlayer) | 13.* | Requires com.apple.developer.coremedia.hls.low-latency app entitlement for your iOS apps. Also, there are known issues that occasionally cause playback failures. |
Apple iOS (AVPlayer) | 14.* | There are known issues that occasionally cause playback issues. |
Apple iOS (AVPlayer) | 15.* | |
Android ExoPlayer | >= 2.14 | |
Agnoplay | >= 1.0.33 |
Maybe. Apple's LL-HLS specification is backward compatible. So your video player should fall back to playing standard HLS. Those viewers will have noticeably higher glass-to-glass latency. However, your video player does need support for demuxed audio & video tracks (each track requested separately) in MP4 format for being backward compatible. Most video players already support demuxed audio & video tracks in MP4 format.
Yes. You can add the low_latency=false
parameter to the video playback URL. Mux can revert back to delivering the same live stream
using standard HLS by adding this low_latency=false
parameter. However, your video player does need support for demuxed audio & video tracks
(each track requested separately) in MP4 format for the low_latency=false
parameter to work.
https://stream.mux.com/{PLAYBACK_ID}.m3u8?low_latency=false
If your playback_id
is signed
, then all query parameters, including low_latency
need to be added to the claims body. Take a look at
the signed URLs guide for details.
You can enable low latency playback using Apple's LL-HLS spec by initializing videojs-http-streaming
module with the experimentalLLHLS
flag along with any other options.
var player = videojs(video, {
html5: {
vhs: {
experimentalLLHLS: true
}
}
});
Yes. You can change your existing live stream's latency and set the latency to any of the available options -
standard
or reduced
or low
using the Live Stream PATCHAPI.
You can only execute this API when the live stream status is idle
and helpful in migrating your live stream based on the streamer's
requirements. After Mux successfully runs this API, your webhook endpoint also receives video.live_stream.updated
event.
//PATCH https://api.mux.com/video/v1/live-streams/{LIVE_STREAM_ID}
{
"latency_mode": "low"
}