Accesso rapido:  

Forum: VirtualDJ Technical Support

Topic: booth mute on mic live

Questo argomento è obsoleto e potrebbe contenere informazioni obsolete o errate.

Tone FMControlleristMember since 2018
I have everything working as I want with three soundcards for main, headphones and booth, and a controller mapping I re-wrote muself. The only thing I am struggling with is:
I would like to mute the booth output whenever the mic is live.
The mic is left permanently on in the gui, and controlled by a fader on the gain parameter. There is also a button with "100% while pressed"
So I can see that the mic fader has to perform two functions, but I am struggling with the syntax for "mute".
I can see how to mute a deck, but is it even possible to mute everything to an output?
 

Inviato Sun 12 May 19 @ 2:26 pm
I don't see how this is necessary for home use.
 

Inviato Sun 12 May 19 @ 2:32 pm
AdionPRO InfinityCTOMember since 2006
booth_volume might be what you're looking for?
 

Inviato Sun 12 May 19 @ 3:44 pm
Tone FMControlleristMember since 2018
I've tried booth_volume but I can't get the syntax right.
 

Inviato Sat 25 May 19 @ 4:40 pm
Why do you need a main and a booth output?
 

Inviato Sat 25 May 19 @ 4:46 pm
NicotuxHome userMember since 2014
I've tried booth_volume but I can't get the syntax right.

this one is somehow working:
mic_volume & mic_volume 0 ? booth_volume 1 : booth_volume 0

But not these ones - only mutting booth is ok not restoring it" - looks like booth_volume does not accept script or passed parameter
mic_volume & mic_volume 0 ? booth_volume "`get_var '$savebooth'`" : booth_volume 0 ? nothing : set "$savebooth" "`booth_volume`" & booth_volume 0
mic_volume & mic_volume 0 ? get_var '$savebooth' & booth_volume : booth_volume 0 ? nothing : set "$savebooth" "`booth_volume`" & booth_volume 0
mic_volume & mic_volume 0 ? booth_volume "get_var '$savebooth'" : booth_volume 0 ? nothing : set "$savebooth" "`booth_volume`" & booth_volume 0

or maybe all three syntaxes are wrong
 

Inviato Sun 26 May 19 @ 1:17 pm
locodogPRO InfinityModeratorMember since 2013
Try with this

get_var '$savebooth' & param_cast & booth_volume
 

Inviato Sun 26 May 19 @ 8:19 pm
NicotuxHome userMember since 2014
Try with this
get_var '$savebooth' & param_cast & booth_volume

Yes it really set booth_volume when used stand alone, but here it does not work in this case

in the script :
mic_volume & mic_volume 0 ? get_var '$savebooth' & param_cast & booth_volume : booth_volume 0 ? nothing : set "$savebooth" "`booth_volume`" & booth_volume 0

the problem is elsewhere: the variable '$savebooth' is updated as mic_volume will go down with booth being set to 0

the otherhand this one would have to work:

mic_volume & booth_volume 0 ? mic_volume 0 ? get_var '$savebooth' & param_cast & booth_volume & set '$savebooth' 0 : nothing : mic_volume 0 ? nothing : var '$savebooth' 0 ? set "$savebooth" "`booth_volume`" & booth_volume 0 : nothing

but it does not work as a custom slider :(
 

Inviato Mon 27 May 19 @ 3:32 am


(Vecchi argomenti e forum sono automaticamente chiusi)