mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[downloader/dash] Abort download immediately after giving up on some fragment
This commit is contained in:
parent
2e99cd30c3
commit
4a69fa04e0
1 changed files with 6 additions and 3 deletions
|
@ -66,14 +66,17 @@ class DashSegmentsFD(FragmentFD):
|
|||
if count > fragment_retries:
|
||||
if skip_unavailable_fragments:
|
||||
self.report_skip_fragment(segment_name)
|
||||
return
|
||||
return True
|
||||
self.report_error('giving up after %s fragment retries' % fragment_retries)
|
||||
return False
|
||||
return True
|
||||
|
||||
if initialization_url:
|
||||
append_url_to_file(initialization_url, ctx['tmpfilename'], 'Init')
|
||||
if not append_url_to_file(initialization_url, ctx['tmpfilename'], 'Init'):
|
||||
return False
|
||||
for i, segment_url in enumerate(segment_urls):
|
||||
append_url_to_file(segment_url, ctx['tmpfilename'], 'Seg%d' % i)
|
||||
if not append_url_to_file(segment_url, ctx['tmpfilename'], 'Seg%d' % i):
|
||||
return False
|
||||
|
||||
self._finish_frag_download(ctx)
|
||||
|
||||
|
|
Loading…
Reference in a new issue