projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52bb437
)
[downloader/fragment] Add report_retry_fragment
author
Sergey M․
<dstftw@gmail.com>
Sat, 19 Mar 2016 14:41:24 +0000
(20:41 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 19 Mar 2016 14:41:24 +0000
(20:41 +0600)
youtube_dl/downloader/fragment.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/fragment.py
b/youtube_dl/downloader/fragment.py
index a5bae96699e0b0f81fd11deab4900fe5ed8b820d..df66c35f0bd36fba2ee39d395408dbe7519d0a5c 100644
(file)
--- 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)