Dynamic_range_control
Name | Type | Description |
---|---|---|
line_mode_profile | enum none film_std film_light music_std music_light speech | Settings for line compression mode. |
rf_mode_profile | enum none film_std film_light music_std music_light speech | Settings for RF compression mode. |
Example dynamic_range_control
{
"uid": "transcode_task",
"kind": "transcode",
"payload": {
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder"
},
"targets": [
{
"file_pattern": "{source_basename}_output{default_extension}",
"existing_files": "replace",
"container": {
"kind": "mp4"
},
"video": {
"width": 1280,
"height": 720,
"codec": "h264"
},
"audio": [
{
"codec": "dolby_digital_plus",
"channels": 2,
"sample_rate": 48000,
"dolby_digital": {
"bitstream_mode": "complete_main",
"surround_attenuation_3_db": true,
"dynamic_range_control": {
"line_mode_profile": "speech"
}
}
}
]
}
]
}
}