voicemeeter-api-python/examples/observer/__main__.py
onyx-and-iris 9af2fc98aa add support for all strip level modes to observers
is_updated now returns a bool (if that channel is updated (dirty))

observer example updated.

minor ver bump
2022-07-06 13:14:23 +01:00

39 lines
996 B
Python

import voicemeeterlib
class Observer:
def __init__(self, vm):
self.vm = vm
def on_update(self, subject):
if subject == "pdirty":
print("pdirty!")
if subject == "mdirty":
print("mdirty!")
if subject == "ldirty":
info = (
"levels changed:",
f"[strip 0 {self.vm.strip[0].levels.is_updated}]",
f"[strip 1 {self.vm.strip[1].levels.is_updated}]",
f"[strip 2 {self.vm.strip[2].levels.is_updated}]",
f"[strip 3 {self.vm.strip[3].levels.is_updated}]",
f"[strip 4 {self.vm.strip[4].levels.is_updated}]",
)
print(" ".join(info))
def main():
with voicemeeterlib.api(kind_id) as vm:
obs = Observer(vm)
vm.subject.add(obs)
while cmd := input("Press <Enter> to exit\n"):
if not cmd:
break
if __name__ == "__main__":
kind_id = "banana"
main()