[downloader/dash] Rename the protocol
'http_dash_segments' looks more like a protocol name than 'dash_segments'
This commit is contained in:
parent
453a1617aa
commit
423d2be5f8
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ PROTOCOL_MAP = {
|
|||
'mms': RtspFD,
|
||||
'rtsp': RtspFD,
|
||||
'f4m': F4mFD,
|
||||
'dash_segments': DashSegmentsFD,
|
||||
'http_dash_segments': DashSegmentsFD,
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -820,7 +820,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||
f.update({
|
||||
'initialization_url': segment_list.find('{urn:mpeg:DASH:schema:MPD:2011}Initialization').attrib['sourceURL'],
|
||||
'segment_urls': [segment.attrib.get('media') for segment in segment_list.findall('{urn:mpeg:DASH:schema:MPD:2011}SegmentURL')],
|
||||
'protocol': 'dash_segments',
|
||||
'protocol': 'http_dash_segments',
|
||||
})
|
||||
try:
|
||||
existing_format = next(
|
||||
|
|
Loading…
Reference in a new issue