pip install psutil pycaw future toml
git clone https://github.com/Freemanium/voicemeeter-remote-python
cd voicemeeter-remote-python
pip install .
Modify line 16 of voicemeeter/remote.py
self.delay = 0.015 if delay is None else delay
Modify lines in sync.py
# target voicemeeter edition ('basic', 'banana' or 'potato')
vb_kind = 'banana'
# target input device index (left to right, start with 0)
ch_idx = 4
# Define mapping range (default: -60 ~ +12 dB)
vb_vo = max(min(round(sys_vo*72-60),72),-60)
python sync.py
in 'pip install psutils pycaw future toml' it should be psutil instead of psutils. Other than that, it works!
also for other people trying to get this working, set ch_idx = 0 on line 14 (just like it says to do in the sync.py, which I missed at first) and then go up one at a time till it's syncing the right device (2 was the magic number for me!)