Skip to main content

Dash

NameTypeDescription
locationobjectThis will override any location defined within the parent of this manifest.
file_patternstring
This describes the target file name. Placeholders such as {source_basename} for source file name are supported.
default: {source_basename}
complianceenum                          
generic
hmmp
senvu_2012
hmmpabs_2016
hmmpabs_2016_sdr
hmmpabs_2017
Specifies the MPEG-DASH compliance settings to use.
compliancesarray enum                          
generic
hmmp
senvu_2012
hmmpabs_2016
hmmpabs_2016_sdr
hmmpabs_2017
An array specifying the MPEG-DASH compliance settings to use.
base_urlstringMPEG-DASH MPD BaseURL.
titlestringMPEG-DASH MPD title.
copyrightstringMPEG-DASH MPD copyright.
info_urlstringMPEG-DASH MPD info URL.
remove_partial_mpdbooleanContrary to HLS, MPEG-DASH does not reference layer manifest files. Enable removing these potentially obsolete files.
profile_urnsarray                          MPEG-DASH profile URN's.
subtitle_containerenum                          
webvtt
fmp4
Specifies whether to use WebVTT or FMP4 as the container for subtitles.
manifest_locationobjectThe location of the mpd's.
manifest_file_patternstring
The file pattern of the mpd's.
default: {source_basename}
adaptation_setsarrayAn 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_listbooleanUses the segment list instead of segment templates.
use_segment_timelinebooleanUses 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"
}
}
}