From bb864d5933f80b226318b5f9d094670dbf913aef Mon Sep 17 00:00:00 2001 From: James Blair Date: Wed, 26 Jan 2022 18:09:39 +1300 Subject: [PATCH] Update obs guide to separate install step. --- streaming/obs-setup.org | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/streaming/obs-setup.org b/streaming/obs-setup.org index 7a22559..e3b3e9c 100644 --- a/streaming/obs-setup.org +++ b/streaming/obs-setup.org @@ -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&