Rms
Name | Type | Description |
---|---|---|
source | object | Normalization analysis results for cases where the analysis was run separately. |
rms_level_db | number | The RMS level in dB. |
analyzer_track_index | integer | This specifies which audio track to analyze. |
is_optional | boolean | If set to true, the transcode will not fail if this media type did not exist in the source. |
Example rms
{
"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": "rms",
"payload": {
"rms_level_db": -3
}
}
}
]
}
]
}
]
}
}