]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/spankbang.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / spankbang.py
CommitLineData
64102296 1from __future__ import unicode_literals
2
64102296 3import re
4
d97aae75
S
5from .common import InfoExtractor
6
7
64102296 8class SpankBangIE(InfoExtractor):
d97aae75 9 _VALID_URL = r'https?://(?:(?:www|[a-z]{2})\.)?spankbang\.com/(?P<id>[\da-z]+)/video'
d9e543b6 10 _TESTS = [{
d97aae75
S
11 'url': 'http://spankbang.com/3vvn/video/fantasy+solo',
12 'md5': '1cc433e1d6aa14bc376535b8679302f7',
13 'info_dict': {
14 'id': '3vvn',
15 'ext': 'mp4',
16 'title': 'fantasy solo',
dc2c37f3 17 'description': 'Watch fantasy solo free HD porn video - 05 minutes - dillion harper masturbates on a bed free adult movies.',
ec85ded8 18 'thumbnail': r're:^https?://.*\.jpg$',
d97aae75
S
19 'uploader': 'silly2587',
20 'age_limit': 18,
5c1d459a 21 }
d9e543b6
S
22 }, {
23 # 480p only
24 'url': 'http://spankbang.com/1vt0/video/solvane+gangbang',
25 'only_matching': True,
26 }]
64102296 27
28 def _real_extract(self, url):
29 video_id = self._match_id(url)
30 webpage = self._download_webpage(url, video_id)
31
d97aae75
S
32 stream_key = self._html_search_regex(
33 r'''var\s+stream_key\s*=\s*['"](.+?)['"]''',
34 webpage, 'stream key')
35
36 formats = [{
37 'url': 'http://spankbang.com/_%s/%s/title/%sp__mp4' % (video_id, stream_key, height),
38 'ext': 'mp4',
39 'format_id': '%sp' % height,
40 'height': int(height),
58ae2433 41 } for height in re.findall(r'<(?:span|li|p)[^>]+[qb]_(\d+)p', webpage)]
c773c232 42 self._check_formats(formats, video_id)
d97aae75
S
43 self._sort_formats(formats)
44
45 title = self._html_search_regex(
c3111ab3 46 r'(?s)<h1[^>]*>(.+?)</h1>', webpage, 'title')
dc2c37f3 47 description = self._og_search_description(webpage)
d97aae75
S
48 thumbnail = self._og_search_thumbnail(webpage)
49 uploader = self._search_regex(
dc2c37f3 50 r'class="user"[^>]*><img[^>]+>([^<]+)',
d97aae75
S
51 webpage, 'uploader', fatal=False)
52
53 age_limit = self._rta_search(webpage)
64102296 54
55 return {
d97aae75
S
56 'id': video_id,
57 'title': title,
58 'description': description,
59 'thumbnail': thumbnail,
60 'uploader': uploader,
61 'formats': formats,
62 'age_limit': age_limit,
64102296 63 }