Skip to main content

Options

NameTypeDescription
positionenum                          
pre_analyze
pre_normalize
post_normalize
pre_convert
post_convert
default
Specifies where in the transcode process source pipeline filters will be applied.
default: default

Example options

{
"uid": "transcode_task",
"kind": "transcode",
"payload": {
"location": {
},
"targets": [
{
"file_pattern": "{source_basename}_converted.mp4",
"container": {
"kind": "mp4"
},
"video": {
"codec": "h264"
},
"audio": [
{
"codec": "heaac_v2",
"channels": 4,
"sample_rate": 48000,
"bitrate_kb": 256,
"filters": [
{
"kind": "level",
"options": {
"position": "pre_normalize"
},
"payload": {
"kind": "ebur128",
"payload": {
"factor": 1.5
}
}
}
]
}
]
}
]
}
}