Palakis / obs-ndi

NewTek NDI integration for OBS Studio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

obs-ndi

Network A/V in OBS Studio with NewTek's NDI technology.

Build Status Twitter Financial Contributors on Open Collective

Features

  • NDI Source : receive NDI video and audio in OBS
  • NDI Output : transmit video and audio from OBS to NDI
  • NDI Filter (a.k.a NDI Dedicated Output) : transmit a single source or scene to NDI

Downloads

Binaries for Windows, macOS and Linux are available in the Releases section.

Compiling

Prerequisites

You'll need CMake and a working development environment for OBS Studio installed on your computer.

Windows

In cmake-gui, you'll have to set these CMake variables:

  • QTDIR (path) : location of the Qt environment suited for your compiler and architecture
  • LIBOBS_INCLUDE_DIR (path) : location of the libobs subfolder in the source code of OBS Studio
  • LIBOBS_LIB (filepath) : location of the obs.lib file
  • OBS_FRONTEND_LIB (filepath) : location of the obs-frontend-api.lib file

Linux

On Debian/Ubuntu:

# Start by installing the latest libndi deb available [here](https://github.com/Palakis/obs-ndi/releases).
git clone https://github.com/Palakis/obs-ndi.git
cd obs-ndi
mkdir build && cd build
# If you are on Ubuntu, add the `-DUSE_UBUNTU_FIX=true` flag to your cmake command
cmake -DLIBOBS_INCLUDE_DIR="<path to the libobs sub-folder in obs-studio's source code>" -DCMAKE_INSTALL_PREFIX=/usr ..
make -j4
sudo make install

OS X

git clone https://github.com/Palakis/obs-ndi.git
cd obs-ndi
mkdir build && cd build
cmake -DLIBOBS_INCLUDE_DIR=<path to the libobs sub-folder in obs-studio's source code> -DLIBOBS_LIB=<path to libobs.0.dylib> -DOBS_FRONTEND_LIB=<path to libobs-frontend-api.dylib> -DQt5Core_DIR=/usr/local/opt/qt5/lib/cmake/Qt5Core -DQt5Widgets_DIR=/usr/local/opt/qt5/lib/cmake/Qt5Widgets ../
make -j4
# Copy libobs-ndi.so to the obs-plugins folder
# Copy libndi.dylib from the NDI SDK to the obs-plugins folder too

About

NewTek NDI integration for OBS Studio

License:GNU General Public License v2.0


Languages

Language:C 43.6%Language:Inno Setup 30.2%Language:C++ 19.4%Language:Shell 2.9%Language:Ruby 1.5%Language:CMake 1.5%Language:Batchfile 0.9%