Every module instance must have a section in the IDOL Speech Server tasks configuration file, where you specify its inputs and outputs.
You must use the following syntax to specify the inputs and outputs of each module instance:
{outputStreams} <- module (mode,{inputStreams})
For example, the following configuration specifies that the stt1
module instance accepts an input stream of normalized frames (nf1
) and produces the word output instance w3
:
w3 <- stt1 (_, nf1)
where _
specifies the default operational mode for the stt1
module instance.
|