]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/youporn.py
[cleanup] Misc
[yt-dlp.git] / yt_dlp / extractor / youporn.py
CommitLineData
0143dc02 1import re
0143dc02
PH
2
3from .common import InfoExtractor
1cc79574 4from ..utils import (
46358f64 5 extract_attributes,
589c33da
S
6 int_or_none,
7 str_to_int,
0143dc02 8 unified_strdate,
3052a30d 9 url_or_none,
0143dc02 10)
0143dc02 11
bfe9de85 12
0143dc02 13class YouPornIE(InfoExtractor):
52c4c515 14 _VALID_URL = r'https?://(?:www\.)?youporn\.com/(?:watch|embed)/(?P<id>\d+)(?:/(?P<display_id>[^/?#&]+))?'
4f13f8f7 15 _TESTS = [{
f24e9833 16 'url': 'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
2c3322e3 17 'md5': '3744d24c50438cf5b6f6d59feb5055c2',
f24e9833
PH
18 'info_dict': {
19 'id': '505835',
589c33da 20 'display_id': 'sex-ed-is-it-safe-to-masturbate-daily',
f24e9833 21 'ext': 'mp4',
f24e9833 22 'title': 'Sex Ed: Is It Safe To Masturbate Daily?',
589c33da 23 'description': 'Love & Sex Answers: http://bit.ly/DanAndJenn -- Is It Unhealthy To Masturbate Daily?',
ec85ded8 24 'thumbnail': r're:^https?://.*\.jpg$',
7c60c33e 25 'duration': 210,
e572a101 26 'uploader': 'Ask Dan And Jennifer',
18166bb8 27 'upload_date': '20101217',
589c33da
S
28 'average_rating': int,
29 'view_count': int,
30 'categories': list,
31 'tags': list,
f24e9833 32 'age_limit': 18,
4f13f8f7 33 },
46358f64 34 'skip': 'This video has been disabled',
4f13f8f7 35 }, {
f6af0f88 36 # Unknown uploader
4f13f8f7
S
37 'url': 'http://www.youporn.com/watch/561726/big-tits-awesome-brunette-on-amazing-webcam-show/?from=related3&al=2&from_id=561726&pos=4',
38 'info_dict': {
39 'id': '561726',
40 'display_id': 'big-tits-awesome-brunette-on-amazing-webcam-show',
41 'ext': 'mp4',
42 'title': 'Big Tits Awesome Brunette On amazing webcam show',
43 'description': 'http://sweetlivegirls.com Big Tits Awesome Brunette On amazing webcam show.mp4',
ec85ded8 44 'thumbnail': r're:^https?://.*\.jpg$',
f6af0f88 45 'uploader': 'Unknown',
18166bb8 46 'upload_date': '20110418',
4f13f8f7
S
47 'average_rating': int,
48 'view_count': int,
49 'categories': list,
50 'tags': list,
51 'age_limit': 18,
52 },
53 'params': {
54 'skip_download': True,
55 },
7c60c33e 56 'skip': '404',
52c4c515
S
57 }, {
58 'url': 'https://www.youporn.com/embed/505835/sex-ed-is-it-safe-to-masturbate-daily/',
59 'only_matching': True,
60 }, {
61 'url': 'http://www.youporn.com/watch/505835',
62 'only_matching': True,
30a074c2 63 }, {
64 'url': 'https://www.youporn.com/watch/13922959/femdom-principal/',
65 'only_matching': True,
4f13f8f7 66 }]
0143dc02 67
52c4c515
S
68 @staticmethod
69 def _extract_urls(webpage):
70 return re.findall(
71 r'<iframe[^>]+\bsrc=["\']((?:https?:)?//(?:www\.)?youporn\.com/embed/\d+)',
72 webpage)
73
0143dc02 74 def _real_extract(self, url):
5ad28e7f 75 mobj = self._match_valid_url(url)
589c33da 76 video_id = mobj.group('id')
52c4c515 77 display_id = mobj.group('display_id') or video_id
0143dc02 78
46358f64 79 definitions = self._download_json(
80 'https://www.youporn.com/api/video/media_definitions/%s/' % video_id,
81 display_id)
589c33da 82
0143dc02 83 formats = []
46358f64 84 for definition in definitions:
85 if not isinstance(definition, dict):
86 continue
87 video_url = url_or_none(definition.get('videoUrl'))
88 if not video_url:
89 continue
589c33da 90 f = {
0143dc02 91 'url': video_url,
46358f64 92 'filesize': int_or_none(definition.get('videoSize')),
589c33da 93 }
46358f64 94 height = int_or_none(definition.get('quality'))
589c33da
S
95 # Video URL's path looks like this:
96 # /201012/17/505835/720p_1500k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4
d627cec6 97 # /201012/17/505835/vl_240p_240k_505835/YouPorn%20-%20Sex%20Ed%20Is%20It%20Safe%20To%20Masturbate%20Daily.mp4
30a074c2 98 # /videos/201703/11/109285532/1080P_4000K_109285532.mp4
589c33da 99 # We will benefit from it by extracting some metadata
30a074c2 100 mobj = re.search(r'(?P<height>\d{3,4})[pP]_(?P<bitrate>\d+)[kK]_\d+', video_url)
589c33da 101 if mobj:
46358f64 102 if not height:
103 height = int(mobj.group('height'))
589c33da
S
104 bitrate = int(mobj.group('bitrate'))
105 f.update({
106 'format_id': '%dp-%dk' % (height, bitrate),
589c33da
S
107 'tbr': bitrate,
108 })
46358f64 109 f['height'] = height
589c33da 110 formats.append(f)
bfe9de85
PH
111 self._sort_formats(formats)
112
46358f64 113 webpage = self._download_webpage(
114 'http://www.youporn.com/watch/%s' % video_id, display_id,
115 headers={'Cookie': 'age_verified=1'})
116
117 title = self._html_search_regex(
118 r'(?s)<div[^>]+class=["\']watchVideoTitle[^>]+>(.+?)</div>',
119 webpage, 'title', default=None) or self._og_search_title(
120 webpage, default=None) or self._html_search_meta(
121 'title', webpage, fatal=True)
122
6089ff40
S
123 description = self._html_search_regex(
124 r'(?s)<div[^>]+\bid=["\']description["\'][^>]*>(.+?)</div>',
125 webpage, 'description',
126 default=None) or self._og_search_description(
127 webpage, default=None)
589c33da
S
128 thumbnail = self._search_regex(
129 r'(?:imageurl\s*=|poster\s*:)\s*(["\'])(?P<thumbnail>.+?)\1',
130 webpage, 'thumbnail', fatal=False, group='thumbnail')
7c60c33e 131 duration = int_or_none(self._html_search_meta(
132 'video:duration', webpage, 'duration', fatal=False))
589c33da 133
4f13f8f7 134 uploader = self._html_search_regex(
2c3322e3 135 r'(?s)<div[^>]+class=["\']submitByLink["\'][^>]*>(.+?)</div>',
589c33da
S
136 webpage, 'uploader', fatal=False)
137 upload_date = unified_strdate(self._html_search_regex(
8bdd16b4 138 [r'UPLOADED:\s*<span>([^<]+)',
139 r'Date\s+[Aa]dded:\s*<span>([^<]+)',
18166bb8 140 r'(?s)<div[^>]+class=["\']videoInfo(?:Date|Time)["\'][^>]*>(.+?)</div>'],
589c33da
S
141 webpage, 'upload date', fatal=False))
142
143 age_limit = self._rta_search(webpage)
144
46358f64 145 view_count = None
146 views = self._search_regex(
147 r'(<div[^>]+\bclass=["\']js_videoInfoViews["\']>)', webpage,
148 'views', default=None)
149 if views:
150 view_count = str_to_int(extract_attributes(views).get('data-value'))
755ff8d2
S
151 comment_count = str_to_int(self._search_regex(
152 r'>All [Cc]omments? \(([\d,.]+)\)',
8bdd16b4 153 webpage, 'comment count', default=None))
589c33da 154
f6af0f88
S
155 def extract_tag_box(regex, title):
156 tag_box = self._search_regex(regex, webpage, title, default=None)
589c33da
S
157 if not tag_box:
158 return []
159 return re.findall(r'<a[^>]+href=[^>]+>([^<]+)', tag_box)
160
f6af0f88
S
161 categories = extract_tag_box(
162 r'(?s)Categories:.*?</[^>]+>(.+?)</div>', 'categories')
163 tags = extract_tag_box(
164 r'(?s)Tags:.*?</div>\s*<div[^>]+class=["\']tagBoxContent["\'][^>]*>(.+?)</div>',
165 'tags')
5f6a1245 166
7df28654 167 return {
168 'id': video_id,
589c33da
S
169 'display_id': display_id,
170 'title': title,
171 'description': description,
172 'thumbnail': thumbnail,
7c60c33e 173 'duration': duration,
589c33da
S
174 'uploader': uploader,
175 'upload_date': upload_date,
589c33da 176 'view_count': view_count,
755ff8d2 177 'comment_count': comment_count,
589c33da
S
178 'categories': categories,
179 'tags': tags,
7df28654 180 'age_limit': age_limit,
181 'formats': formats,
182 }