diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 22:32:10 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 22:32:10 +0800 |
commit | 4285a47f4065037a00693838c0297bfee3fc22eb (patch) | |
tree | e6707ac5e3f99b60ccd531e2b883db67a293426b /youtube_dl/downloader/hls.py | |
parent | e36963e0eb57294f156a98c38df891dec41ebaa4 (diff) | |
parent | 05a3879f1c142cc2bf0287cde4690d8ccadcdc8f (diff) |
Merge pull request #7208 from yan12125/letv-fix
[Letv] Fix extraction
Diffstat (limited to 'youtube_dl/downloader/hls.py')
-rw-r--r-- | youtube_dl/downloader/hls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index a62d2047b..9a83a73dd 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -30,7 +30,7 @@ class HlsFD(FileDownloader): 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: # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header. args += [ |