https://github.com/petrifiedpenguin/obs-rgb-levels-filter
RGB levels plugin for OBS
https://github.com/petrifiedpenguin/obs-rgb-levels-filter
Last synced: 6 months ago
JSON representation
RGB levels plugin for OBS
- Host: GitHub
- URL: https://github.com/petrifiedpenguin/obs-rgb-levels-filter
- Owner: petrifiedpenguin
- License: gpl-2.0
- Created: 2020-05-20T18:10:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T18:14:31.000Z (over 5 years ago)
- Last Synced: 2024-11-14T20:37:31.077Z (12 months ago)
- Language: C
- Size: 13.7 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Pop_OS-Guide - RGB Levels
README
# obs-rgb-levels-filter
A simple OBS Studio filter to adjust RGB levels.
I made this in order to fix a poor quality webcam image, for which the
built-in OBS color-correction filter was inadequate.
Tested with OBS 25.0.8 running on Ubuntu 18.04.04 (x86_64).
## Compiling on Linux
You will have installed the obs-studio source files.
Set OBS_SRC_DIR to obs-studio source directory (e.g. /usr/local/src/obs-studio)
and LIBOBS_LIB to full path to libobs.so (e.g. /usr/lib/libobs.so)
```
git clone https:?????
cd obs_rgb_levels_filter
mkdir build && cd build
cmake -DOBS_SRC_DIR="...path to obs-studio source directory..." \
-DLIBOBS_LIB="...path to libobs.so file..." -DCMAKE_INSTALL_PREFIX=/usr ..
make -j4
sudo make install
```
## Other platforms
I don't have access to a suitable machine to test this, but it should compile on
Windows/Mac (you may have to edit some paths in CMakeLists.txt for Windows)