mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2026-01-01 23:47:48 +00:00
16 lines
232 B
Python
16 lines
232 B
Python
import voicemeeterlib
|
|
|
|
import vmcompact
|
|
|
|
|
|
def main():
|
|
with voicemeeterlib.api(kind_id) as vmr:
|
|
app = vmcompact.connect(kind_id, vmr)
|
|
app.mainloop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
kind_id = "banana"
|
|
|
|
main()
|