2 from __future__
import unicode_literals
9 from .common
import InfoExtractor
10 from ..compat
import (
25 class PornHubIE(InfoExtractor
):
26 IE_DESC
= 'PornHub and Thumbzilla'
30 (?:[^/]+\.)?pornhub\.com/(?:(?:view_video\.php|video/show)\?viewkey=|embed/)|
31 (?:www\.)?thumbzilla\.com/video/
36 'url': 'http://www.pornhub.com/view_video.php?viewkey=648719015',
37 'md5': '1e19b41231a02eba417839222ac9d58e',
41 'title': 'Seductive Indian beauty strips down and fingers her pink pussy',
43 'upload_date': '20130628',
55 'url': 'http://www.pornhub.com/view_video.php?viewkey=1331683002',
60 'uploader': 'Unknown',
61 'upload_date': '20150213',
72 'skip_download': True,
76 'url': 'https://www.pornhub.com/view_video.php?viewkey=ph5af5fef7c2aa7',
78 'id': 'ph5af5fef7c2aa7',
80 'title': 'BFFS - Cute Teen Girls Share Cock On the Floor',
97 'skip_download': True,
100 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph557bbb6676d2d',
101 'only_matching': True,
103 # removed at the request of cam4.com
104 'url': 'http://fr.pornhub.com/view_video.php?viewkey=ph55ca2f9760862',
105 'only_matching': True,
107 # removed at the request of the copyright owner
108 'url': 'http://www.pornhub.com/view_video.php?viewkey=788152859',
109 'only_matching': True,
111 # removed by uploader
112 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph572716d15a111',
113 'only_matching': True,
116 'url': 'http://www.pornhub.com/view_video.php?viewkey=ph56fd731fce6b7',
117 'only_matching': True,
119 'url': 'https://www.thumbzilla.com/video/ph56c6114abd99a/horny-girlfriend-sex',
120 'only_matching': True,
122 'url': 'http://www.pornhub.com/video/show?viewkey=648719015',
123 'only_matching': True,
127 def _extract_urls(webpage
):
129 r
'<iframe[^>]+?src=["\'](?P
<url
>(?
:https?
:)?
//(?
:www\
.)?pornhub\
.com
/embed
/[\da
-z
]+)',
132 def _extract_count(self, pattern, webpage, name):
133 return str_to_int(self._search_regex(
134 pattern, webpage, '%s count
' % name, fatal=False))
136 def _real_extract(self, url):
137 video_id = self._match_id(url)
139 self._set_cookie('pornhub
.com
', 'age_verified
', '1')
141 def dl_webpage(platform):
142 self._set_cookie('pornhub
.com
', 'platform
', platform)
143 return self._download_webpage(
144 'http
://www
.pornhub
.com
/view_video
.php?viewkey
=%s' % video_id,
145 video_id, 'Downloading
%s webpage
' % platform)
147 webpage = dl_webpage('pc
')
149 error_msg = self._html_search_regex(
150 r'(?s
)<div
[^
>]+class=(["\'])(?:(?!\1).)*\b(?:removed|userMessageSection)\b(?:(?!\1).)*\1[^>]*>(?P<error>.+?)</div>',
151 webpage, 'error message', default=None, group='error')
153 error_msg = re.sub(r'\s+', ' ', error_msg)
154 raise ExtractorError(
155 'PornHub said: %s' % error_msg,
156 expected=True, video_id=video_id)
158 # video_title from flashvars contains whitespace instead of non-ASCII (see
159 # http://www.pornhub.com/view_video.php?viewkey=1331683002), not relying
161 title = self._html_search_meta(
162 'twitter:title', webpage, default=None) or self._search_regex(
163 (r'<h1[^>]+class=["\']title
["\'][^>]*>(?P<title>[^<]+)',
164 r'<div[^>]+data-video-title=(["\'])(?P
<title
>.+?
)\
1',
165 r'shareTitle\s
*=\s
*(["\'])(?P<title>.+?)\1'),
166 webpage, 'title', group='title')
169 video_urls_set = set()
172 flashvars = self._parse_json(
174 r'var\s+flashvars_\d+\s*=\s*({.+?});', webpage, 'flashvars', default='{}'),
177 subtitle_url = url_or_none(flashvars.get('closedCaptionsFile'))
179 subtitles.setdefault('en', []).append({
183 thumbnail = flashvars.get('image_url')
184 duration = int_or_none(flashvars.get('video_duration'))
185 media_definitions = flashvars.get('mediaDefinitions')
186 if isinstance(media_definitions, list):
187 for definition in media_definitions:
188 if not isinstance(definition, dict):
190 video_url = definition.get('videoUrl')
191 if not video_url or not isinstance(video_url, compat_str):
193 if video_url in video_urls_set:
195 video_urls_set.add(video_url)
197 (video_url, int_or_none(definition.get('quality'))))
199 thumbnail, duration = [None] * 2
202 tv_webpage = dl_webpage('tv')
204 assignments = self._search_regex(
205 r'(var.+?mediastring.+?)</script>', tv_webpage,
206 'encoded url').split(';')
210 def parse_js_value(inp):
211 inp = re.sub(r'/\*(?:(?!\*/).)*?\*/', '', inp)
213 inps = inp.split('+')
214 return functools.reduce(
215 operator.concat, map(parse_js_value, inps))
219 return remove_quotes(inp)
221 for assn in assignments:
225 assn = re.sub(r'var\s+', '', assn)
226 vname, value = assn.split('=', 1)
227 js_vars[vname] = parse_js_value(value)
229 video_url = js_vars['mediastring']
230 if video_url not in video_urls_set:
231 video_urls.append((video_url, None))
232 video_urls_set.add(video_url)
234 for mobj in re.finditer(
235 r'<a[^>]+\bclass=["\']downloadBtn
\b[^
>]+\bhref
=(["\'])(?P<url>(?:(?!\1).)+)\1',
237 video_url = mobj.group('url')
238 if video_url not in video_urls_set:
239 video_urls.append((video_url, None))
240 video_urls_set.add(video_url)
244 for video_url, height in video_urls:
246 upload_date = self._search_regex(
247 r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
249 upload_date = upload_date.replace('/', '')
251 mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', video_url)
254 height = int(mobj.group('height'))
255 tbr = int(mobj.group('tbr'))
258 'format_id': '%dp' % height if height else None,
262 self._sort_formats(formats)
264 video_uploader = self._html_search_regex(
265 r'(?s)From: .+?<(?:a\b[^>]+\bhref=["\']/(?
:(?
:user|channel
)s|model|pornstar
)/|span
\b[^
>]+\bclass
=["\']username)[^>]+>(.+?)<',
266 webpage, 'uploader', fatal=False)
268 view_count = self._extract_count(
269 r'<span class="count
">([\d,\.]+)</span> views', webpage, 'view')
270 like_count = self._extract_count(
271 r'<span class="votesUp
">([\d,\.]+)</span>', webpage, 'like')
272 dislike_count = self._extract_count(
273 r'<span class="votesDown
">([\d,\.]+)</span>', webpage, 'dislike')
274 comment_count = self._extract_count(
275 r'All Comments\s*<span>\(([\d,.]+)\)', webpage, 'comment')
277 page_params = self._parse_json(self._search_regex(
278 r'page_params\.zoneDetails\[([\'"])[^
\'"]+\1\]\s*=\s*(?P<data>{[^}]+})',
279 webpage, 'page parameters', group='data', default='{}'),
280 video_id, transform_source=js_to_json, fatal=False)
281 tags = categories = None
283 tags = page_params.get('tags', '').split(',')
284 categories = page_params.get('categories', '').split(',')
288 'uploader': video_uploader,
289 'upload_date': upload_date,
291 'thumbnail': thumbnail,
292 'duration': duration,
293 'view_count': view_count,
294 'like_count': like_count,
295 'dislike_count': dislike_count,
296 'comment_count': comment_count,
300 'categories': categories,
301 'subtitles': subtitles,
305 class PornHubPlaylistBaseIE(InfoExtractor):
306 def _extract_entries(self, webpage):
307 # Only process container div with main playlist content skipping
308 # drop-down menu that uses similar pattern for videos (see
309 # https://github.com/rg3/youtube-dl/issues/11594).
310 container = self._search_regex(
311 r'(?s)(<div[^>]+class=["\']container
.+)', webpage,
312 'container
', default=webpage)
316 'http
://www
.pornhub
.com
/%s' % video_url,
317 PornHubIE.ie_key(), video_title=title)
318 for video_url, title in orderedSet(re.findall(
319 r'href
="/?(view_video\.php\?.*\bviewkey=[\da-z]+[^"]*)"[^>]*\s+title="([^
"]+)"',
323 def _real_extract(self, url):
324 playlist_id = self._match_id(url)
326 webpage = self._download_webpage(url, playlist_id)
328 entries = self._extract_entries(webpage)
330 playlist = self._parse_json(
332 r'(?
:playlistObject|PLAYLIST_VIEW
)\s
*=\s
*({.+?
});', webpage,
333 'playlist
', default='{}'),
334 playlist_id, fatal=False)
335 title = playlist.get('title
') or self._search_regex(
336 r'>Videos\s
+in\s
+(.+?
)\s
+[Pp
]laylist
<', webpage, 'title
', fatal=False)
338 return self.playlist_result(
339 entries, playlist_id, title, playlist.get('description
'))
342 class PornHubPlaylistIE(PornHubPlaylistBaseIE):
343 _VALID_URL = r'https?
://(?
:[^
/]+\
.)?pornhub\
.com
/playlist
/(?P
<id>\d
+)'
345 'url
': 'http
://www
.pornhub
.com
/playlist
/4667351',
348 'title
': 'Nataly Hot
',
350 'playlist_mincount
': 2,
352 'url
': 'https
://de
.pornhub
.com
/playlist
/4667351',
353 'only_matching
': True,
357 class PornHubUserVideosIE(PornHubPlaylistBaseIE):
358 _VALID_URL = r'https?
://(?
:[^
/]+\
.)?pornhub\
.com
/(?
:(?
:user|channel
)s|model|pornstar
)/(?P
<id>[^
/]+)/videos
'
360 'url
': 'http
://www
.pornhub
.com
/users
/zoe_ph
/videos
/public
',
364 'playlist_mincount
': 171,
366 'url
': 'http
://www
.pornhub
.com
/users
/rushandlia
/videos
',
367 'only_matching
': True,
369 # default sorting as Top Rated Videos
370 'url
': 'https
://www
.pornhub
.com
/channels
/povd
/videos
',
374 'playlist_mincount
': 293,
377 'url
': 'https
://www
.pornhub
.com
/channels
/povd
/videos?o
=ra
',
378 'only_matching
': True,
381 'url
': 'https
://www
.pornhub
.com
/channels
/povd
/videos?o
=da
',
382 'only_matching
': True,
385 'url
': 'https
://www
.pornhub
.com
/channels
/povd
/videos?o
=vi
',
386 'only_matching
': True,
388 'url
': 'http
://www
.pornhub
.com
/users
/zoe_ph
/videos
/public
',
389 'only_matching
': True,
391 'url
': 'https
://www
.pornhub
.com
/model
/jayndrea
/videos
/upload
',
392 'only_matching
': True,
394 'url
': 'https
://www
.pornhub
.com
/pornstar
/jenny
-blighe
/videos
/upload
',
395 'only_matching
': True,
398 def _real_extract(self, url):
399 user_id = self._match_id(url)
402 for page_num in itertools.count(1):
404 webpage = self._download_webpage(
405 url, user_id, 'Downloading page
%d' % page_num,
406 query={'page
': page_num})
407 except ExtractorError as e:
408 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
411 page_entries = self._extract_entries(webpage)
414 entries.extend(page_entries)
416 return self.playlist_result(entries, user_id)