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 ──