From 5fbdcd8d19a7ac4ab92db877057880b133c3d51f Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 31 Jan 2024 22:27:22 +0100 Subject: [PATCH] fix var --- bin/streaming/tc_video_simple_webm_stream-gst1.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/streaming/tc_video_simple_webm_stream-gst1.sh b/bin/streaming/tc_video_simple_webm_stream-gst1.sh index 0734a6e..4186248 100755 --- a/bin/streaming/tc_video_simple_webm_stream-gst1.sh +++ b/bin/streaming/tc_video_simple_webm_stream-gst1.sh @@ -8,9 +8,9 @@ source /etc/telecaster/telecaster.conf # GST launch if [ -z "${V4L2_ID_1-}" ]; then - V4L2_IDS=(V4L2_ID, $V4L2_ID_1) + V4L2_IDS=($V4L2_ID, $V4L2_ID_1) else - V4L2_IDS=(V4L2_ID) + V4L2_IDS=($V4L2_ID) fi for ID in ${V4L2_IDS[@]}; do -- 2.39.5