Skip to main content

Normalize

NameTypeDescription
kindenum                          
ebur128
peak
rms
dynamic
dolby_professional_loudness
All methods except dynamic will either use analyze values supplied here, or force 2-pass encoding to determine accurate levels for adjusting them in a later pass.
default: ebur128
payloadanyOf         
ebur128
peak
rms
dynamic
dolby_professional_loudness
The payload for the audio normalize filter.

Example normalize

{
"uid": "transcode_media",
"kind": "transcode",
"payload": {
"location": {
},
"targets": [
{
"file_pattern": "{source_basename}_converted.mp4",
"container": {
"kind": "mp4"
},
"video": {
},
"audio": [
{
"codec": "heaac_v2",
"channels": 4,
"sample_rate": 48000,
"filters": [
{
"kind": "normalize",
"payload": {
"kind": "peak",
"payload": {
"peak_level_db": -3
}
}
}
]
}
]
}
]
}
}