From f5551959777504ded2900bc34eac02fe7346fc1a Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Wed, 23 Dec 2020 00:43:31 +0100 Subject: [PATCH] [systemd/webcam] switch from streamer to fswebcam --- systemd/webcam.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/systemd/webcam.sh b/systemd/webcam.sh index 3d05692..47d8345 100755 --- a/systemd/webcam.sh +++ b/systemd/webcam.sh @@ -4,5 +4,6 @@ path="$HOME/Pictures/hour-pics" size="1280x720" mkdir -p "$path" -streamer -q -f jpeg -s $size -o "$path"/"$now".jpeg -r 1 +#streamer -q -f jpeg -s $size -o "$path"/"$now".jpeg -r 1 +fswebcam --no-banner -r $size -S 10 "$path"/"$now".jpeg exit $?