]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/xtube.py
db82925896be304ce9a8f02862a515c24dff1198
[yt-dlp.git] / yt_dlp / extractor / xtube.py
1 import itertools
2 import re
3
4 from .common import InfoExtractor
5 from ..networking import Request
6 from ..utils import (
7 int_or_none,
8 js_to_json,
9 orderedSet,
10 parse_duration,
11 str_to_int,
12 url_or_none,
13 )
14
15
16 class XTubeIE(InfoExtractor):
17 _VALID_URL = r'''(?x)
18 (?:
19 xtube:|
20 https?://(?:www\.)?xtube\.com/(?:watch\.php\?.*\bv=|video-watch/(?:embedded/)?(?P<display_id>[^/]+)-)
21 )
22 (?P<id>[^/?&#]+)
23 '''
24
25 _TESTS = [{
26 # old URL schema
27 'url': 'http://www.xtube.com/watch.php?v=kVTUy_G222_',
28 'md5': '092fbdd3cbe292c920ef6fc6a8a9cdab',
29 'info_dict': {
30 'id': 'kVTUy_G222_',
31 'ext': 'mp4',
32 'title': 'strange erotica',
33 'description': 'contains:an ET kind of thing',
34 'uploader': 'greenshowers',
35 'duration': 450,
36 'view_count': int,
37 'comment_count': int,
38 'age_limit': 18,
39 }
40 }, {
41 # new URL schema
42 'url': 'http://www.xtube.com/video-watch/strange-erotica-625837',
43 'only_matching': True,
44 }, {
45 'url': 'xtube:625837',
46 'only_matching': True,
47 }, {
48 'url': 'xtube:kVTUy_G222_',
49 'only_matching': True,
50 }, {
51 'url': 'https://www.xtube.com/video-watch/embedded/milf-tara-and-teen-shared-and-cum-covered-extreme-bukkake-32203482?embedsize=big',
52 'only_matching': True,
53 }]
54
55 def _real_extract(self, url):
56 mobj = self._match_valid_url(url)
57 video_id = mobj.group('id')
58 display_id = mobj.group('display_id')
59
60 if not display_id:
61 display_id = video_id
62
63 if video_id.isdigit() and len(video_id) < 11:
64 url_pattern = 'http://www.xtube.com/video-watch/-%s'
65 else:
66 url_pattern = 'http://www.xtube.com/watch.php?v=%s'
67
68 webpage = self._download_webpage(
69 url_pattern % video_id, display_id, headers={
70 'Cookie': 'age_verified=1; cookiesAccepted=1',
71 })
72
73 title, thumbnail, duration, sources, media_definition = [None] * 5
74
75 config = self._parse_json(self._search_regex(
76 r'playerConf\s*=\s*({.+?})\s*,\s*(?:\n|loaderConf|playerWrapper)', webpage, 'config',
77 default='{}'), video_id, transform_source=js_to_json, fatal=False)
78 if config:
79 config = config.get('mainRoll')
80 if isinstance(config, dict):
81 title = config.get('title')
82 thumbnail = config.get('poster')
83 duration = int_or_none(config.get('duration'))
84 sources = config.get('sources') or config.get('format')
85 media_definition = config.get('mediaDefinition')
86
87 if not isinstance(sources, dict) and not media_definition:
88 sources = self._parse_json(self._search_regex(
89 r'(["\'])?sources\1?\s*:\s*(?P<sources>{.+?}),',
90 webpage, 'sources', group='sources'), video_id,
91 transform_source=js_to_json)
92
93 formats = []
94 format_urls = set()
95
96 if isinstance(sources, dict):
97 for format_id, format_url in sources.items():
98 format_url = url_or_none(format_url)
99 if not format_url:
100 continue
101 if format_url in format_urls:
102 continue
103 format_urls.add(format_url)
104 formats.append({
105 'url': format_url,
106 'format_id': format_id,
107 'height': int_or_none(format_id),
108 })
109
110 if isinstance(media_definition, list):
111 for media in media_definition:
112 video_url = url_or_none(media.get('videoUrl'))
113 if not video_url:
114 continue
115 if video_url in format_urls:
116 continue
117 format_urls.add(video_url)
118 format_id = media.get('format')
119 if format_id == 'hls':
120 formats.extend(self._extract_m3u8_formats(
121 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
122 m3u8_id='hls', fatal=False))
123 elif format_id == 'mp4':
124 height = int_or_none(media.get('quality'))
125 formats.append({
126 'url': video_url,
127 'format_id': '%s-%d' % (format_id, height) if height else format_id,
128 'height': height,
129 })
130
131 self._remove_duplicate_formats(formats)
132
133 if not title:
134 title = self._search_regex(
135 (r'<h1>\s*(?P<title>[^<]+?)\s*</h1>', r'videoTitle\s*:\s*(["\'])(?P<title>.+?)\1'),
136 webpage, 'title', group='title')
137 description = self._og_search_description(
138 webpage, default=None) or self._html_search_meta(
139 'twitter:description', webpage, default=None) or self._search_regex(
140 r'</h1>\s*<p>([^<]+)', webpage, 'description', fatal=False)
141 uploader = self._search_regex(
142 (r'<input[^>]+name="contentOwnerId"[^>]+value="([^"]+)"',
143 r'<span[^>]+class="nickname"[^>]*>([^<]+)'),
144 webpage, 'uploader', fatal=False)
145 if not duration:
146 duration = parse_duration(self._search_regex(
147 r'<dt>Runtime:?</dt>\s*<dd>([^<]+)</dd>',
148 webpage, 'duration', fatal=False))
149 view_count = str_to_int(self._search_regex(
150 (r'["\']viewsCount["\'][^>]*>(\d+)\s+views',
151 r'<dt>Views:?</dt>\s*<dd>([\d,\.]+)</dd>'),
152 webpage, 'view count', fatal=False))
153 comment_count = str_to_int(self._html_search_regex(
154 r'>Comments? \(([\d,\.]+)\)<',
155 webpage, 'comment count', fatal=False))
156
157 return {
158 'id': video_id,
159 'display_id': display_id,
160 'title': title,
161 'description': description,
162 'thumbnail': thumbnail,
163 'uploader': uploader,
164 'duration': duration,
165 'view_count': view_count,
166 'comment_count': comment_count,
167 'age_limit': 18,
168 'formats': formats,
169 }
170
171
172 class XTubeUserIE(InfoExtractor):
173 IE_DESC = 'XTube user profile'
174 _VALID_URL = r'https?://(?:www\.)?xtube\.com/profile/(?P<id>[^/]+-\d+)'
175 _TEST = {
176 'url': 'http://www.xtube.com/profile/greenshowers-4056496',
177 'info_dict': {
178 'id': 'greenshowers-4056496',
179 'age_limit': 18,
180 },
181 'playlist_mincount': 154,
182 }
183
184 def _real_extract(self, url):
185 user_id = self._match_id(url)
186
187 entries = []
188 for pagenum in itertools.count(1):
189 request = Request(
190 'http://www.xtube.com/profile/%s/videos/%d' % (user_id, pagenum),
191 headers={
192 'Cookie': 'popunder=4',
193 'X-Requested-With': 'XMLHttpRequest',
194 'Referer': url,
195 })
196
197 page = self._download_json(
198 request, user_id, 'Downloading videos JSON page %d' % pagenum)
199
200 html = page.get('html')
201 if not html:
202 break
203
204 for video_id in orderedSet([video_id for _, video_id in re.findall(
205 r'data-plid=(["\'])(.+?)\1', html)]):
206 entries.append(self.url_result('xtube:%s' % video_id, XTubeIE.ie_key()))
207
208 page_count = int_or_none(page.get('pageCount'))
209 if not page_count or pagenum == page_count:
210 break
211
212 playlist = self.playlist_result(entries, user_id)
213 playlist['age_limit'] = 18
214 return playlist