diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-04-21 22:15:20 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-04-21 22:15:20 +0600 |
commit | 1988647dda86546de87c3f146ba68a17a0a5e247 (patch) | |
tree | 183e16522b39114395a7b50d0b2e1dc23ddf2b72 /youtube_dl | |
parent | a292cba256c1adca354d4ed59ef30a62aeb8606e (diff) |
[tvigle] Skip hls completely (#9259)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/tvigle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tvigle.py b/youtube_dl/extractor/tvigle.py index f3aba3530..ead4c00c7 100644 --- a/youtube_dl/extractor/tvigle.py +++ b/youtube_dl/extractor/tvigle.py @@ -83,10 +83,10 @@ class TvigleIE(InfoExtractor): formats = [] for vcodec, fmts in item['videos'].items(): + if vcodec == 'hls': + continue for format_id, video_url in fmts.items(): if format_id == 'm3u8': - formats.extend(self._extract_m3u8_formats( - video_url, video_id, 'mp4', m3u8_id=vcodec)) continue height = self._search_regex( r'^(\d+)[pP]$', format_id, 'height', default=None) |