OBSPlugin/backend/backend.py

52 lines
1.4 KiB
Python

from streamcontroller_plugin_tools import BackendBase
from OBSController import OBSController
from obswebsocket import events
import os
import threading
import Pyro5.api
@Pyro5.api.expose
class Backend(BackendBase):
def __init__(self):
super().__init__()
self.OBSController = OBSController()
self.OBSController.connect_to(
host=self.frontend.get_settings()["ip"],
port=self.frontend.get_settings()["port"],
password=self.frontend.get_settings()["password"]
)
"""
Wrapper methods around OBSController aiming to allow a communication
between the frontend and the backend in default python data types
"""
def get_record_status(self) -> dict:
status = self.OBSController.get_record_status()
if status is None:
return
return {
"active": status.datain["outputActive"],
"paused": status.datain["outputPaused"],
"timecode": status.datain["outputTimecode"],
"duration": status.datain["outputDuration"],
"bytes": status.datain["outputBytes"]
}
def get_connected(self) -> bool:
return self.OBSController.connected
def toggle_record(self):
self.OBSController.toggle_record()
def toggle_record_pause(self):
self.OBSController.toggle_record_pause()
backend = Backend()
for t in threading.enumerate():
if t.daemon:
t.join()