mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
9af2fc98aa
is_updated now returns a bool (if that channel is updated (dirty)) observer example updated. minor ver bump
39 lines
996 B
Python
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()
|