瀏覽代碼

[tvigle] Skip hls completely (#9259)

Sergey M․ 9 年之前
父節點
當前提交
1988647dda
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      youtube_dl/extractor/tvigle.py

+ 2 - 2
youtube_dl/extractor/tvigle.py

@@ -83,10 +83,10 @@ class TvigleIE(InfoExtractor):
 
 
         formats = []
         formats = []
         for vcodec, fmts in item['videos'].items():
         for vcodec, fmts in item['videos'].items():
+            if vcodec == 'hls':
+                continue
             for format_id, video_url in fmts.items():
             for format_id, video_url in fmts.items():
                 if format_id == 'm3u8':
                 if format_id == 'm3u8':
-                    formats.extend(self._extract_m3u8_formats(
-                        video_url, video_id, 'mp4', m3u8_id=vcodec))
                     continue
                     continue
                 height = self._search_regex(
                 height = self._search_regex(
                     r'^(\d+)[pP]$', format_id, 'height', default=None)
                     r'^(\d+)[pP]$', format_id, 'height', default=None)