1 from __future__
import unicode_literals
6 from .common
import InfoExtractor
17 class XTubeIE(InfoExtractor
):
21 https?://(?:www\.)?xtube\.com/(?:watch\.php\?.*\bv=|video-watch/(?:embedded/)?(?P<display_id>[^/]+)-)
28 'url': 'http://www.xtube.com/watch.php?v=kVTUy_G222_',
29 'md5': '092fbdd3cbe292c920ef6fc6a8a9cdab',
33 'title': 'strange erotica',
34 'description': 'contains:an ET kind of thing',
35 'uploader': 'greenshowers',
42 # FLV videos with duplicated formats
43 'url': 'http://www.xtube.com/video-watch/A-Super-Run-Part-1-YT-9299752',
44 'md5': 'a406963eb349dd43692ec54631efd88b',
47 'display_id': 'A-Super-Run-Part-1-YT',
49 'title': 'A Super Run - Part 1 (YT)',
50 'description': 'md5:4cc3af1aa1b0413289babc88f0d4f616',
51 'uploader': 'tshirtguy59',
59 'url': 'http://www.xtube.com/video-watch/strange-erotica-625837',
60 'only_matching': True,
62 'url': 'xtube:625837',
63 'only_matching': True,
65 'url': 'xtube:kVTUy_G222_',
66 'only_matching': True,
68 'url': 'https://www.xtube.com/video-watch/embedded/milf-tara-and-teen-shared-and-cum-covered-extreme-bukkake-32203482?embedsize=big',
69 'only_matching': True,
72 def _real_extract(self
, url
):
73 mobj
= re
.match(self
._VALID
_URL
, url
)
74 video_id
= mobj
.group('id')
75 display_id
= mobj
.group('display_id')
80 if video_id
.isdigit() and len(video_id
) < 11:
81 url_pattern
= 'http://www.xtube.com/video-watch/-%s'
83 url_pattern
= 'http://www.xtube.com/watch.php?v=%s'
85 webpage
= self
._download
_webpage
(
86 url_pattern
% video_id
, display_id
, headers
={
87 'Cookie': 'age_verified=1; cookiesAccepted=1',
90 title
, thumbnail
, duration
= [None] * 3
92 config
= self
._parse
_json
(self
._search
_regex
(
93 r
'playerConf\s*=\s*({.+?})\s*,\s*\n', webpage
, 'config',
94 default
='{}'), video_id
, transform_source
=js_to_json
, fatal
=False)
96 config
= config
.get('mainRoll')
97 if isinstance(config
, dict):
98 title
= config
.get('title')
99 thumbnail
= config
.get('poster')
100 duration
= int_or_none(config
.get('duration'))
101 sources
= config
.get('sources') or config
.get('format')
103 if not isinstance(sources
, dict):
104 sources
= self
._parse
_json
(self
._search
_regex
(
105 r
'(["\'])?sources\
1?\s
*:\s
*(?P
<sources
>{.+?
}),',
106 webpage, 'sources
', group='sources
'), video_id,
107 transform_source=js_to_json)
110 for format_id, format_url in sources.items():
113 'format_id
': format_id,
114 'height
': int_or_none(format_id),
116 self._remove_duplicate_formats(formats)
117 self._sort_formats(formats)
120 title = self._search_regex(
121 (r'<h1
>\s
*(?P
<title
>[^
<]+?
)\s
*</h1
>', r'videoTitle\s
*:\s
*(["\'])(?P<title>.+?)\1'),
122 webpage, 'title', group='title')
123 description = self._og_search_description(
124 webpage, default=None) or self._html_search_meta(
125 'twitter:description', webpage, default=None) or self._search_regex(
126 r'</h1>\s*<p>([^<]+)', webpage, 'description', fatal=False)
127 uploader = self._search_regex(
128 (r'<input[^>]+name="contentOwnerId
"[^>]+value="([^
"]+)"',
129 r'<span
[^
>]+class="nickname"[^
>]*>([^
<]+)'),
130 webpage, 'uploader
', fatal=False)
132 duration = parse_duration(self._search_regex(
133 r'<dt
>Runtime
:?
</dt
>\s
*<dd
>([^
<]+)</dd
>',
134 webpage, 'duration
', fatal=False))
135 view_count = str_to_int(self._search_regex(
136 (r'["\']viewsCount["\'][^
>]*>(\d
+)\s
+views
',
137 r'<dt
>Views
:?
</dt
>\s
*<dd
>([\d
,\
.]+)</dd
>'),
138 webpage, 'view count
', fatal=False))
139 comment_count = str_to_int(self._html_search_regex(
140 r'>Comments? \
(([\d
,\
.]+)\
)<',
141 webpage, 'comment count
', fatal=False))
145 'display_id
': display_id,
147 'description
': description,
148 'thumbnail
': thumbnail,
149 'uploader
': uploader,
150 'duration
': duration,
151 'view_count
': view_count,
152 'comment_count
': comment_count,
158 class XTubeUserIE(InfoExtractor):
159 IE_DESC = 'XTube user profile
'
160 _VALID_URL = r'https?
://(?
:www\
.)?xtube\
.com
/profile
/(?P
<id>[^
/]+-\d
+)'
162 'url
': 'http
://www
.xtube
.com
/profile
/greenshowers
-4056496',
164 'id': 'greenshowers
-4056496',
167 'playlist_mincount
': 154,
170 def _real_extract(self, url):
171 user_id = self._match_id(url)
174 for pagenum in itertools.count(1):
175 request = sanitized_Request(
176 'http
://www
.xtube
.com
/profile
/%s/videos
/%d' % (user_id, pagenum),
178 'Cookie
': 'popunder
=4',
179 'X
-Requested
-With
': 'XMLHttpRequest
',
183 page = self._download_json(
184 request, user_id, 'Downloading videos JSON page
%d' % pagenum)
186 html = page.get('html
')
190 for video_id in orderedSet([video_id for _, video_id in re.findall(
191 r'data
-plid
=(["\'])(.+?)\1', html)]):
192 entries.append(self.url_result('xtube:%s' % video_id, XTubeIE.ie_key()))
194 page_count = int_or_none(page.get('pageCount'))
195 if not page_count or pagenum == page_count:
198 playlist = self.playlist_result(entries, user_id)
199 playlist['age_limit'] = 18