From e54f240523f45369533f430cc3f6396f49acfb68 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 9 Mar 2026 11:56:32 +0100 Subject: [PATCH] Streaming: fps bei allen Qualitaetsstufen anzeigen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Labels: Niedrig · 4 Mbit · 60fps bis Max · 50 Mbit · 165fps. Dropdown auf 250px verbreitert. Co-Authored-By: Claude Opus 4.6 --- web/src/plugins/streaming/StreamingTab.tsx | 10 +++++----- web/src/plugins/streaming/streaming.css | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/web/src/plugins/streaming/StreamingTab.tsx b/web/src/plugins/streaming/StreamingTab.tsx index 13ca85d..06c1064 100644 --- a/web/src/plugins/streaming/StreamingTab.tsx +++ b/web/src/plugins/streaming/StreamingTab.tsx @@ -46,11 +46,11 @@ function formatElapsed(startedAt: string): string { // ── Quality Presets ── const QUALITY_PRESETS = [ - { label: 'Niedrig (4 Mbit)', fps: 60, bitrate: 4_000_000 }, - { label: 'Mittel (8 Mbit)', fps: 60, bitrate: 8_000_000 }, - { label: 'Hoch (14 Mbit)', fps: 60, bitrate: 14_000_000 }, - { label: 'Ultra (25 Mbit)', fps: 60, bitrate: 25_000_000 }, - { label: 'Max (50 Mbit/165Hz)', fps: 165, bitrate: 50_000_000 }, + { label: 'Niedrig \u00B7 4 Mbit \u00B7 60fps', fps: 60, bitrate: 4_000_000 }, + { label: 'Mittel \u00B7 8 Mbit \u00B7 60fps', fps: 60, bitrate: 8_000_000 }, + { label: 'Hoch \u00B7 14 Mbit \u00B7 60fps', fps: 60, bitrate: 14_000_000 }, + { label: 'Ultra \u00B7 25 Mbit \u00B7 60fps', fps: 60, bitrate: 25_000_000 }, + { label: 'Max \u00B7 50 Mbit \u00B7 165fps', fps: 165, bitrate: 50_000_000 }, ] as const; // ── Component ── diff --git a/web/src/plugins/streaming/streaming.css b/web/src/plugins/streaming/streaming.css index 5a5522b..e3b9568 100644 --- a/web/src/plugins/streaming/streaming.css +++ b/web/src/plugins/streaming/streaming.css @@ -426,7 +426,7 @@ } .stream-select-quality { - width: 200px; + width: 250px; box-sizing: border-box; padding: 10px 14px; border: 1px solid var(--bg-tertiary);