2015-06-03 15:10:18 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2021-07-31 10:51:01 +00:00
|
|
|
from ..downloader import get_suitable_downloader
|
2016-02-09 16:25:02 +00:00
|
|
|
from .fragment import FragmentFD
|
2021-02-08 16:46:01 +00:00
|
|
|
|
2021-06-21 18:59:50 +00:00
|
|
|
from ..utils import urljoin
|
2015-06-04 14:12:05 +00:00
|
|
|
|
2015-06-03 15:10:18 +00:00
|
|
|
|
2016-02-09 16:25:02 +00:00
|
|
|
class DashSegmentsFD(FragmentFD):
|
2015-06-03 15:10:18 +00:00
|
|
|
"""
|
2021-03-10 15:26:24 +00:00
|
|
|
Download segments in a DASH manifest. External downloaders can take over
|
2021-04-10 15:08:33 +00:00
|
|
|
the fragment downloads by supporting the 'dash_frag_urls' protocol
|
2015-06-03 15:10:18 +00:00
|
|
|
"""
|
|
|
|
|
2016-02-09 16:25:02 +00:00
|
|
|
FD_NAME = 'dashsegments'
|
2015-06-10 06:45:54 +00:00
|
|
|
|
2016-02-09 16:25:02 +00:00
|
|
|
def real_download(self, filename, info_dict):
|
2021-07-31 10:51:01 +00:00
|
|
|
if info_dict.get('is_live'):
|
|
|
|
self.report_error('Live DASH videos are not supported')
|
|
|
|
|
2017-08-04 23:57:19 +00:00
|
|
|
fragment_base_url = info_dict.get('fragment_base_url')
|
|
|
|
fragments = info_dict['fragments'][:1] if self.params.get(
|
2016-09-17 13:35:22 +00:00
|
|
|
'test', False) else info_dict['fragments']
|
2015-06-10 06:45:54 +00:00
|
|
|
|
2021-07-31 10:53:54 +00:00
|
|
|
real_downloader = get_suitable_downloader(
|
2021-08-01 07:22:09 +00:00
|
|
|
info_dict, self.params, None, protocol='dash_frag_urls', to_stdout=(filename == '-'))
|
2021-02-08 16:46:01 +00:00
|
|
|
|
2016-02-09 16:25:02 +00:00
|
|
|
ctx = {
|
|
|
|
'filename': filename,
|
2017-08-04 23:57:19 +00:00
|
|
|
'total_frags': len(fragments),
|
2016-02-09 16:25:02 +00:00
|
|
|
}
|
2015-06-10 06:45:54 +00:00
|
|
|
|
2021-02-08 16:46:01 +00:00
|
|
|
if real_downloader:
|
|
|
|
self._prepare_external_frag_download(ctx)
|
|
|
|
else:
|
2021-07-21 17:28:43 +00:00
|
|
|
self._prepare_and_start_frag_download(ctx, info_dict)
|
2015-06-03 15:10:18 +00:00
|
|
|
|
2021-03-10 15:26:24 +00:00
|
|
|
fragments_to_download = []
|
2016-06-28 17:07:50 +00:00
|
|
|
frag_index = 0
|
2017-08-04 23:57:19 +00:00
|
|
|
for i, fragment in enumerate(fragments):
|
2016-06-28 17:07:50 +00:00
|
|
|
frag_index += 1
|
2017-04-22 15:42:24 +00:00
|
|
|
if frag_index <= ctx['fragment_index']:
|
2016-06-28 17:07:50 +00:00
|
|
|
continue
|
2021-02-08 16:46:01 +00:00
|
|
|
fragment_url = fragment.get('url')
|
|
|
|
if not fragment_url:
|
|
|
|
assert fragment_base_url
|
|
|
|
fragment_url = urljoin(fragment_base_url, fragment['path'])
|
|
|
|
|
2021-03-13 04:46:58 +00:00
|
|
|
fragments_to_download.append({
|
|
|
|
'frag_index': frag_index,
|
|
|
|
'index': i,
|
|
|
|
'url': fragment_url,
|
|
|
|
})
|
2016-02-09 16:25:02 +00:00
|
|
|
|
2021-02-08 16:46:01 +00:00
|
|
|
if real_downloader:
|
2021-03-20 03:20:08 +00:00
|
|
|
self.to_screen(
|
|
|
|
'[%s] Fragment downloads will be delegated to %s' % (self.FD_NAME, real_downloader.get_basename()))
|
2021-10-16 13:01:00 +00:00
|
|
|
info_dict['fragments'] = fragments_to_download
|
2021-02-08 16:46:01 +00:00
|
|
|
fd = real_downloader(self.ydl, self.params)
|
2021-10-16 13:01:00 +00:00
|
|
|
return fd.real_download(filename, info_dict)
|
2021-06-24 16:53:33 +00:00
|
|
|
|
|
|
|
return self.download_and_append_fragments(ctx, fragments_to_download, info_dict)
|