快速登录:  

Forum: Wishes and new features

话题: Auto fade music

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

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.
 

发表时间 Tue 20 Aug 13 @ 8:14 am
djdadPRO InfinityDevelopment ManagerMember since 2005
Assign a keyboard button as ..
deck 1 volume 50% while_pressed & deck 2 volume 50% while_pressed & mic on while_pressed
 

发表时间 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

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.
 

发表时间 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...
 

发表时间 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...


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.
 

发表时间 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
 

发表时间 Fri 30 Aug 13 @ 10:40 am


(陈旧帖子或论坛版块会自动关闭)