import time
from .common import FileDownloader
-from .dash import DashSegmentsFD
from ..compat import (
compat_urllib_request,
compat_urllib_error,
class HttpFD(FileDownloader):
def real_download(self, filename, info_dict):
- if info_dict.get('initialization_url') and list(filter(None, info_dict.get('segment_urls', []))):
- return DashSegmentsFD(self.ydl, self.params).real_download(filename, info_dict)
-
url = info_dict['url']
tmpfilename = self.temp_name(filename)
stream = None
if segment_list:
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')]
+ 'segment_urls': [segment.attrib.get('media') for segment in segment_list.findall('{urn:mpeg:DASH:schema:MPD:2011}SegmentURL')],
+ 'protocol': 'dash_segments',
})
try:
existing_format = next(