1 from __future__ import unicode_literals
6 from .common import InfoExtractor
16 class XTubeIE(InfoExtractor):
20 https?://(?:www\.)?xtube\.com/(?:watch\.php\?.*\bv=|video-watch/(?P<display_id>[^/]+)-)
27 'url': 'http://www.xtube.com/watch.php?v=kVTUy_G222_',
28 'md5': '092fbdd3cbe292c920ef6fc6a8a9cdab',
32 'title': 'strange erotica',
33 'description': 'contains:an ET kind of thing',
34 'uploader': 'greenshowers',
42 'url': 'http://www.xtube.com/video-watch/strange-erotica-625837',
43 'only_matching': True,
45 'url': 'xtube:625837',
46 'only_matching': True,
48 'url': 'xtube:kVTUy_G222_',
49 'only_matching': True,
52 def _real_extract(self, url):
53 mobj = re.match(self._VALID_URL, url)
54 video_id = mobj.group('id')
55 display_id = mobj.group('display_id')
60 if video_id.isdigit() and len(video_id) < 11:
61 url_pattern = 'http://www.xtube.com/video-watch/-%s'
63 url_pattern = 'http://www.xtube.com/watch.php?v=%s'
65 webpage = self._download_webpage(
66 url_pattern % video_id, display_id, headers={
67 'Cookie': 'age_verified=1; cookiesAccepted=1',
70 sources = self._parse_json(self._search_regex(
71 r'(["\'])sources\1\s*:\s*(?P<sources>{.+?}),',
72 webpage, 'sources', group='sources'), video_id)
75 for format_id, format_url in sources.items():
78 'format_id': format_id,
79 'height': int_or_none(format_id),
81 self._sort_formats(formats)
83 title = self._search_regex(
84 (r'<h1>\s*(?P<title>[^<]+?)\s*</h1>', r'videoTitle\s*:\s*(["\'])(?P<title>.+?)\1'),
85 webpage, 'title', group='title')
86 description = self._search_regex(
87 r'</h1>\s*<p>([^<]+)', webpage, 'description', fatal=False)
88 uploader = self._search_regex(
89 (r'<input[^>]+name="contentOwnerId"[^>]+value="([^"]+)"',
90 r'<span[^>]+class="nickname"[^>]*>([^<]+)'),
91 webpage, 'uploader', fatal=False)
92 duration = parse_duration(self._search_regex(
93 r'<dt>Runtime:?</dt>\s*<dd>([^<]+)</dd>',
94 webpage, 'duration', fatal=False))
95 view_count = str_to_int(self._search_regex(
96 r'<dt>Views:?</dt>\s*<dd>([\d,\.]+)</dd>',
97 webpage, 'view count', fatal=False))
98 comment_count = str_to_int(self._html_search_regex(
99 r'>Comments? \(([\d,\.]+)\)<',
100 webpage, 'comment count', fatal=False))
104 'display_id': display_id,
106 'description': description,
107 'uploader': uploader,
108 'duration': duration,
109 'view_count': view_count,
110 'comment_count': comment_count,
116 class XTubeUserIE(InfoExtractor):
117 IE_DESC = 'XTube user profile'
118 _VALID_URL = r'https?://(?:www\.)?xtube\.com/profile/(?P<id>[^/]+-\d+)'
120 'url': 'http://www.xtube.com/profile/greenshowers-4056496',
122 'id': 'greenshowers-4056496',
125 'playlist_mincount': 155,
128 def _real_extract(self, url):
129 user_id = self._match_id(url)
132 for pagenum in itertools.count(1):
133 request = sanitized_Request(
134 'http://www.xtube.com/profile/%s/videos/%d' % (user_id, pagenum),
136 'Cookie': 'popunder=4',
137 'X-Requested-With': 'XMLHttpRequest',
141 page = self._download_json(
142 request, user_id, 'Downloading videos JSON page %d' % pagenum)
144 html = page.get('html')
148 for video_id in orderedSet([video_id for _, video_id in re.findall(
149 r'data-plid=(["\'])(.+?)\1', html)]):
150 entries.append(self.url_result('xtube:%s' % video_id, XTubeIE.ie_key()))
152 page_count = int_or_none(page.get('pageCount'))
153 if not page_count or pagenum == page_count:
156 playlist = self.playlist_result(entries, user_id)
157 playlist['age_limit'] = 18