Auto fade music: Pressing a button will allow your music to automatically fade when you press to talk your microphone.
Something like this http://support.spacialaudio.com/wiki/Voice_FX
I don't have controller and it is a pain in the neck to turn down the volume everytime you talk over the microphone.
Something like this http://support.spacialaudio.com/wiki/Voice_FX
I don't have controller and it is a pain in the neck to turn down the volume everytime you talk over the microphone.
geposted Tue 20 Aug 13 @ 8:14 am
Assign a keyboard button as ..
deck 1 volume 50% while_pressed & deck 2 volume 50% while_pressed & mic on while_pressed
deck 1 volume 50% while_pressed & deck 2 volume 50% while_pressed & mic on while_pressed
geposted Tue 20 Aug 13 @ 4:00 pm
djdad wrote :
Assign a keyboard button as ..
deck 1 volume 50% while_pressed & deck 2 volume 50% while_pressed & mic on while_pressed
deck 1 volume 50% while_pressed & deck 2 volume 50% while_pressed & mic on while_pressed
When I press the assined keyboard, I want it to lock on while talking over the microphone and then I press assined keyboard again to release.
thanks.
geposted Tue 20 Aug 13 @ 9:43 pm
Then you will need to map two buttons (one for each deck) with the following commands:
DECK 1:
deck 1 var_equal "TalkOver" 1 ? deck 1 volume 100% & deck 1 mic off & deck 1 set "TalkOver" 0 : deck 1 volume 50% & deck 1 mic on & deck 1 set "TalkOver" 1
DECK 2:
deck 2 var_equal "TalkOver" 1 ? deck 2 volume 100% & deck 2 mic off & deck 2 set "TalkOver" 0 : deck 2 volume 50% & deck 2 mic on & deck 2 set "TalkOver" 1
PS:
You may need to omit the "deck X" part of the code before the MIC ON/OFF commands if it doesn't work as it should...
DECK 1:
deck 1 var_equal "TalkOver" 1 ? deck 1 volume 100% & deck 1 mic off & deck 1 set "TalkOver" 0 : deck 1 volume 50% & deck 1 mic on & deck 1 set "TalkOver" 1
DECK 2:
deck 2 var_equal "TalkOver" 1 ? deck 2 volume 100% & deck 2 mic off & deck 2 set "TalkOver" 0 : deck 2 volume 50% & deck 2 mic on & deck 2 set "TalkOver" 1
PS:
You may need to omit the "deck X" part of the code before the MIC ON/OFF commands if it doesn't work as it should...
geposted Wed 21 Aug 13 @ 1:22 am
PhantomDeejay wrote :
Then you will need to map two buttons (one for each deck) with the following commands:
DECK 1:
deck 1 var_equal "TalkOver" 1 ? deck 1 volume 100% & deck 1 mic off & deck 1 set "TalkOver" 0 : deck 1 volume 50% & deck 1 mic on & deck 1 set "TalkOver" 1
DECK 2:
deck 2 var_equal "TalkOver" 1 ? deck 2 volume 100% & deck 2 mic off & deck 2 set "TalkOver" 0 : deck 2 volume 50% & deck 2 mic on & deck 2 set "TalkOver" 1
PS:
You may need to omit the "deck X" part of the code before the MIC ON/OFF commands if it doesn't work as it should...
DECK 1:
deck 1 var_equal "TalkOver" 1 ? deck 1 volume 100% & deck 1 mic off & deck 1 set "TalkOver" 0 : deck 1 volume 50% & deck 1 mic on & deck 1 set "TalkOver" 1
DECK 2:
deck 2 var_equal "TalkOver" 1 ? deck 2 volume 100% & deck 2 mic off & deck 2 set "TalkOver" 0 : deck 2 volume 50% & deck 2 mic on & deck 2 set "TalkOver" 1
PS:
You may need to omit the "deck X" part of the code before the MIC ON/OFF commands if it doesn't work as it should...
At first I copied and pasted the commands, but they didn't work then I omitted the "deck x" and the commands worked.
I don't know what happened, but now the commands work even if I don't omit the "deck x" part of the code.
Thank you very much.
geposted Sat 24 Aug 13 @ 1:55 pm
Could you not do this with a single mapping and a variable?
if var = 0, reduce volume and set var to 1, else increase volume and set var to 0
Roy
if var = 0, reduce volume and set var to 1, else increase volume and set var to 0
Roy
geposted Fri 30 Aug 13 @ 10:40 am