From 293768fdca7ca70bac67f618cb213478483ec8c7 Mon Sep 17 00:00:00 2001 From: Patrick Gehrsitz <58853838+mryel00@users.noreply.github.com> Date: Fri, 3 Nov 2023 12:06:44 +0100 Subject: [PATCH] fix(camera-streamer.sh): force camera to be always active (#197) Potentially fixes #139 --- libs/camera-streamer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/camera-streamer.sh b/libs/camera-streamer.sh index 885557d6..765ad7d5 100755 --- a/libs/camera-streamer.sh +++ b/libs/camera-streamer.sh @@ -87,6 +87,9 @@ function run_ayucamstream() { # Enable camera-auto_reconnect by default start_param+=( --camera-auto_reconnect=1 ) + # Force camera to be always active by default + start_param+=( --camera-force_active=1 ) + # Custom Flag Handling (append to defaults) if [[ -n "${cstm}" ]]; then start_param+=( "${cstm}" )