From 2f3f4b4653f1d9fbefffe18d59996a6a67aa293e Mon Sep 17 00:00:00 2001 From: Kamil Trzcinski Date: Mon, 11 Apr 2022 18:58:06 +0200 Subject: [PATCH] Fix `*_camera.sh` scripts --- imx519_camera.sh | 2 +- libcamera_camera.sh | 2 +- usb_camera.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imx519_camera.sh b/imx519_camera.sh index f9e3f36..501df22 100755 --- a/imx519_camera.sh +++ b/imx519_camera.sh @@ -21,7 +21,7 @@ fi set -xeo pipefail make -j$(nproc) -$GDB ./camera_stream -camera-path=$(echo /dev/v4l/by-path/*.csi-video-index0) \ +$GDB ./camera-streamer -camera-path=$(echo /dev/v4l/by-path/*.csi-video-index0) \ -camera-options=vertical_blanking=728 \ -camera-options=exposure=2444 \ -camera-options=analogue_gain=600 \ diff --git a/libcamera_camera.sh b/libcamera_camera.sh index beec4dd..2018892 100755 --- a/libcamera_camera.sh +++ b/libcamera_camera.sh @@ -5,7 +5,7 @@ cd "$SCRIPT_DIR" set -xeo pipefail make -j$(nproc) -$GDB ./camera_stream \ +$GDB ./camera-streamer \ -camera-path=/base/soc/i2c0mux/i2c@1/imx519@1a \ -camera-type=libcamera \ -camera-format=YUYV \ diff --git a/usb_camera.sh b/usb_camera.sh index a2fb997..a8b5856 100755 --- a/usb_camera.sh +++ b/usb_camera.sh @@ -5,4 +5,4 @@ cd "$SCRIPT_DIR" set -xeo pipefail make -j$(nproc) -$GDB ./camera_stream -camera-path=$(echo /dev/v4l/by-id/usb-*-video-index0) "$@" +$GDB ./camera-streamer -camera-path=$(echo /dev/v4l/by-id/usb-*-video-index0) "$@"