Browse Source
[downloader/ism] Honor HTTP headers when downloading fragments
master
Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
4 additions and
1 deletions
-
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') |
|
|
|