Difference between revisions of "OBS for other distributions"

From Looking Glass
Jump to navigation Jump to search
(Created page with "== Looking Glass plugin for Open Broadcaster Software == === Build Instructions === The OBS plugin is included in the main source tree of Looking Glass ==== Dependencies ===...")
 
m (Remove remnant from earlier removed text)
Tags: Mobile web edit, Mobile edit
 
(29 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Looking Glass plugin for Open Broadcaster Software ==
+
The OBS plugins requires many client dependencies, along with the libobs devel files. The following is a list of the required dependencies for other distros. The building method is the same as the normal client, as described in the [https://looking-glass.io/docs/stable/obs Official Documentation].
  
=== Build Instructions ===
+
== Fedora 29+ ([https://rpmfusion.org/ RPM Fusion]) ==
The OBS plugin is included in the main source tree of Looking Glass
+
<syntaxhighlight lang=bash>
 +
dnf install obs-studio-devel
 +
</syntaxhighlight>
  
==== Dependencies ====
+
== OpenSuSE Leap 15.1+ ([http://packman.links2linux.org/ Packman]) ==
The OBS plugin requires the following extra dependencies
+
<syntaxhighlight lang=bash>
* libobs-dev
+
zypper in obs-studio-devel
 +
</syntaxhighlight>
  
==== Building ====
+
== Arch Linux / Manjaro ==
These instructions are the same as when building the [[Installation#Building|client]]
+
Devel files included in main package
 
<syntaxhighlight lang=bash>
 
<syntaxhighlight lang=bash>
mkdir obs/build
+
pacman -Syu obs-studio
cd obs/build
 
cmake ../
 
make
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=== Installation ===
+
== Void Linux ==
 
 
[[File:Looking-Glass-OBS-Source-Add.png|thumb|Adding the plugin as a video source]]
 
 
 
The resulting liblooking-glass-obs.so file should be placed in your OBS plugin directory.
 
 
 
 
<syntaxhighlight lang=bash>
 
<syntaxhighlight lang=bash>
mkdir -p ~/.config/obs-studio/plugins/looking-glass-obs/bin/64bit
+
xbps-install -Syu obs-devel
cp liblooking-glass-obs.so ~/.config/obs-studio/plugins/looking-glass-obs/bin/64bit
 
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 15:04, 18 July 2021

The OBS plugins requires many client dependencies, along with the libobs devel files. The following is a list of the required dependencies for other distros. The building method is the same as the normal client, as described in the Official Documentation.

Fedora 29+ (RPM Fusion)[edit]

dnf install obs-studio-devel

OpenSuSE Leap 15.1+ (Packman)[edit]

zypper in obs-studio-devel

Arch Linux / Manjaro[edit]

Devel files included in main package

pacman -Syu obs-studio

Void Linux[edit]

xbps-install -Syu obs-devel