Windows – Voicemeeter Banana – Volume control keys to multiple outputs

audiovolume-mixerwindowswindows 7

I just had Voicemeeter Banana set up and figured to use the "Hook Volume Keys" Option in the menu. But the problem arises when I have two audio outputs: one is my speakers and one is my headset. The volume controls work nicely for speakers, since it is the main output (A1), but the audio is unaffected for the secondary audio (A2). This means I can't control the volume for the headset.

Is there a way to hook the A2 output as well to the Volume Keys, just like A1, or is there some way to make A1 output audio to speakers and headset at the same time?

Best Answer

you may use MacroButtons (installed with Voicemeeter) to control everything with keyboard shortcut by a simple script. See user manual for details.

basically you can use this syntax to increase/decrease different gains in the same time:

to increase output gain:

bus[0].gain += 3.0; bus[1].gain += 3.0;

to decrease output gain:

bus[0].gain -= 3.0; bus[1].gain -= 3.0;

Related Question