https://github.com/scaledteam/obs-image-reaction
OBS Plugin with image that reacts to sound source.
https://github.com/scaledteam/obs-image-reaction
obs-studio
Last synced: 6 months ago
JSON representation
OBS Plugin with image that reacts to sound source.
- Host: GitHub
- URL: https://github.com/scaledteam/obs-image-reaction
- Owner: scaledteam
- License: gpl-2.0
- Created: 2021-08-19T18:17:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T14:54:22.000Z (7 months ago)
- Last Synced: 2025-03-31T10:01:31.579Z (6 months ago)
- Topics: obs-studio
- Language: C
- Homepage:
- Size: 25.4 KB
- Stars: 89
- Watchers: 7
- Forks: 13
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[English](README.md) | [繁體中文](README.zh-TW.md)
# OBS Image Reaction Plugin
Image that reacts to sound source.## Installing binaries
Download binaries from [official releases](https://github.com/scaledteam/obs-image-reaction/releases/) or more user-friendly version from [ashmanix](https://github.com/ashmanix/obs-image-reaction/releases).For Windows, Move the contents of plugin into your obs installation directory. It usually installed into "C:\Program Files\obs-studio\".
For GNU/Linux, put "libimage-reaction" folder into "~/.config/obs-studio/plugins/" folder.
For Mac OS, try this port from ashmanix: https://github.com/ashmanix/obs-image-reaction .
## Building and installing for GNU/Linux:
```
git clone https://github.com/scaledteam/obs-image-reaction
cd obs-image-reaction
mkdir build
cd build
cmake ..
make
mkdir -p ~/.config/obs-studio/plugins/libimage-reaction/bin/64bit
cp libimage-reaction.so ~/.config/obs-studio/plugins/libimage-reaction/bin/64bit/
cp -r ../data ~/.config/obs-studio/plugins/libimage-reaction/
```## Building for Windows from GNU/Linux:
You need to download MinGW, OBS Studio source code, Wine, install OBS Studio using wine.
```
git clone https://github.com/scaledteam/obs-image-reaction
cd obs-image-reaction
mkdir build-win
cd build-win
cmake .. -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_CXX_COMPILER=/usr/bin/x86_64-w64-mingw32-g++-win32 -DCMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc-win32 -DLIBOBS_INCLUDE_DIR=~/git/obs-studio-27.0.1/libobs -DLIBOBS_LIB=~/.wine/drive_c/Program\ Files/obs-studio/bin/64bit/obs.dll
make
```
Now move libimage-reaction.dll into OBS Plugin directory.