Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/guysoft/OctoPi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauri Hakkarainen <bionik@gmail.com>2018-02-23 00:19:31 +0300
committerLauri Hakkarainen <bionik@gmail.com>2018-02-23 00:19:31 +0300
commit4fc1d1f9f2a6000daafce544b81fd79dacdaeb05 (patch)
tree16681453033f10cd1cb04a5dcb342ac01668d0b9
parentbb091bc40349ccc83b5e0d0312785063fee06592 (diff)
Checking for multiple usb webcams instead of /dev/video0
-rwxr-xr-xsrc/modules/octopi/filesystem/home/root/bin/webcamd8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/modules/octopi/filesystem/home/root/bin/webcamd b/src/modules/octopi/filesystem/home/root/bin/webcamd
index a7cb75a..702d6a4 100755
--- a/src/modules/octopi/filesystem/home/root/bin/webcamd
+++ b/src/modules/octopi/filesystem/home/root/bin/webcamd
@@ -65,7 +65,7 @@ function startRaspi {
function startUsb {
options="$camera_usb_options"
device="video0"
-
+
extracted_device=`echo $options | sed 's@.*-d /dev/\(video[0-9]+\).*@\1@'`
if [ "$extracted_device" != "$options" ]
then
@@ -79,7 +79,7 @@ function startUsb {
product=`cat $uevent_file | grep PRODUCT | cut -d"=" -f2`
vid=`echo $product | cut -d"/" -f1`
pid=`echo $product | cut -d"/" -f2`
- vidpid=`printf "%04x:%04x" "0x$vid" "0x$pid"`
+ vidpid=`printf "%04x:%04x" "0x$vid" "0x$pid"`
# ... then look if it is in our list of known broken-fps-devices and if so remove
# the -f parameter from the options (if it's in there, else that's just a no-op)
@@ -120,7 +120,9 @@ vcgencmd version > /dev/null 2>&1
# keep mjpg streamer running if some camera is attached
while true; do
- if [ -e "/dev/video0" ] && { [ "$camera" = "auto" ] || [ "$camera" = "usb" ] ; }; then
+ # get number of usb video devices
+ video_device_count = $(ls /dev/video? 2> /dev/null | wc -l)
+ if [ "$video_device_count" != "0" ] && { [ "$camera" = "auto" ] || [ "$camera" = "usb" ] ; }; then
startUsb
sleep 30 &
wait