浏览代码

[downloader/hls] Add headers only for http(s) URLs

ffmpeg 2.8.1 raises an error with -headers and non-http input files.
Yen Chi Hsuan 10 年之前
父节点
当前提交
985e4fdc07
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/downloader/hls.py

+ 1 - 1
youtube_dl/downloader/hls.py

@@ -30,7 +30,7 @@ class HlsFD(FileDownloader):
 
 
         args = [ffpp.executable, '-y']
         args = [ffpp.executable, '-y']
 
 
-        if info_dict['http_headers']:
+        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:
             # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
             # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
             # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
             args += [
             args += [