OBS-Studio mit virtual Webcam für Video Calls

Alles was nicht alltäglich ist und nirgendwo so richtig reinpasst
Post Reply
User avatar
h3rb3rn
Administrator
Posts: 189
Joined: Mon 9. Feb 2015, 23:29

OBS-Studio mit virtual Webcam für Video Calls

Post by h3rb3rn »

Fassung vom 06.05.2020

Github Repository zum obs-v4l2sink

Code: Select all

sudo apt install obs-studio git qtbase5-dev cmake;

Code: Select all

cd ~;
mkdir obs;
cd obs;
git clone https://github.com/CatxFish/obs-v4l2sink.git;

Code: Select all

git clone --recursive https://github.com/obsproject/obs-studio.git;

Code: Select all

cd obs-v4l2sink;

Code: Select all

mkdir build && cd build

Code: Select all

cmake -DLIBOBS_INCLUDE_DIR="../../obs-studio/libobs" -DCMAKE_INSTALL_PREFIX=/usr ..

Code: Select all

make -j4

Code: Select all

sudo make install

Code: Select all

ln -s /usr/share/
Post Reply