diff --git a/web/components/config/cpu-usage.tsx b/web/components/config/cpu-usage.tsx index 09acc19b9..a5d90983e 100644 --- a/web/components/config/cpu-usage.tsx +++ b/web/components/config/cpu-usage.tsx @@ -13,11 +13,11 @@ const SLIDER_MARKS = { }; const TOOLTIPS = { - 1: 'lowest', - 2: 'low', - 3: 'medium', - 4: 'high', - 5: 'highest', + 1: 'Lowest CPU usage - lowest quality video', + 2: 'Low CPU usage - low quality video', + 3: 'Medium CPU usage - average quality video', + 4: 'High CPU usage - high quality video', + 5: 'Highest CPU usage - higher quality video', }; interface Props { defaultValue: number; @@ -47,7 +47,7 @@ export default function CPUUsageSelector({ defaultValue, onChange }: Props) {
CPU Usage

- Reduce the to improve server performance, or increase it to improve video quality. + Reduce to improve server performance, or increase it to improve video quality.

-

Selected: {TOOLTIPS[selectedOption]}

+

{TOOLTIPS[selectedOption]}

); diff --git a/web/components/config/video-variant-form.tsx b/web/components/config/video-variant-form.tsx index 3ec73c566..99df7d9f8 100644 --- a/web/components/config/video-variant-form.tsx +++ b/web/components/config/video-variant-form.tsx @@ -102,6 +102,7 @@ export default function VideoVariantForm({ [framerateMin]: `${framerateMin} ${framerateUnit}`, 30: '', 60: '', + 90: '', [framerateMax]: `${framerateMax} ${framerateUnit}`, }; @@ -117,7 +118,7 @@ export default function VideoVariantForm({ }; const selectedVideoBRnote = () => { - let note = `Selected: ${dataState.videoBitrate}${videoBRUnit}`; + let note = `${dataState.videoBitrate}${videoBRUnit}`; if (dataState.videoBitrate < 2000) { note = `${note} - Good for low bandwidth environments.`; } else if (dataState.videoBitrate < 3500) { @@ -139,6 +140,9 @@ export default function VideoVariantForm({ case 60: note = `${note} - Good for fast/action games, sports, HD video.`; break; + case 90: + note = `${note} - Good for newer fast games and hardware.`; + break case 120: note = `${note} - Experimental, use at your own risk!`; break;