Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/norihiro/obs-output-filter
OBS plugin providing a source filter that redirect video to an output
https://github.com/norihiro/obs-output-filter
Last synced: 9 days ago
JSON representation
OBS plugin providing a source filter that redirect video to an output
- Host: GitHub
- URL: https://github.com/norihiro/obs-output-filter
- Owner: norihiro
- License: gpl-2.0
- Created: 2022-08-20T16:21:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T16:30:35.000Z (about 2 years ago)
- Last Synced: 2024-04-14T05:31:13.785Z (7 months ago)
- Language: CMake
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OBS Output Filter
## Introduction
This is a simple plugin for OBS Studio that provides a filter to send video to an output such as AJA output, Decklink Output, and NDI Output.
This plugin aims to provide better performance than the existing filters providing same functionality.## Properties
## Build and install
### Linux
Make sure `libobsConfig.cmake` is found by cmake.
After checkout, run these commands.
```
mkdir build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
..
make -j2
sudo make install
```
You might need to adjust `CMAKE_INSTALL_LIBDIR` for your system.### macOS
Make sure `libobsConfig.cmake` is found by cmake.
After checkout, run these commands.
```
mkdir build && cd build
cmake \
-DLIBOBS_LIB= \
..
make -j2
```
Finally, copy `obs-output-filter.so` and `data` to the obs-plugins folder.## See also
- [obs-decklink-output-filter](https://github.com/cg2121/obs-decklink-output-filter)
- [obs-aja-output-filter](https://github.com/norihiro/obs-aja-output-filter)