To create a configuration, you need to consider:
A Media Server configuration can include [Ingest]
, [Analysis]
, [Transform]
, [Encoding]
, [EventProcessing]
, and [Output]
sections. Each section contains a list of tasks that you want to run:
[Ingest] IngestEngine=LibAvIngest [Analysis] AnalysisEngine0=FaceDetect AnalysisEngine1=FaceRecognize ... [Transform] TransformEngine0=ResizeFaceImagesForEncoding ... [EventProcessing] EventProcessingEngine0=Deduplicate ... [Encoding] EncodingEngine0=Image ... [Output] OutputEngine0=IdolServer ...
Task names cannot include any of the following characters:
.
),
):
);
)*
)=
) These tasks are configured in other sections of the configuration file. The previous example defines an ingest task named LibAvIngest
which you would configure in a section named [LibAvIngest]
.
Every task configuration section contains the Type
parameter to specify the engine to use to complete the task, and contains any settings that the engine requires to complete the task. For example:
[LibAvIngest] Type=libav
|