aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/hls.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-09-23 02:46:24 +0600
committerSergey M․ <dstftw@gmail.com>2015-09-23 02:46:24 +0600
commitf1028194636e7acafb29fb38244cc7b1347d9313 (patch)
tree360bd4ffc8bc1aede7c80fca69163dec8b76fd7b /youtube_dl/downloader/hls.py
parentb942db3dc3d51db0f24ac98ada861d8e2b3451db (diff)
downloadyoutube-dl-f1028194636e7acafb29fb38244cc7b1347d9313.tar.xz
[downloader/hls] Pass http headers to downloader
Diffstat (limited to 'youtube_dl/downloader/hls.py')
-rw-r--r--youtube_dl/downloader/hls.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 7743e176a..a62d2047b 100644
--- a/youtube_dl/downloader/hls.py
+++ b/youtube_dl/downloader/hls.py
@@ -28,9 +28,18 @@ class HlsFD(FileDownloader):
return False
ffpp.check_version()
- args = [
- encodeArgument(opt)
- for opt in (ffpp.executable, '-y', '-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc')]
+ args = [ffpp.executable, '-y']
+
+ if info_dict['http_headers']:
+ # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
+ # [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())]
+
+ args += ['-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc']
+
+ args = [encodeArgument(opt) for opt in args]
args.append(encodeFilename(ffpp._ffmpeg_filename_argument(tmpfilename), True))
self._debug_cmd(args)