diff --git a/imgs/software/open-broadcaster-software/input-overlay-source-add-existing.jpg b/imgs/software/open-broadcaster-software/input-overlay-source-add-existing.jpg new file mode 100644 index 0000000..63522f7 Binary files /dev/null and b/imgs/software/open-broadcaster-software/input-overlay-source-add-existing.jpg differ diff --git a/imgs/software/open-broadcaster-software/input-overlay-source-main.jpg b/imgs/software/open-broadcaster-software/input-overlay-source-main.jpg new file mode 100644 index 0000000..0ac9c0a Binary files /dev/null and b/imgs/software/open-broadcaster-software/input-overlay-source-main.jpg differ diff --git a/imgs/software/open-broadcaster-software/input-overlay-source-menu.jpg b/imgs/software/open-broadcaster-software/input-overlay-source-menu.jpg new file mode 100644 index 0000000..1fa4f05 Binary files /dev/null and b/imgs/software/open-broadcaster-software/input-overlay-source-menu.jpg differ diff --git a/imgs/software/open-broadcaster-software/input-overlay-zip.jpg b/imgs/software/open-broadcaster-software/input-overlay-zip.jpg new file mode 100644 index 0000000..fb4f526 Binary files /dev/null and b/imgs/software/open-broadcaster-software/input-overlay-zip.jpg differ diff --git a/open-broadcaster-software/en.md b/open-broadcaster-software/en.md new file mode 100644 index 0000000..774b0aa --- /dev/null +++ b/open-broadcaster-software/en.md @@ -0,0 +1,96 @@ ++++ +title = "Open Broadcaster Software" +lastmod = "2018-03-03T14:41:12+02:00" ++++ + +# Open Broadcaster Software + +This article covers the installation of OBS Studio as well as the use of third-party plugins. + +## Installation + +To install OBS Studio, either open up the Software Center and type `obs-studio` into the Search section or run the following command: + +``` bash +sudo eopkg install obs-studio +``` + +## Plugins + +All OBS Studio plugins should be installed into their own respective folders inside the `~/.config/obs-studio/plugins` folder. If this folder does not exist for you, you'll need to create it before copying plugins into it. + +When installing a plugin, the directory tree should look something like the following: + +``` +plugins +└── plugin-name + ├── bin + │   └── 64bit + │   └── filename.so + ├── data + │   └── locale + │   └── en-US.ini +``` + +In essence, you should have `bin/64bit` folders inside the plugin folder, with any shared object plugin files inside that. As OBS Studio for Solus only supports 64-bit, the plugin **must** support 64-bit as well. + +Additionally, the plugin may come with additional files or folders, such as locale information. That locale information should be located in `data/locale`. + +Most Linux-supporting plugins should provide pre-compiled tarballs or zip files that you can extract to get a pre-made / ready folder structure that you can simply copy / paste into `~/.config/obs-studio/plugins` + +### Known Working Plugins + +#### Input Overlay + +The Input Overlay plugin enables you to show an input overlay of your gamepad, mouse, or keyboard. Pre-compiled release files are available on the Releases section of the [developer's website](https://github.com/univrsal/input-overlay). + +To install Input Overlay, download the input-overlay-vNUM.zip file from their releases page, where NUM is the latest release number, such as 4.4. + +Next, we'll install a library necessary to use the Input Overlay plugin, as well as an unzip tool to make the installation process easier. Run the following command: + +``` bash +sudo eopkg install libuiohook unzip +``` + +Next, click on the zip file in your File Manager to open up the Extract tool (such as File Roller). You will be presented with contents like the following. + +{{< altimg "input-overlay-zip.jpg" "help-center/software/open-broadcaster-software/" >}} + +Let's extract this to our Downloads folder to make the process of copying the contents we need more easily. Click the Extract button in the image indicated above. This will present you with a file dialog. Navigate to the Downloads folder and click Extract. This will create a folder, likely called something similar to `input-overlay.v4.4`. + +Next let's run the following commands in the Terminal. The commands below will: + +- Remove our zip file to make our directory renaming more reliable. +- Move our extracted input overlay in our Downloads directory to one which is without a version number, to make it easier for future commands. +- Extract all the preset zips and remove their zip files +- Create an `input-overlay` folder in `~/.config/obs-studio/plugins` as well as creating the `plugins` folder if needed. +- Copy over the necessary and recommended folders and files to our input-overlay plugin folder. + +``` bash +rm ~/Downloads/input-overlay*.zip +mv ~/Downloads/input-overlay.v* ~/Downloads/input-overlay +cd ~/Downloads/input-overlay/presets +for file in `ls *.zip`; do unzip "${file}" -d "${file:0:-4}"; done +rm *.zip +mkdir -p ~/.config/obs-studio/plugins/input-overlay +cp -R ~/Downloads/input-overlay/plugin-linux/* ~/.config/obs-studio/plugins/input-overlay/ +cp -R ~/Downloads/input-overlay/presets ~/.config/obs-studio/plugins/input-overlay/ +``` + +Now the Input Overlay source is available to us as a source (if you have OBS Studio already open, restart it), as shown in the below screenshot. + +{{< altimg "input-overlay-source-menu.jpg" "help-center/software/open-broadcaster-software/" >}} + +Upon clicking on this source, we'll be presented with the usual add / use existing source dialog. + +{{< altimg "input-overlay-source-add-existing.jpg" "help-center/software/open-broadcaster-software/" >}} + +After naming a source, such as "Mouse", click OK and you'll be presented with a dialog that looks similar to below. Do note that yours will be empty by default, as you've not yet selected an Overlay image file and Layout config file yet. + +{{< altimg "input-overlay-source-main.jpg" "help-center/software/open-broadcaster-software/" >}} + +This is where the presets come in handy. Click the Browse button for Overlay image file and navigate to `.config/obs-studio/plugins/presets` and then the respective preset you want, such as mouse, and then the PNG within it. **You will need to enable hidden files** in the file dialog by using the keyboard combination `Ctrl+H` to see `.config` + +Next, do the same for Layout config overlay, but instead go to the same folder as your PNG and select the `ini` file. + +If you're using a mouse or gamepad, be sure to check the "Mouse overlay" or "Gamepad overlay" boxes respectively and tweak settings as you see fit. \ No newline at end of file