From 9bc2bd40ad2b128d02f6405603724ec78b3a2045 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 17 Feb 2026 11:11:05 +0100 Subject: [PATCH] =?UTF-8?q?=C3=AEnit=20push?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clean-look.css | 31 +++++++++++++++++++++++++++++++ config.js | 12 ++++++++++++ docker-compose.yml | 9 +++++++++ 3 files changed, 52 insertions(+) create mode 100644 clean-look.css create mode 100644 config.js create mode 100644 docker-compose.yml diff --git a/clean-look.css b/clean-look.css new file mode 100644 index 0000000..390c8e2 --- /dev/null +++ b/clean-look.css @@ -0,0 +1,31 @@ +/* Nur die Steuerungselemente ausblenden */ +#buttonsBar, +#chatModule, +#settingsModule, +.left-header, +.right-header, +#msger, +.status-info { + display: none !important; +} + +/* DAS VIDEO EXPLIZIT SICHTBAR MACHEN */ +#videoGrid, +.video-container, +video { + display: block !important; + visibility: visible !important; + width: 100vw !important; + height: 100vh !important; + object-fit: cover !important; + position: fixed !important; + top: 0 !important; + left: 0 !important; + z-index: 1 !important; +} + +/* Verstecke nur die Overlays auf dem Video */ +.video-name, +.video-status-icon { + display: none !important; +} diff --git a/config.js b/config.js new file mode 100644 index 0000000..513673f --- /dev/null +++ b/config.js @@ -0,0 +1,12 @@ +module.exports = { + // Erzwinge den Start ohne User-Interaktion (soweit möglich) + defaultVideoOff: false, + defaultAudioOff: false, + mediaType: { + audio: true, + video: { + width: { ideal: 640 }, + height: { ideal: 480 }, + }, + }, +}; diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..0486679 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,9 @@ +services: + mirotalk: + image: mirotalk/p2p:latest + # ... restliche config ... + volumes: + # Wir überschreiben die client.css im public Ordner + - ./clean-look.css:/src/app/public/css/client.css + # Und wir stellen sicher, dass die Config für die Kamera-Auflösung geladen wird + - ./config.js:/src/app/src/config.js