User manual

Automation Protocol Audio Commands
Miranda Technologies Ltd Page 175
void SilenceFade(int Silence);
{
remote_send("j43%01x", Silence);
}
Fade Voice-over 1 From/To Silence j44
Fades voice-over one up and down. Voice-over pairs can be controlled
independently so a ‘pairs’ parameter is provided. Parameter 2 dictates the
destination of the transition, 0 to fade the voice-over down and 1 to fade the
voice-over up.
CMD Function Param_1 Param_2
j4 %01x
Transition
%01x
Pair
%01x
To/From Silence
j4 4 1 or 2 0 or 1
void VO1Fade(int Pair, int Destination);
{
remote_send("j44%01x%01x", Pair, Destination);
}
Note: For Imagestore 300[+], Imagestore HD-TV and Imagestore 750
this command has different usage.
For Imagestore 300[+], Imagestore HD-TV and Imagestore 750, this
command is used to fade both voice-over 1 and voice-over 2 to or from
silence, with parameter 1 determining the number of the voice-over to be
faded, as follows:
CMD Function Param_1 Param_2
j4 Transition Voice-over To/From Silence
j4 4 1 or 2 0 or 1
void VO1Fade(int Destination);
{
remote_send("j441%01x", Destination);
}