From bd5c190cef80c4098de8bfc792bdf7923e9366e7 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 9 Mar 2026 00:03:45 +0100 Subject: [PATCH] Streaming: 4K165 Ultra Preset (50 Mbit/s) Co-Authored-By: Claude Opus 4.6 --- web/src/plugins/streaming/StreamingTab.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/plugins/streaming/StreamingTab.tsx b/web/src/plugins/streaming/StreamingTab.tsx index e7ca08c..cd85e68 100644 --- a/web/src/plugins/streaming/StreamingTab.tsx +++ b/web/src/plugins/streaming/StreamingTab.tsx @@ -51,6 +51,7 @@ const QUALITY_PRESETS = [ { label: '1080p60', width: 1920, height: 1080, fps: 60, bitrate: 8_000_000 }, { label: '1440p60', width: 2560, height: 1440, fps: 60, bitrate: 14_000_000 }, { label: '4K60', width: 3840, height: 2160, fps: 60, bitrate: 25_000_000 }, + { label: '4K165 Ultra', width: 3840, height: 2160, fps: 165, bitrate: 50_000_000 }, ] as const; // ── Component ──