Skip to main content

Filters

NameTypeDescription
kindenum                          
speed_change
Specifies the type of container filter to be applied.
default: speed_change
include_conditionsarray                          Specifies conditions under which this filter will be applied. Can use Javascript math.js nomenclature.
payloadanyOf         
speed_change
The payload for the container filter.

Example filters

{
"uid": "transcode_task",
"kind": "transcode",
"payload": {
"location": {
},
"targets": [
{
"file_pattern": "{source_basename}.mp4",
"container": {
"kind": "mp4",
"filters": [
{
"speed_change": {
"factor": 1.1,
"pitch_correction": true
}
}
]
},
"video": {
"codec": "h264",
"bitrate_mode": "vbr",
"bitrate_kb": 1000,
"max_bitrate_kb": 1200,
"frame_rate": 25,
"profile": "main",
"level": "4.0",
"height": 720
},
"audio": [
]
}
]
}
}