[downloader/dash] Honor HTTP headers when downloading fragments

For example, https://www.oppetarkiv.se/video/1196142/natten-ar-dagens-mor
pull/8/head
Sergey M․ 2017-02-19 04:18:22 +07:00
rodzic 0aa10994f4
commit 553f6dbac7
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2C393E0F18A9236D
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -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')