Skip to main content

Adaptation_sets

NameTypeDescription
track_group_idstringThis indicates which Group this track belongs to. Multiple tracks with the same content but different bitrates would have the same track_group_id.
idintegerThe ID for the Adaptation Set.
rolestringThe Role for the Adaptation Set.

Example adaptation_sets

{
"uid": "dash_unencrypted_packaging",
"kind": "package",
"payload": {
"kind": "dash",
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder",
"attributes": [
{
"name": "ContentType",
"value": "application/dash+xml"
}
]
},
"file_pattern": "manifest.mpd",
"uid": "main_manifest",
"force_original_media": false,
"media_location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder",
"attributes": [
{
"name": "ContentType",
"value": "video/mp4"
}
]
},
"dash": {
"title": "some dash title",
"info_url": "www.dolby.com",
"adaptation_sets": [
{
"track_group_id": "1",
"id": 1,
"role": "main"
}
]
}
}
}