[downloader/hls] Respect Youtubedl-* headers
authorYen Chi Hsuan <yan12125@gmail.com>
Sun, 29 Nov 2015 04:43:59 +0000 (12:43 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Sun, 29 Nov 2015 04:43:59 +0000 (12:43 +0800)
youtube_dl/downloader/hls.py

index 92765a3f9c6acdbc91136fbe00d24197af71fa29..b5a3e11676e72d070ec1a48c6483d0cc630c70a7 100644 (file)
@@ -13,6 +13,7 @@ from ..utils import (
     encodeArgument,
     encodeFilename,
     sanitize_open,
+    handle_youtubedl_headers,
 )
 
 
@@ -33,9 +34,10 @@ class HlsFD(FileDownloader):
         if info_dict['http_headers'] and re.match(r'^https?://', url):
             # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
             # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
+            headers = handle_youtubedl_headers(info_dict['http_headers'])
             args += [
                 '-headers',
-                ''.join('%s: %s\r\n' % (key, val) for key, val in info_dict['http_headers'].items() if key.lower() != 'accept-encoding')]
+                ''.join('%s: %s\r\n' % (key, val) for key, val in headers.items())]
 
         args += ['-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc']