Remove tmate as it is no longer maintained.
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
#+DATE: 25th January 2022
|
||||
|
||||
|
||||
I use [[https://obsproject.com][Open Broadcast Studio]] in Linux Mint to manage my audio and video devices for virtual meetings which drastically improves my video and audio quality. This page documents how I set up and the configuration I use.
|
||||
I use [[https://obsproject.com][Open Broadcast Studio]] to manage my audio and video devices for virtual meetings which drastically improves my video and audio quality. This page documents how I set up and the configuration I use.
|
||||
|
||||
Note: For audio hardware I generally rely on [[https://www.bluemic.com/en-us/products/yeti-nano/][Blue Yeti Nano]] microphones and [[https://electronics.sony.com/audio/headphones/headband/p/wh1000xm4-b][Sony WH-1000XM]] bluetooth headphones, for a camera I've recently moved to the [[https://www.logitech.com/en-au/products/webcams/brio-4k-hdr-webcam.960-001105.html][Logitech Brio 4k]].
|
||||
|
||||
@ -14,7 +14,7 @@ Note: For audio hardware I generally rely on [[https://www.bluemic.com/en-us/pro
|
||||
To get started install obs including all dependencies required using the steps below:
|
||||
|
||||
#+NAME: Install open broadcast studio dependencies
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Install dependencies first
|
||||
sudo apt install --yes ffmpeg v4l2loopback-dkms
|
||||
|
||||
@ -26,7 +26,7 @@ sudo add-apt-repository ppa:obsproject/obs-studio
|
||||
#+end_src
|
||||
|
||||
#+NAME: Install open broadcast studio
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Install open broadcast studio
|
||||
sudo apt update && sudo apt install --yes obs-studio
|
||||
#+end_src
|
||||
@ -38,7 +38,7 @@ sudo apt update && sudo apt install --yes obs-studio
|
||||
Before we get underway we also install the StreamFX plugin for OBS so we can blur backgrounds without a greenscreen. Follow the steps below to install the plugin:
|
||||
|
||||
#+NAME: Install streamfx plugin
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Ensure the plugin directory exists
|
||||
mkdir --parents ~/.config/obs-studio && cd ~/.config/obs-studio
|
||||
|
||||
@ -62,7 +62,7 @@ unzip -o streamfx.zip && rm streamfx.zip
|
||||
To control improve the quality of our audio we use a virtual audio output device, this allows us to take raw audio input from a microphone, apply filters and enhancements in obs, then output the enhanced audio to the virtual meeting software as a virtual microphone.
|
||||
|
||||
#+NAME: Create virtual audio devices
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Create the virtual speaker
|
||||
pactl load-module module-null-sink sink_name=Source sink_properties=device.description=VirtualSpeaker
|
||||
|
||||
@ -80,7 +80,7 @@ The code snippet above sets up virtual audio devices for our current session onl
|
||||
To make it permanent we need to save the configuration to a file in our home directory.
|
||||
|
||||
#+NAME: Save virtual audio device configuration
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Ensure required directory exists
|
||||
mkdir --parents ~/.config/pulse
|
||||
|
||||
@ -117,7 +117,7 @@ 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".
|
||||
|
||||
#+NAME: Run open broadcast studio
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
obs&
|
||||
#+end_src
|
||||
|
||||
@ -129,7 +129,7 @@ Our final step to get up and running is to restore our "Profile" and "Scene Coll
|
||||
You can use the snippet below to check the contents of the files.
|
||||
|
||||
#+NAME: Show included configuration files
|
||||
#+begin_src tmate
|
||||
#+begin_src tmux
|
||||
# Show contents of profile ini file
|
||||
cat ~/Documents/tooling/streaming/basic.ini
|
||||
|
||||
|
||||
Reference in New Issue
Block a user