diff options
author | Sergey M <dstftw@gmail.com> | 2016-03-23 20:12:32 +0500 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2016-03-23 20:12:32 +0500 |
commit | 4333d56494a48929303ce306330ee3cded989d48 (patch) | |
tree | abc49c455024ed34760f89d344cadc12cbedc73c /youtube_dl/downloader/fragment.py | |
parent | 882c6992967914c245e086ddaacde9d595cd6ed9 (diff) | |
parent | 16a8b7986b88572aea12c0f80c499e6e8085f1cc (diff) |
Merge pull request #8898 from dstftw/fragment-retries
Add --fragment-retries option (Fixes #8466)
Diffstat (limited to 'youtube_dl/downloader/fragment.py')
-rw-r--r-- | youtube_dl/downloader/fragment.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py index a5bae9669..ba903ae10 100644 --- a/youtube_dl/downloader/fragment.py +++ b/youtube_dl/downloader/fragment.py @@ -19,8 +19,17 @@ class HttpQuietDownloader(HttpFD): class FragmentFD(FileDownloader): """ A base file downloader class for fragmented media (e.g. f4m/m3u8 manifests). + + Available options: + + fragment_retries: Number of times to retry a fragment for HTTP error (DASH only) """ + def report_retry_fragment(self, fragment_name, count, retries): + self.to_screen( + '[download] Got server HTTP error. Retrying fragment %s (attempt %d of %s)...' + % (fragment_name, count, self.format_retries(retries))) + def _prepare_and_start_frag_download(self, ctx): self._prepare_frag_download(ctx) self._start_frag_download(ctx) |