diff options
Diffstat (limited to 'youtube_dl/downloader/hls.py')
| -rw-r--r-- | youtube_dl/downloader/hls.py | 20 | 
1 files changed, 16 insertions, 4 deletions
| diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 71aafdc73..b5a3e1167 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -13,6 +13,7 @@ from ..utils import (      encodeArgument,      encodeFilename,      sanitize_open, +    handle_youtubedl_headers,  ) @@ -28,10 +29,20 @@ 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.append(encodeFilename(tmpfilename, True)) +        args = [ffpp.executable, '-y'] + +        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 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) @@ -92,6 +103,7 @@ class NativeHlsFD(FragmentFD):                  return False              down, frag_sanitized = sanitize_open(frag_filename, 'rb')              ctx['dest_stream'].write(down.read()) +            down.close()              frags_filenames.append(frag_sanitized)          self._finish_frag_download(ctx) | 
