diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-02-19 04:18:36 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-19 04:18:36 +0700 |
commit | de64e23c5663ceb4f62264077a7993d13ace0d6c (patch) | |
tree | 5d863c573f2c9396a7edeea9f8bf1c7486ee14aa /youtube_dl/downloader/ism.py | |
parent | 553f6dbac7afac84994eae18f551799f807d1503 (diff) |
[downloader/ism] Honor HTTP headers when downloading fragments
Diffstat (limited to 'youtube_dl/downloader/ism.py')
-rw-r--r-- | youtube_dl/downloader/ism.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/downloader/ism.py b/youtube_dl/downloader/ism.py index 93cac5e98..63a636cb7 100644 --- a/youtube_dl/downloader/ism.py +++ b/youtube_dl/downloader/ism.py @@ -238,7 +238,10 @@ class IsmFD(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') |