youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0198807ef95338bec69cfdcd67249c007e4d4141
parent 6856139705aea86ab1f950c08e605dd47f839be0
Author: Christoph Döpmann <cdoepmann@users.noreply.github.com>
Date:   Sat, 24 Oct 2015 11:35:41 +0200

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

Diffstat:
Myoutube_dl/extractor/spiegeltv.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/spiegeltv.py b/youtube_dl/extractor/spiegeltv.py @@ -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({