Browse Source

[downloader/dash] Honor HTTP headers when downloading fragments
For example, https://www.oppetarkiv.se/video/1196142/natten-ar-dagens-mor

Sergey M․ 8 years ago
parent
commit
553f6dbac7
1 changed files with 4 additions and 1 deletions
  1. 4 1
      youtube_dl/downloader/dash.py

+ 4 - 1
youtube_dl/downloader/dash.py

@@ -43,7 +43,10 @@ class DashSegmentsFD(FragmentFD):
             count = 0
             count = 0
             while count <= fragment_retries:
             while count <= fragment_retries:
                 try:
                 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:
                     if not success:
                         return False
                         return False
                     down, target_sanitized = sanitize_open(target_filename, 'rb')
                     down, target_sanitized = sanitize_open(target_filename, 'rb')