mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2024-11-15 17:40:52 +00:00
3eec86e5ed
initial commit
13 lines
248 B
Python
13 lines
248 B
Python
import voicemeeter
|
|
import vmcompact
|
|
|
|
|
|
if __name__ == "__main__":
|
|
kind_id = "banana"
|
|
|
|
voicemeeter.launch(kind_id, hide=False)
|
|
|
|
with voicemeeter.remote(kind_id) as vmr:
|
|
app = vmcompact.connect(kind_id, vmr)
|
|
app.mainloop()
|