Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 601 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 601 Bytes

OBSBOT controller with OSC

written in Python, to control OBSBOT app using OBSBOT center app. the app communicates through the app with OSC. make sure to enable OSC feature first in the OBSBOT center app.

running the app

  1. make sure to install all the required dependencies:
python3 -m venv venv/
source venv/bin/activate
pip install -r requirements.txt
  1. to run the app, run:
python main.py

the app will run on 0.0.0.0, port 3000.

  1. waitress is installed as a WSGI server. to run with WSGI server:
waitress-serve --host 0.0.0.0 --port 3000 main:app