]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/xhamster.py
   1 from __future__ 
import unicode_literals
 
   5 from .common 
import InfoExtractor
 
   6 from ..compat 
import compat_str
 
  17 class XHamsterIE(InfoExtractor
): 
  20                         (?:.+?\.)?xhamster\.com/ 
  22                             movies/(?P<id>\d+)/(?P<display_id>[^/]*)\.html| 
  23                             videos/(?P<display_id_2>[^/]*)-(?P<id_2>\d+) 
  28         'url': 'http://xhamster.com/movies/1509445/femaleagent_shy_beauty_takes_the_bait.html', 
  29         'md5': '8281348b8d3c53d39fffb377d24eac4e', 
  32             'display_id': 'femaleagent_shy_beauty_takes_the_bait', 
  34             'title': 'FemaleAgent Shy beauty takes the bait', 
  35             'upload_date': '20121014', 
  36             'uploader': 'Ruseful2011', 
  39             'categories': ['Fake Hub', 'Amateur', 'MILFs', 'POV', 'Boss', 'Office', 'Oral', 'Reality', 'Sexy'], 
  42         'url': 'http://xhamster.com/movies/2221348/britney_spears_sexy_booty.html?hd', 
  45             'display_id': 'britney_spears_sexy_booty', 
  47             'title': 'Britney Spears  Sexy Booty', 
  48             'upload_date': '20130914', 
  49             'uploader': 'jojo747400', 
  52             'categories': ['Britney Spears', 'Celebrities', 'HD Videos', 'Sexy', 'Sexy Booty'], 
  55             'skip_download': True, 
  59         'url': 'http://xhamster.com/movies/5667973/.html', 
  64             'upload_date': '20160208', 
  65             'uploader': 'parejafree', 
  68             'categories': ['Amateur', 'Blowjobs'], 
  71             'skip_download': True, 
  74         'url': 'https://xhamster.com/movies/2272726/amber_slayed_by_the_knight.html', 
  75         'only_matching': True, 
  77         # This video is visible for marcoalfa123456's friends only 
  78         'url': 'https://it.xhamster.com/movies/7263980/la_mia_vicina.html', 
  79         'only_matching': True, 
  82         'url': 'https://pt.xhamster.com/videos/euro-pedal-pumping-7937821', 
  83         'only_matching': True, 
  86     def _real_extract(self
, url
): 
  87         mobj 
= re
.match(self
._VALID
_URL
, url
) 
  88         video_id 
= mobj
.group('id') or mobj
.group('id_2') 
  89         display_id 
= mobj
.group('display_id') or mobj
.group('display_id_2') 
  91         webpage 
= self
._download
_webpage
(url
, video_id
) 
  93         error 
= self
._html
_search
_regex
( 
  94             r
'<div[^>]+id=["\']videoClosed
["\'][^>]*>(.+?)</div>', 
  95             webpage, 'error', default=None) 
  97             raise ExtractorError(error, expected=True) 
  99         title = self._html_search_regex( 
 100             [r'<h1[^>]*>([^<]+)</h1>', 
 101              r'<meta[^>]+itemprop=".*?caption
.*?
"[^>]+content="(.+?
)"', 
 102              r'<title[^>]*>(.+?)(?:,\s*[^,]*?\s*Porn\s*[^,]*?:\s*xHamster[^<]*| - xHamster\.com)</title>'], 
 108         sources = self._parse_json( 
 110                 r'sources\s*:\s*({.+?})\s*,?\s*\n', webpage, 'sources', 
 112             video_id, fatal=False) 
 113         for format_id, format_url in sources.items(): 
 114             if not isinstance(format_url, compat_str): 
 116             if format_url in format_urls: 
 118             format_urls.add(format_url) 
 120                 'format_id': format_id, 
 122                 'height': int_or_none(self._search_regex( 
 123                     r'^(\d+)[pP]', format_id, 'height', default=None)) 
 126         video_url = self._search_regex( 
 127             [r'''file\s*:\s*(?P<q>["'])(?P<mp4>.+?)(?P=q)''', 
 128              r'''<a\s+href=(?P<q>["'])(?P
<mp4
>.+?
)(?P
=q
)\s
+class=["']mp4Thumb''', 
 129              r'''<video[^>]+file=(?P<q>["'])(?P<mp4>.+?)(?P=q)[^>]*>'''], 
 130             webpage, 'video url
', group='mp4
', default=None) 
 131         if video_url and video_url not in format_urls: 
 136         self._sort_formats(formats) 
 138         # Only a few videos have an description 
 139         mobj = re.search(r'<span
>Description
: </span
>([^
<]+)', webpage) 
 140         description = mobj.group(1) if mobj else None 
 142         upload_date = unified_strdate(self._search_regex( 
 143             r'hint
=["\'](\d{4}-\d{2}-\d{2}) \d{2}:\d{2}:\d{2} [A-Z]{3,4}', 
 144             webpage, 'upload date', fatal=False)) 
 146         uploader = self._html_search_regex( 
 147             r'<span[^>]+itemprop=["\']author
[^
>]+><a
[^
>]+><span
[^
>]+>([^
<]+)', 
 148             webpage, 'uploader
', default='anonymous
') 
 150         thumbnail = self._search_regex( 
 151             [r'''thumb\s*:\s*(?P<q>["'])(?P
<thumbnail
>.+?
)(?P
=q
)''', 
 152              r'''<video
[^
>]+poster
=(?P
<q
>["'])(?P<thumbnail>.+?)(?P=q)[^>]*>'''], 
 153             webpage, 'thumbnail', fatal=False, group='thumbnail') 
 155         duration = parse_duration(self._search_regex( 
 156             [r'<[^<]+\bitemprop=["\']duration
["\'][^<]+\bcontent=["\'](.+?
)["\']', 
 157              r'Runtime:\s*</span>\s*([\d:]+)'], webpage, 
 158             'duration', fatal=False)) 
 160         view_count = int_or_none(self._search_regex( 
 161             r'content=["\']User(?
:View|Play
)s
:(\d
+)', 
 162             webpage, 'view count
', fatal=False)) 
 164         mobj = re.search(r'hint
=[\'"](?P<likecount>\d+) Likes / (?P<dislikecount>\d+) Dislikes', webpage) 
 165         (like_count, dislike_count) = (mobj.group('likecount'), mobj.group('dislikecount')) if mobj else (None, None) 
 167         mobj = re.search(r'</label>Comments \((?P<commentcount>\d+)\)</div>', webpage) 
 168         comment_count = mobj.group('commentcount') if mobj else 0 
 170         age_limit = self._rta_search(webpage) 
 172         categories_html = self._search_regex( 
 173             r'(?s)<table.+?(<span>Categories:.+?)</table>', webpage, 
 174             'categories', default=None) 
 175         categories = [clean_html(category) for category in re.findall( 
 176             r'<a[^>]+>(.+?)</a>', categories_html)] if categories_html else None 
 180             'display_id': display_id, 
 182             'description': description, 
 183             'upload_date': upload_date, 
 184             'uploader': uploader, 
 185             'thumbnail': thumbnail, 
 186             'duration': duration, 
 187             'view_count': view_count, 
 188             'like_count': int_or_none(like_count), 
 189             'dislike_count': int_or_none(dislike_count), 
 190             'comment_count': int_or_none(comment_count), 
 191             'age_limit': age_limit, 
 192             'categories': categories, 
 197 class XHamsterEmbedIE(InfoExtractor): 
 198     _VALID_URL = r'https?://(?:www\.)?xhamster\.com/xembed\.php\?video=(?P<id>\d+)' 
 200         'url': 'http://xhamster.com/xembed.php?video=3328539', 
 204             'title': 'Pen Masturbation', 
 205             'upload_date': '20140728', 
 206             'uploader_id': 'anonymous', 
 213     def _extract_urls(webpage): 
 214         return [url for _, url in re.findall( 
 215             r'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//(?
:www\
.)?xhamster\
.com
/xembed\
.php
\?video
=\d
+)\
1', 
 218     def _real_extract(self, url): 
 219         video_id = self._match_id(url) 
 221         webpage = self._download_webpage(url, video_id) 
 223         video_url = self._search_regex( 
 224             r'href
="(https?://xhamster\.com/(?:movies/{0}/[^"]*\
.html|videos
/[^
/]*-{0}
)[^
"]*)"'.format(video_id), 
 225             webpage, 'xhamster url
', default=None) 
 228             vars = self._parse_json( 
 229                 self._search_regex(r'vars\s
*:\s
*({.+?
})\s
*,\s
*\n', webpage, 'vars'), 
 231             video_url = dict_get(vars, ('downloadLink
', 'homepageLink
', 'commentsLink
', 'shareUrl
')) 
 233         return self.url_result(video_url, 'XHamster
')