"gain" command can have gradual increase like "fadeto" has

The Virtual Audio Mixer discussions and support...
Post Reply
I3ordo
Posts: 24
Joined: Fri Oct 19, 2018 1:35 pm

"gain" command can have gradual increase like "fadeto" has

Post by I3ordo »

Hello VB Audio!

Currently I am using audio ducking like this:
On
Strip(7).fadeto = (-35.0,50);

off:

Code: Select all

Strip(7).fadeto = (-10,1600);
--But if you modify the limiter volume, it will return to the "-10"

I wonder if "fadeto" can work like the way below:

Code: Select all

Strip(7).fadeto = currentlevel (-25,1000); --Strip7 will decrease its volume by 25 in 1000 ms.
i know that:

Code: Select all

Strip(7).gain -= 25--but this is so sudden so what i am searching for is gain - with fading.

Or is there already an existing solution at the moment?
Vincent Burel
Site Admin
Posts: 2139
Joined: Sun Jan 17, 2010 12:01 pm

Re: "gain" command can have gradual increase like "fadeto" has

Post by Vincent Burel »

maybe i could create an instruction like this:
Strip(7).fadeFrom = (-10.0, 1000);
decreasing the Strip(7) level by 10dB in 1 second...

will think about...
I3ordo
Posts: 24
Joined: Fri Oct 19, 2018 1:35 pm

Re: "gain" command can have gradual increase like "fadeto" has

Post by I3ordo »

Hello Mr VB,

maybe, it can be just "gain" but with added "fade" behaviour.

Code: Select all

Strip(7).gain = (-25,600)--subtract 25db in 600ms
I3ordo
Posts: 24
Joined: Fri Oct 19, 2018 1:35 pm

Re: "gain" command can have gradual increase like "fadeto" has

Post by I3ordo »

Can i expect any good news about this in near future?
Vincent Burel
Site Admin
Posts: 2139
Joined: Sun Jan 17, 2010 12:01 pm

Re: "gain" command can have gradual increase like "fadeto" has

Post by Vincent Burel »

yes, we have implemented FadeBy instruction:

Example:
Strip(7).FadeBy = (-10, 1000); //remove 10 dB in 1 second to the current level of strip(7)
Post Reply