Update obs guide to separate install step.

This commit is contained in:
2022-01-26 18:09:39 +13:00
parent c71272dec9
commit bb864d5933

View File

@ -10,21 +10,25 @@ I use [[https://obsproject.com][Open Broadcast Studio]] in Linux Mint to manage
To get started install obs including all dependencies required using the steps below:
#+NAME: Install open broadcast studio
#+NAME: Install open broadcast studio dependencies
#+begin_src tmate
# Install dependencies first
sudo apt install ffmpeg v4l2loopback-dkms
sudo apt install --yes ffmpeg v4l2loopback-dkms
# Load the v4l2loopback module for virtual cam
sudo modprobe v4l2loopback exclusive_caps=1
# Add package repository
sudo add-apt-repository ppa:obsproject/obs-studio
# Install open broadcast studio
sudo apt update && sudo apt install obs-studio
#+end_src
#+NAME: Install open broadcast studio
#+begin_src tmate
# Install open broadcast studio
sudo apt update && sudo apt install --yes obs-studio
#+end_src
* Install plugins
@ -63,8 +67,13 @@ Once obs is installed we can launch it with the command below. The setup wizard
If you see that option, select it; once you get to the main OBS Studio screen, you should now see a button in the bottom right, "Start Virtual Camera".
* Configure obs scene
* Launch obs
Now that we have finished installing and configuring obs we can launch it using the command below, enjoy! 🙂
#+NAME: Run open broadcast studio
#+begin_src tmate
obs&