User manual
Automation Protocol Audio Commands
Miranda Technologies Ltd Page 174
Fade A/B j41
When in A/B mix mode, fades between the A and B audio. If the destination
is A then Param_1 takes the value of 0. If the destination is B then Param_1
should be 1.
CMD Function Param_1
j4 %01x
Transition
%01x
Destination A/B
j4 1 0 or 1
void ABFade(int Destination);
{
remote_send("j41%01x", Destination);
}
Cut to/from Silence j42
Cuts the audio output to and from silence. If cutting to silence then Param_1
takes the value of 0. If cutting from silence then Param_1 should be 1.
CMD Function Param_1
j4 %01x
Transition
%01x
To/From Silence
j4 2 0 or 1
void SilenceCut(int Silence);
{
remote_send("j42%01x", Silence);
}
Fade to/from Silence j43
Fades the audio output to and from silence. If fading to silence then Param_1
takes the value of 0. If fading from silence then Param_1 should be 1.
CMD Function Param_1
j4 %01x
Transition
%01x
To/From Silence
j4 3 0 or 1