The [Encoding]
section of the configuration file contains the names of the encoding tasks that you want to run.
Use the EncodingEngine
parameter to specify the names of the tasks. The names that you specify must refer to other sections of the configuration file that contain settings for the encoding engines.
You can specify multiple tasks by using a comma-separated list of names:
[Encoding] EncodingEngine=MyMpegEncoder,MyRollingBuffer
Alternatively, you can use numbered parameters. Use a unique number for each task, starting from zero and increasing by one each time:
[Encoding] EncodingEngine0=MyMpegEncoder EncodingEngine1=MyRollingBuffer
Task names cannot include any of the following characters:
.
),
):
);
)*
)=
)After specifying the names of the sections for your encoding tasks, you can set parameters to configure the encoding engines:
[MyRollingBuffer] Type=rollingbuffer Stream=Stream1 EvidentialMode=false
|