X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fdownloader%2Fhls.py;h=92765a3f9c6acdbc91136fbe00d24197af71fa29;hb=5faf9fed7e1c7922578467cfd48db5867ef9b91b;hp=9a83a73dd6b16db50cc4e72a343b1669c146a386;hpb=a2973eb59733c5f86a249c627d654b789020bc7d;p=youtube-dl.git 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']