Dash
Name | Type | Description |
---|---|---|
location | object | This will override any location defined within the parent of this manifest. |
file_pattern | string | This describes the target file name. Placeholders such as {source_basename} for source file name are supported.default: {source_basename} |
compliance | enum generic hmmp senvu_2012 hmmpabs_2016 hmmpabs_2016_sdr hmmpabs_2017 | Specifies the MPEG-DASH compliance settings to use. |
compliances | array enum generic hmmp senvu_2012 hmmpabs_2016 hmmpabs_2016_sdr hmmpabs_2017 | An array specifying the MPEG-DASH compliance settings to use. |
base_url | string | MPEG-DASH MPD BaseURL. |
title | string | MPEG-DASH MPD title. |
copyright | string | MPEG-DASH MPD copyright. |
info_url | string | MPEG-DASH MPD info URL. |
remove_partial_mpd | boolean | Contrary to HLS, MPEG-DASH does not reference layer manifest files. Enable removing these potentially obsolete files. |
profile_urns | array | MPEG-DASH profile URN's. |
subtitle_container | enum webvtt fmp4 | Specifies whether to use WebVTT or FMP4 as the container for subtitles. |
manifest_location | object | The location of the mpd's. |
manifest_file_pattern | string | The file pattern of the mpd's. default: {source_basename} |
adaptation_sets | array | An array defining the Adaptation Sets included in the DASH manifest. Commonly, you will have one video Adaptaion Set and multiple audio Adaptation Sets. |
use_segment_list | boolean | Uses the segment list instead of segment templates. |
use_segment_timeline | boolean | Uses the segment timelines in segment templates. |
Example dash
{
"uid": "dash_unencrypted_packaging",
"kind": "package",
"payload": {
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder",
"attributes": [
{
"name": "ContentType",
"value": "application/dash+xml"
}
]
},
"file_pattern": "manifest.mpd",
"kind": "dash",
"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"
}
}
}