a simple webserver for scheduling obs broadcasts from m3u8 playlists
Find a file Use this template
2024-06-13 16:21:22 +10:00
static initial commit 2024-06-10 13:41:59 +10:00
templates initial commit 2024-06-10 13:41:59 +10:00
.gitignore initial commit 2024-06-10 13:41:59 +10:00
LICENSE Initial commit 2024-06-10 13:17:38 +10:00
obs_scheduler.py small bug fix 2024-06-13 16:21:06 +10:00
README.md Merge branch 'main' of github.com:cyberboy666/obs_scheduler 2024-06-13 16:21:22 +10:00
requirements.txt initial commit 2024-06-10 13:41:59 +10:00

obs_scheduler

a simple webserver for scheduling obs broadcasts from m3u8 playlists

this app uses pythons flask to server a web interface for scheduling obs broadcasts using websockets.

you can set a start_time, end_time and path to playlist file - then provided obs is running and websockets are enabled at start time obs will load the playlist and start streaming it (on a loop) until the given end time

a program times list is also generated with starting times of each video in the playlist

image

NOTE: This project was quickly put together to explore diy automated broadcasting for subcarrier.tv - it is shared only to inspire / encourage others

how to run

  • install python3 on your computer (i think you may need 3.9 or higher ?)
  • clone this repo git clone https://github.com/cyberboy666/obs_scheduler.git and then cd obs_scheduler into the folder

if you want to install virtual envirnment:

sudo apt-get install python3-venv
python3 -m venv venv
source venv/bin/activate
  • install dependancies: pip3 install -r requirements.txt
  • open OBS and enable web-sockets (tools -> websocket server settings -> enable websocket server) and set port:4444 and password your_password - or update obs_scheduler.py with port/password used here
  • run the program: python3 obs_scheduler.py
  • go to http://localhost:5000 to veiw the interface