浏览代码

[spankbang] Fix formats extraction

Sergey M․ 9 年之前
父节点
当前提交
9339774af2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/spankbang.py

+ 1 - 1
youtube_dl/extractor/spankbang.py

@@ -34,7 +34,7 @@ class SpankBangIE(InfoExtractor):
             'ext': 'mp4',
             'format_id': '%sp' % height,
             'height': int(height),
-        } for height in re.findall(r'<span[^>]+q_(\d+)p', webpage)]
+        } for height in re.findall(r'<(?:span|li)[^>]+q_(\d+)p', webpage)]
         self._sort_formats(formats)
 
         title = self._html_search_regex(