2022-09-29 10:01:18 +01:00
|
|
|
import logging
|
|
|
|
|
2022-09-16 12:36:12 +01:00
|
|
|
import obsws_python as obs
|
2022-07-02 02:23:22 +01:00
|
|
|
import voicemeeterlib
|
|
|
|
|
2022-10-28 02:14:08 +01:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
|
|
|
|
class Observer:
|
|
|
|
def __init__(self, vm):
|
|
|
|
self.vm = vm
|
|
|
|
self.client = obs.EventClient()
|
|
|
|
self.client.callback.register(self.on_current_program_scene_changed)
|
|
|
|
|
|
|
|
def on_start(self):
|
|
|
|
self.vm.strip[0].mute = True
|
|
|
|
self.vm.strip[1].B1 = True
|
|
|
|
self.vm.strip[2].B2 = True
|
|
|
|
|
|
|
|
def on_brb(self):
|
|
|
|
self.vm.strip[7].fadeto(0, 500)
|
|
|
|
self.vm.bus[0].mute = True
|
|
|
|
|
|
|
|
def on_end(self):
|
|
|
|
self.vm.apply(
|
|
|
|
{
|
|
|
|
"strip-0": {"mute": True},
|
|
|
|
"strip-1": {"mute": True, "B1": False},
|
|
|
|
"strip-2": {"mute": True, "B1": False},
|
|
|
|
"vban-in-0": {"on": False},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def on_live(self):
|
|
|
|
self.vm.strip[0].mute = False
|
|
|
|
self.vm.strip[7].fadeto(-6, 500)
|
|
|
|
self.vm.strip[7].A3 = True
|
|
|
|
self.vm.vban.instream[0].on = True
|
|
|
|
|
|
|
|
def on_current_program_scene_changed(self, data):
|
|
|
|
def fget(scene):
|
|
|
|
run = {
|
|
|
|
"START": self.on_start,
|
|
|
|
"BRB": self.on_brb,
|
|
|
|
"END": self.on_end,
|
|
|
|
"LIVE": self.on_live,
|
|
|
|
}
|
|
|
|
return run.get(scene)
|
|
|
|
|
|
|
|
scene = data.scene_name
|
|
|
|
print(f"Switched to scene {scene}")
|
|
|
|
if fn := fget(scene):
|
|
|
|
fn()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2022-09-29 10:01:18 +01:00
|
|
|
subs = {ev: False for ev in ["pdirty", "mdirty", "midi"]}
|
|
|
|
with voicemeeterlib.api("potato", subs=subs) as vm:
|
2022-10-28 02:14:08 +01:00
|
|
|
obs = Observer(vm)
|
2022-07-29 20:06:26 +01:00
|
|
|
while cmd := input("<Enter> to exit\n"):
|
2022-07-02 02:23:22 +01:00
|
|
|
if not cmd:
|
|
|
|
break
|
2022-10-28 02:14:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|