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?