forked from n-air-app/n-air-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,22 @@ Electron client for the Streamlabs OBS streaming software. | |
|
||
### Node OBS | ||
|
||
Due to OBS containing files named `package.json`, it is not | ||
currently possible to install `node-obs` via NPM. You will | ||
need to install and compile it manually, and then symlink it | ||
in the root of this directory: `./node-obs`. | ||
Node OBS is our C++ Node module that provides a javascript | ||
interface to OBS. For SLOBS to start properly, it needs to | ||
find a built version of node OBS at `./node-obs`. There are | ||
currently a number of different ways to acquire this. | ||
|
||
The simplest is to clone the prebuild repo into slobs: | ||
|
||
``` | ||
git clone [email protected]:twitchalerts/node-obs-prebuild.git node-obs | ||
``` | ||
|
||
This repo is updated frequently from the `staging` branch on | ||
the node-obs repo. If you need more bleeding edge access, or | ||
need a specific branch, you will have to do the compilation | ||
yourself. Instructions can be found here: | ||
|
||
Node OBS can be found here: | ||
https://github.com/twitchalerts/node-obs | ||
|
||
### Yarn | ||
|