aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/fragment.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-19 20:41:24 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-19 20:41:24 +0600
commit721f26b8211a22648523f51c80f9b81d1eaa3b32 (patch)
tree35b29d6540620b5466d7f86c8b80d5aff9277394 /youtube_dl/downloader/fragment.py
parent52bb437e412726a37d585cf782c88bc8c8a042a4 (diff)
downloadyoutube-dl-721f26b8211a22648523f51c80f9b81d1eaa3b32.zip
youtube-dl-721f26b8211a22648523f51c80f9b81d1eaa3b32.tar.gz
youtube-dl-721f26b8211a22648523f51c80f9b81d1eaa3b32.tar.bz2
[downloader/fragment] Add report_retry_fragment
Diffstat (limited to 'youtube_dl/downloader/fragment.py')
-rw-r--r--youtube_dl/downloader/fragment.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py
index a5bae96..df66c35 100644
--- a/youtube_dl/downloader/fragment.py
+++ b/youtube_dl/downloader/fragment.py
@@ -21,6 +21,11 @@ class FragmentFD(FileDownloader):
A base file downloader class for fragmented media (e.g. f4m/m3u8 manifests).
"""
+ def report_retry_fragment(self, fragment_name, count, retries):
+ self.to_screen(
+ '[download] Got server HTTP error. Retrying fragment %s (attempt %d of %.0f)...'
+ % (fragment_name, count, retries))
+
def _prepare_and_start_frag_download(self, ctx):
self._prepare_frag_download(ctx)
self._start_frag_download(ctx)