Browse Source

[spankbang] Extend format id regex (Closes #8398)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
58ae24336a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/spankbang.py

+ 1
- 1
youtube_dl/extractor/spankbang.py View File

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


Loading…
Cancel
Save