From d46d954a29f0c1a038a17ba0a4c3402d6a4f751a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 5 Feb 2021 17:24:19 -0800 Subject: [PATCH] Add some context and instructions around latency levels --- web/pages/components/config/video-latency.tsx | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/web/pages/components/config/video-latency.tsx b/web/pages/components/config/video-latency.tsx index ba746bc54..455a19b9c 100644 --- a/web/pages/components/config/video-latency.tsx +++ b/web/pages/components/config/video-latency.tsx @@ -15,21 +15,21 @@ import FormStatusIndicator from './form-status-indicator'; const { Title } = Typography; const SLIDER_MARKS = { - 1: 'low', + 1: 'Low', 2: '', 3: '', 4: '', 5: '', - 6: 'high', + 6: 'High', }; const SLIDER_COMMENTS = { - 1: 'Lowest latency, but least reliability', - 2: 'Low latency, some reliability', - 3: 'Lower latency, some reliability', - 4: 'Optimal latency and reliability (Default)', - 5: 'High latency, better reliability', - 6: 'Highest latency, higher reliability', + 1: 'Lowest latency, lowest error tolerance', + 2: 'Low latency, low error tolerance', + 3: 'Lower latency, lower error tolerance', + 4: 'Medium latency, medium error tolerance (Default)', + 5: 'Higher latency, higher error tolerance', + 6: 'Highest latency, highest error tolerance', }; interface SegmentToolTipProps { @@ -110,6 +110,9 @@ export default function VideoLatency() { Latency Buffer

While it's natural to want to keep your latency as low as possible, you may experience reduced error tolerance and stability in some environments the lower you go. +

+ For interactive live streams you may want to experiment with a lower latency, for non-interactive broadcasts you may want to increase it. Read to learn more. +