Remote API EQ question

How to use Voicemeeter Remote API and control Voicemeeter Audio Engine
Post Reply
py2raf
Posts: 11
Joined: Wed Jul 17, 2019 6:52 pm

Remote API EQ question

Post by py2raf »

Hi there all;

I built a 123 Hz Notch Filter (to filter out a subtone) in a 2P function button, configured like this:

Button ON:
Bus(0).EQ.on=1;
Bus(0).EQ.channel(0).cell(2).on=1;
Bus(0).EQ.channel(0).cell(2).type=1;
Bus(0).EQ.channel(0).cell(2).f=123;
Bus(0).EQ.channel(0).cell(2).gain=0;
Bus(0).EQ.channel(0).cell(2).q=50;

Button OFF:
Bus(0).EQ.channel(0).cell(2).on=0;

It works GREAT, except for the fact... That this settings only affects the LEFT channel.

How can I make this EQ setting to work in all channels?

Thanks!!!
Vincent Burel
Site Admin
Posts: 2005
Joined: Sun Jan 17, 2010 12:01 pm

Re: Remote API EQ question

Post by Vincent Burel »

i guess you may also set the parameter for channel(1)

Bus(0).EQ.channel(1).cell(2).on=1;
Bus(0).EQ.channel(1).cell(2).type=1;
Bus(0).EQ.channel(1).cell(2).f=123;
Bus(0).EQ.channel(1).cell(2).gain=0;
Bus(0).EQ.channel(1).cell(2).q=50;
Post Reply