From 4c28cf50bfad2aaee9687161ebf87a46b7c7bad2 Mon Sep 17 00:00:00 2001 From: Alexander Gabriel Date: Wed, 1 Jul 2026 12:16:57 +0200 Subject: [PATCH] =?UTF-8?q?bild=20nicht=20so=20gro=C3=9F,=20dauert=20schon?= =?UTF-8?q?=20ewig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/livewire/camera-capture.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/camera-capture.blade.php b/resources/views/livewire/camera-capture.blade.php index d0ce4ae..48450fe 100644 --- a/resources/views/livewire/camera-capture.blade.php +++ b/resources/views/livewire/camera-capture.blade.php @@ -112,7 +112,7 @@ const CAMERA_STORAGE_KEY = 'photobox_camera_id'; function videoConstraints(deviceId) { - const base = { width: { ideal: 4096 }, height: { ideal: 2160 } }; + const base = { width: { ideal: 2048 }, height: { ideal: 1080 } }; return deviceId ? { ...base, deviceId: { exact: deviceId } } : base; }