The N
value is a zero-based list of operations performed by a particular task.
Define each operation and module in the task you want to create, in the form:
N = output <- module(mode, input)
where,
N
|
is the number of the module. Number them consecutively from zero. |
output
|
is the module output. Use a comma-separated list of one or more output variable prefixes, or the keyword Variable names must be in lower case and they must follow the prefix restrictions. |
module
|
is the module for the operation being performed. Module names must be in lower case. For example, wav . |
mode
|
is the mode in which to run the module. Modes must be in upper case, for example MONO . |
input
|
is the module input. Use a comma-separated list of one or more input variable prefixes, or the keyword Variable names must be in lower case and they must follow the prefix restrictions. |
For details on configuring tasks, and on module inputs and outputs, see the IDOL Speech Server Administration Guide.
Type: | String |
Default: | None |
Required: | Each task must have at least one operation |
Configuration Section: | MyTask |
Example: | 0 = a <- wav(MONO, input)
|
See Also: |
|