voicemeeter-api-python/examples/observer/__main__.py

43 lines
1.1 KiB
Python
Raw Normal View History

2022-09-29 10:01:18 +01:00
import logging
2022-06-26 02:07:37 +01:00
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
2022-06-26 02:07:37 +01:00
# define an 'on_update' callback function to receive event updates
2022-06-26 02:07:37 +01:00
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)}")
2022-06-26 02:07:37 +01:00
def main():
with voicemeeterlib.api(kind_id) as vm:
2022-09-29 10:01:18 +01:00
Observer(vm)
2022-06-26 02:07:37 +01:00
while cmd := input("Press <Enter> to exit\n"):
if not cmd:
break
2022-06-26 02:07:37 +01:00
if __name__ == "__main__":
2022-09-29 10:01:18 +01:00
logging.basicConfig(level=logging.INFO)
2022-06-26 02:07:37 +01:00
kind_id = "banana"
main()