logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
james_kille  
#1 Posted : Sunday, February 28, 2021 7:09:03 AM(UTC)
james_kille

Rank: Newbie

Groups: Registered
Joined: 2/16/2021(UTC)
Posts: 3
United Kingdom

Thanks: 3 times
Just wondered whether there was a more efficient way of fading the master audio bus than what i've currently just created using Studio793's Script Builder (attached)? I've only just created it and the script is extremely exaggarated for testing purposes, but will smoothen out later.

I tried experimenting with the SetVolumeFade and trying to impliment 'Master' or 'MasterAudio' but wasn't successful as it requires an input. In my setup it's much easier to fade the Master bus opposed to invidual audio inputs, so if anyone has any experience or other forum posts, please let me know, it is greatly appreciated!

Many thanks in advance!

Master Audio Fade.png (59kb) downloaded 4 time(s).
doggy  
#2 Posted : Sunday, February 28, 2021 7:50:38 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Don't forget you can set SetVolumeFade to (whatever is) Active

You make your current setup smoother when doing the functions (mastervolume) within a script with a for next loop
thanks 1 user thanked doggy for this useful post.
james_kille on 3/1/2021(UTC)
james_kille  
#3 Posted : Monday, March 1, 2021 12:11:52 AM(UTC)
james_kille

Rank: Newbie

Groups: Registered
Joined: 2/16/2021(UTC)
Posts: 3
United Kingdom

Thanks: 3 times
Originally Posted by: doggy Go to Quoted Post
Don't forget you can set SetVolumeFade to (whatever is) Active

You make your current setup smoother when doing the functions (mastervolume) within a script with a for next loop


For our setup our audio and visual are separate inputs, so it's just much easier to create a script for 3/4 people to fade a bus opposed to active inputs.

Do you mind expanding on your second point? I'm a complete newbie to scripting so have just trialed and error'ed it, thankyou for your help.

doggy  
#4 Posted : Monday, March 1, 2021 1:50:22 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: james_kille Go to Quoted Post


Do you mind expanding on your second point? I'm a complete newbie to scripting so have just trialed and error'ed it, thankyou for your help.



They are simple vb.net scripting , might check the "Scripting for Dummies thread "

Example:

Code:
For i as integer = 100 to 0 step -5
API.Function("SetMasterVolume",Value:=i.tostring )
sleep(100)
next


if brave you can read the current value first and start from there

BTW the duration added to the function in the scriptbuilder is useless as it's not really part of that function
thanks 1 user thanked doggy for this useful post.
james_kille on 3/2/2021(UTC)
james_kille  
#5 Posted : Tuesday, March 2, 2021 4:13:46 AM(UTC)
james_kille

Rank: Newbie

Groups: Registered
Joined: 2/16/2021(UTC)
Posts: 3
United Kingdom

Thanks: 3 times
Thankyou for that.

I've had a brief look over the thread and tried to take your code of triggering an audio fade before the end of a video, and tried to impliment a stinger to that too but failed, think I need to research and learn it all more before I try things like that.

Many thanks for the script for the MasterAudio fade!
Narcogen  
#6 Posted : Wednesday, November 24, 2021 3:20:44 AM(UTC)
Narcogen

Rank: Advanced Member

Groups: Registered
Joined: 8/21/2019(UTC)
Posts: 67
Man
United States

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
Originally Posted by: doggy Go to Quoted Post
Don't forget you can set SetVolumeFade to (whatever is) Active

You make your current setup smoother when doing the functions (mastervolume) within a script with a for next loop


What if you wanted to do a SetVolumeFade to a bus?
doggy  
#7 Posted : Wednesday, November 24, 2021 4:19:38 AM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,057
Belgium
Location: Belgium

Thanks: 283 times
Was thanked: 916 time(s) in 755 post(s)
Originally Posted by: Narcogen Go to Quoted Post
Originally Posted by: doggy Go to Quoted Post
Don't forget you can set SetVolumeFade to (whatever is) Active

You make your current setup smoother when doing the functions (mastervolume) within a script with a for next loop


What if you wanted to do a SetVolumeFade to a bus?


SetBusxVolume

with the before mention loop code
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.