diff options
Diffstat (limited to 'youtube_dl/downloader/dash.py')
| -rw-r--r-- | youtube_dl/downloader/dash.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/downloader/dash.py b/youtube_dl/downloader/dash.py index 8437dde30..e2ddc369e 100644 --- a/youtube_dl/downloader/dash.py +++ b/youtube_dl/downloader/dash.py @@ -43,7 +43,10 @@ class DashSegmentsFD(FragmentFD):              count = 0              while count <= fragment_retries:                  try: -                    success = ctx['dl'].download(target_filename, {'url': segment_url}) +                    success = ctx['dl'].download(target_filename, { +                        'url': segment_url, +                        'http_headers': info_dict.get('http_headers'), +                    })                      if not success:                          return False                      down, target_sanitized = sanitize_open(target_filename, 'rb') | 
