https://github.com/norihiro/obs-audio-pan-filter
Pan control filter for OBS audio source
https://github.com/norihiro/obs-audio-pan-filter
obs-studio obs-studio-plugin
Last synced: 5 months ago
JSON representation
Pan control filter for OBS audio source
- Host: GitHub
- URL: https://github.com/norihiro/obs-audio-pan-filter
- Owner: norihiro
- License: gpl-2.0
- Created: 2020-07-23T10:07:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-11-02T13:54:39.000Z (over 2 years ago)
- Last Synced: 2024-04-14T05:31:14.264Z (about 1 year ago)
- Topics: obs-studio, obs-studio-plugin
- Language: CMake
- Homepage:
- Size: 143 KB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Pop_OS-Guide - Audio Pan
README
# Audio Pan Filter plugin for OBS Studio
## Introduction
This is a simple plugin to control stereo pan of audio source in OBS Studio.
- Adjust volumes of left and right channel separately
- Adjust pan control of each channel## Build
### Linux
Make sure `libobsConfig.cmake` is found by cmake.
Then run these commands.
```
git clone https://github.com/norihiro/obs-audio-pan-filter
cd obs-audio-pan-filter
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.
Then run these commands.
```
git clone https://github.com/norihiro/obs-audio-pan-filter
cd obs-audio-pan-filter
mkdir build && cd build
cmake \
-DLIBOBS_LIB= \
..
make -j2
```
Finally, copy obs-audio-pan-filter.so to the obs-plugins folder.