2

I tried to follow this video. I do not have install in the directory droidcam.

Error after advice:

enter image description here

  • please describe what the video tells you to do ... questions need to be self contained ... the link to the video can become stale ... also, please explain what you have done and include any error messages (as text, not picture of text) – jsotola Apr 11 '21 at 17:36

1 Answers1

6

The installation instruction is available on dev47apps.com

sudo apt install linux-headers-$(uname -r) gcc make v4l2loopback-dkms v4l2loopback-utils
sudo modprobe -v v4l2loopback
cd /tmp/
wget -O droidcam_latest.zip https://files.dev47apps.net/linux/droidcam_1.7.2.zip
unzip droidcam_latest.zip -d droidcam
cd droidcam 
sudo ./install-client
droidcam

The error:

Droidcam/v4l2loopback device not found '/dev/video[0-9]).
Did it install correctly?
If you had a kernel update, you may need to re-install.

can be fixed by loading the kernel module v4l2loopback.ko: sudo modprobe -v v4l2loopback.

GAD3R
  • 66,769