projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
553f6db
)
[downloader/ism] Honor HTTP headers when downloading fragments
author
Sergey M․
<dstftw@gmail.com>
Sat, 18 Feb 2017 21:18:36 +0000
(
04:18
+0700)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 18 Feb 2017 21:18:36 +0000
(
04:18
+0700)
youtube_dl/downloader/ism.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/ism.py
b/youtube_dl/downloader/ism.py
index 93cac5e9845db6f00efdd2053fb63b3f3c35e52b..63a636cb70079f81516da8b9e37c8e21cb9f54a2 100644
(file)
--- 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')