Dynamic
Name | Type | Description |
---|---|---|
peak_level_db | number | The Peak Level in dB. |
rms_level_db | number | The RMS level in dB. |
window_size_samples | integer | The window size (in samples) to use for the RMS calculation. |
Example dynamic
{
"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": "dynamic",
"payload": {
"peak_level_db": -3,
"window_size_samples": 256
}
}
}
]
}
]
}
]
}
}