voicemeeter-api-python/examples/observer/__main__.py
onyx-and-iris 86612a65cb add property setters in event class
use event property setters in examples

update README

patch bump
2022-10-06 16:45:08 +01:00

43 lines
1.1 KiB
Python

import logging
import voicemeeterlib
class Observer:
def __init__(self, vm):
self.vm = vm
# register your app as event observer
self.vm.subject.add(self)
# enable level updates, since they are disabled by default.
self.vm.event.ldirty = True
# define an 'on_update' callback function to receive event updates
def on_update(self, subject):
if subject == "pdirty":
print("pdirty!")
elif subject == "mdirty":
print("mdirty!")
elif subject == "ldirty":
for bus in self.vm.bus:
if bus.levels.isdirty:
print(bus, bus.levels.all)
elif subject == "midi":
current = self.vm.midi.current
print(f"Value of midi button {current} is {self.vm.midi.get(current)}")
def main():
with voicemeeterlib.api(kind_id) as vm:
Observer(vm)
while cmd := input("Press <Enter> to exit\n"):
if not cmd:
break
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
kind_id = "banana"
main()