An AndThenAny
ESP task compares a track (Input0
) with one or more other tracks (InputN
). The output contains every record from the Input0
track which is followed, within a specified time interval, by at least one event in any other track.
When you set the parameter LuaScript
, pairs of records (each consisting of a record in the Input0
track and a record in another track that was found within the time interval) are passed into the function. An Input0
record is included in the output only if your Lua function returns TRUE
for at least one pair in which it is included.
This engine is available only for processing video. It is not supported with images and documents.
Configuration Parameter | Description |
---|---|
Input0 | The first input track. Records from this track are added to the output if the relevant conditions are met. |
InputN | Additional input tracks. Records in these tracks are never added to the output. |
LuaScript | The path of a Lua script that contains a function to determine whether a record should be included in the output track. |
MaxTimeInterval | Specifies the end of the time interval, as a time duration relative to the start time of the Input0 record. |
MinTimeInterval | Specifies the beginning of the time interval, as a time duration relative to the start time of the Input0 record. |
Type | The type of ESP engine to use. Set this parameter to AndThenAny . |
This engine produces a single output track, named TaskName.Output
. The output track has the same format as the input track Input0
.
|