Question / Help obs with zoom

Jack.G

New Member
I need to use obs with zoom, i heard dear might be a plugin for that, can someone give me advice about such plugin for linux? thanks
 

derekkeats

New Member
You need to install obs-v4l2sink.deb and v4l2loopback-dkms, then you can create a virtual webcam that you can choose in Zoom. I covered this in my live stream the other night (https://www.youtube.com/watch?v=y5Zjm47ZFfA) at 38:50 in the saved recording. I am in the process of making a video of all the steps. Will try to post tomorrow.
 

derekkeats

New Member
You need to install obs-v4l2sink.deb and v4l2loopback-dkms, then you can create a virtual webcam that you can choose in Zoom. I covered this in my live stream the other night (https://www.youtube.com/watch?v=y5Zjm47ZFfA) at 38:50 in the saved recording. I am in the process of making a video of all the steps. Will try to post tomorrow.
Here are the steps meanwhile:
cd Downloads
wget https://github.com/CatxFish/obs-v4l2sink/releases/download/0.1.0/obs-v4l2sink.deb
sudo dpkg -i obs-v4l2sink.deb
sudo apt install -y v4l2loopback-dkms
# Not needed but useful for debugging
sudo apt install v4l-utils
#remove in case it is loaded
sudo rmmod v4l2loopback
#check video devices
ls /dev/video*
sudo modprobe v4l2loopback
#the one you will use is the last one added
ls /dev/video*
#select and configure that under Tools | v4lsink in OBS
 
Top