diff options
Diffstat (limited to 'yt_dlp/downloader/dash.py')
-rw-r--r-- | yt_dlp/downloader/dash.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yt_dlp/downloader/dash.py b/yt_dlp/downloader/dash.py index 32e510d38..2f29ff8f2 100644 --- a/yt_dlp/downloader/dash.py +++ b/yt_dlp/downloader/dash.py @@ -63,6 +63,8 @@ class DashSegmentsFD(FragmentFD): }) if real_downloader: + self.to_screen( + '[%s] Fragment downloads will be delegated to %s' % (self.FD_NAME, real_downloader.get_basename())) info_copy = info_dict.copy() info_copy['fragments'] = fragments_to_download fd = real_downloader(self.ydl, self.params) @@ -110,7 +112,7 @@ class DashSegmentsFD(FragmentFD): if count > fragment_retries: if not fatal: return False, frag_index - self.report_error('giving up after %s fragment retries' % fragment_retries) + self.report_error('Giving up after %s fragment retries' % fragment_retries) return False, frag_index return frag_content, frag_index |