about summary refs log tree commit diff
path: root/youtube_dl/downloader/hls.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-11-27 21:37:45 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-11-27 21:37:45 +0800
commit9d0e3668804fe91e77275e6bd859cbd0d784ab33 (patch)
tree6b535c51d69aa9636d096d4b19531a2f6fff9f11 /youtube_dl/downloader/hls.py
parent9bff48a0e7128b4d274a5dab4aaac8da0c900ede (diff)
downloadyoutube-dl-9d0e3668804fe91e77275e6bd859cbd0d784ab33.tar.gz
youtube-dl-9d0e3668804fe91e77275e6bd859cbd0d784ab33.tar.xz
youtube-dl-9d0e3668804fe91e77275e6bd859cbd0d784ab33.zip
[downloader/hls] Remove Accept-encoding from headers passed to ffmpeg
Fails for Youtube Gaming live streams (#7671)
Diffstat (limited to 'youtube_dl/downloader/hls.py')
-rw-r--r--youtube_dl/downloader/hls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 9a83a73dd..92765a3f9 100644
--- a/youtube_dl/downloader/hls.py
+++ b/youtube_dl/downloader/hls.py
@@ -35,7 +35,7 @@ class HlsFD(FileDownloader):
             # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
             args += [
                 '-headers',
-                ''.join('%s: %s\r\n' % (key, val) for key, val in info_dict['http_headers'].items())]
+                ''.join('%s: %s\r\n' % (key, val) for key, val in info_dict['http_headers'].items() if key.lower() != 'accept-encoding')]
 
         args += ['-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc']