"gain" command can have gradual increase like "fadeto" has
Posted: Thu Nov 14, 2019 11:59 am
Hello VB Audio!
Currently I am using audio ducking like this:
On
Strip(7).fadeto = (-35.0,50);
off:
--But if you modify the limiter volume, it will return to the "-10"
I wonder if "fadeto" can work like the way below:
i know that:
Or is there already an existing solution at the moment?
Currently I am using audio ducking like this:
On
Strip(7).fadeto = (-35.0,50);
off:
Code: Select all
Strip(7).fadeto = (-10,1600);
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.
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?