[spiegeltv] Fix Accept-Encoding issue (server chokes on gzip)

pull/8/head
Christoph Döpmann 2015-10-24 11:35:41 +02:00 zatwierdzone przez Sergey M․
rodzic 6856139705
commit 0198807ef9
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -83,6 +83,10 @@ class SpiegeltvIE(InfoExtractor):
preference=1, # Prefer hls since it allows to workaround georestriction
m3u8_id='hls', fatal=False)
if m3u8_formats is not False:
for m3u8_format in m3u8_formats:
m3u8_format['http_headers'] = {
'Accept-Encoding': 'deflate', # gzip causes trouble on the server side
}
formats.extend(m3u8_formats)
else:
formats.append({