]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/mailru.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / mailru.py
1 import itertools
2 import json
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import compat_urllib_parse_unquote
7 from ..utils import (
8 int_or_none,
9 parse_duration,
10 remove_end,
11 try_get,
12 urljoin,
13 )
14
15
16 class MailRuIE(InfoExtractor):
17 IE_NAME = 'mailru'
18 IE_DESC = 'Видео@Mail.Ru'
19 _VALID_URL = r'''(?x)
20 https?://
21 (?:(?:www|m|videoapi)\.)?my\.mail\.ru/+
22 (?:
23 video/.*\#video=/?(?P<idv1>(?:[^/]+/){3}\d+)|
24 (?:videos/embed/)?(?:(?P<idv2prefix>(?:[^/]+/+){2})(?:video/(?:embed/)?)?(?P<idv2suffix>[^/]+/\d+))(?:\.html)?|
25 (?:video/embed|\+/video/meta)/(?P<metaid>\d+)
26 )
27 '''
28 _TESTS = [
29 {
30 'url': 'http://my.mail.ru/video/top#video=/mail/sonypicturesrus/75/76',
31 'md5': 'dea205f03120046894db4ebb6159879a',
32 'info_dict': {
33 'id': '46301138_76',
34 'ext': 'mp4',
35 'title': 'Новый Человек-Паук. Высокое напряжение. Восстание Электро',
36 'timestamp': 1393235077,
37 'upload_date': '20140224',
38 'uploader': 'sonypicturesrus',
39 'uploader_id': 'sonypicturesrus@mail.ru',
40 'duration': 184,
41 },
42 'skip': 'Not accessible from Travis CI server',
43 },
44 {
45 'url': 'http://my.mail.ru/corp/hitech/video/news_hi-tech_mail_ru/1263.html',
46 'md5': '00a91a58c3402204dcced523777b475f',
47 'info_dict': {
48 'id': '46843144_1263',
49 'ext': 'mp4',
50 'title': 'Samsung Galaxy S5 Hammer Smash Fail Battery Explosion',
51 'timestamp': 1397039888,
52 'upload_date': '20140409',
53 'uploader': 'hitech',
54 'uploader_id': 'hitech@corp.mail.ru',
55 'duration': 245,
56 },
57 'skip': 'Not accessible from Travis CI server',
58 },
59 {
60 # only available via metaUrl API
61 'url': 'http://my.mail.ru/mail/720pizle/video/_myvideo/502.html',
62 'md5': '3b26d2491c6949d031a32b96bd97c096',
63 'info_dict': {
64 'id': '56664382_502',
65 'ext': 'mp4',
66 'title': ':8336',
67 'timestamp': 1449094163,
68 'upload_date': '20151202',
69 'uploader': '720pizle@mail.ru',
70 'uploader_id': '720pizle@mail.ru',
71 'duration': 6001,
72 },
73 'skip': 'Not accessible from Travis CI server',
74 },
75 {
76 'url': 'http://m.my.mail.ru/mail/3sktvtr/video/_myvideo/138.html',
77 'only_matching': True,
78 },
79 {
80 'url': 'https://my.mail.ru/video/embed/7949340477499637815',
81 'only_matching': True,
82 },
83 {
84 'url': 'http://my.mail.ru/+/video/meta/7949340477499637815',
85 'only_matching': True,
86 },
87 {
88 'url': 'https://my.mail.ru//list/sinyutin10/video/_myvideo/4.html',
89 'only_matching': True,
90 },
91 {
92 'url': 'https://my.mail.ru//list//sinyutin10/video/_myvideo/4.html',
93 'only_matching': True,
94 },
95 {
96 'url': 'https://my.mail.ru/mail/cloud-strife/video/embed/Games/2009',
97 'only_matching': True,
98 },
99 {
100 'url': 'https://videoapi.my.mail.ru/videos/embed/mail/cloud-strife/Games/2009.html',
101 'only_matching': True,
102 }
103 ]
104
105 def _real_extract(self, url):
106 mobj = self._match_valid_url(url)
107 meta_id = mobj.group('metaid')
108
109 video_id = None
110 if meta_id:
111 meta_url = 'https://my.mail.ru/+/video/meta/%s' % meta_id
112 else:
113 video_id = mobj.group('idv1')
114 if not video_id:
115 video_id = mobj.group('idv2prefix') + mobj.group('idv2suffix')
116 webpage = self._download_webpage(url, video_id)
117 page_config = self._parse_json(self._search_regex([
118 r'(?s)<script[^>]+class="sp-video__page-config"[^>]*>(.+?)</script>',
119 r'(?s)"video":\s*({.+?}),'],
120 webpage, 'page config', default='{}'), video_id, fatal=False)
121 if page_config:
122 meta_url = page_config.get('metaUrl') or page_config.get('video', {}).get('metaUrl') or page_config.get('metadataUrl')
123 else:
124 meta_url = None
125
126 video_data = None
127
128 # fix meta_url if missing the host address
129 if re.match(r'^\/\+\/', meta_url):
130 meta_url = urljoin('https://my.mail.ru', meta_url)
131
132 if meta_url:
133 video_data = self._download_json(
134 meta_url, video_id or meta_id, 'Downloading video meta JSON',
135 fatal=not video_id)
136
137 # Fallback old approach
138 if not video_data:
139 video_data = self._download_json(
140 'http://api.video.mail.ru/videos/%s.json?new=1' % video_id,
141 video_id, 'Downloading video JSON')
142
143 headers = {}
144
145 video_key = self._get_cookies('https://my.mail.ru').get('video_key')
146 if video_key:
147 headers['Cookie'] = 'video_key=%s' % video_key.value
148
149 formats = []
150 for f in video_data['videos']:
151 video_url = f.get('url')
152 if not video_url:
153 continue
154 format_id = f.get('key')
155 height = int_or_none(self._search_regex(
156 r'^(\d+)[pP]$', format_id, 'height', default=None)) if format_id else None
157 formats.append({
158 'url': video_url,
159 'format_id': format_id,
160 'height': height,
161 'http_headers': headers,
162 })
163
164 meta_data = video_data['meta']
165 title = remove_end(meta_data['title'], '.mp4')
166
167 author = video_data.get('author')
168 uploader = author.get('name')
169 uploader_id = author.get('id') or author.get('email')
170 view_count = int_or_none(video_data.get('viewsCount') or video_data.get('views_count'))
171
172 acc_id = meta_data.get('accId')
173 item_id = meta_data.get('itemId')
174 content_id = '%s_%s' % (acc_id, item_id) if acc_id and item_id else video_id
175
176 thumbnail = meta_data.get('poster')
177 duration = int_or_none(meta_data.get('duration'))
178 timestamp = int_or_none(meta_data.get('timestamp'))
179
180 return {
181 'id': content_id,
182 'title': title,
183 'thumbnail': thumbnail,
184 'timestamp': timestamp,
185 'uploader': uploader,
186 'uploader_id': uploader_id,
187 'duration': duration,
188 'view_count': view_count,
189 'formats': formats,
190 }
191
192
193 class MailRuMusicSearchBaseIE(InfoExtractor):
194 def _search(self, query, url, audio_id, limit=100, offset=0):
195 search = self._download_json(
196 'https://my.mail.ru/cgi-bin/my/ajax', audio_id,
197 'Downloading songs JSON page %d' % (offset // limit + 1),
198 headers={
199 'Referer': url,
200 'X-Requested-With': 'XMLHttpRequest',
201 }, query={
202 'xemail': '',
203 'ajax_call': '1',
204 'func_name': 'music.search',
205 'mna': '',
206 'mnb': '',
207 'arg_query': query,
208 'arg_extended': '1',
209 'arg_search_params': json.dumps({
210 'music': {
211 'limit': limit,
212 'offset': offset,
213 },
214 }),
215 'arg_limit': limit,
216 'arg_offset': offset,
217 })
218 return next(e for e in search if isinstance(e, dict))
219
220 @staticmethod
221 def _extract_track(t, fatal=True):
222 audio_url = t['URL'] if fatal else t.get('URL')
223 if not audio_url:
224 return
225
226 audio_id = t['File'] if fatal else t.get('File')
227 if not audio_id:
228 return
229
230 thumbnail = t.get('AlbumCoverURL') or t.get('FiledAlbumCover')
231 uploader = t.get('OwnerName') or t.get('OwnerName_Text_HTML')
232 uploader_id = t.get('UploaderID')
233 duration = int_or_none(t.get('DurationInSeconds')) or parse_duration(
234 t.get('Duration') or t.get('DurationStr'))
235 view_count = int_or_none(t.get('PlayCount') or t.get('PlayCount_hr'))
236
237 track = t.get('Name') or t.get('Name_Text_HTML')
238 artist = t.get('Author') or t.get('Author_Text_HTML')
239
240 if track:
241 title = '%s - %s' % (artist, track) if artist else track
242 else:
243 title = audio_id
244
245 return {
246 'extractor_key': MailRuMusicIE.ie_key(),
247 'id': audio_id,
248 'title': title,
249 'thumbnail': thumbnail,
250 'uploader': uploader,
251 'uploader_id': uploader_id,
252 'duration': duration,
253 'view_count': view_count,
254 'vcodec': 'none',
255 'abr': int_or_none(t.get('BitRate')),
256 'track': track,
257 'artist': artist,
258 'album': t.get('Album'),
259 'url': audio_url,
260 }
261
262
263 class MailRuMusicIE(MailRuMusicSearchBaseIE):
264 IE_NAME = 'mailru:music'
265 IE_DESC = 'Музыка@Mail.Ru'
266 _VALID_URL = r'https?://my\.mail\.ru/+music/+songs/+[^/?#&]+-(?P<id>[\da-f]+)'
267 _TESTS = [{
268 'url': 'https://my.mail.ru/music/songs/%D0%BC8%D0%BB8%D1%82%D1%85-l-a-h-luciferian-aesthetics-of-herrschaft-single-2017-4e31f7125d0dfaef505d947642366893',
269 'md5': '0f8c22ef8c5d665b13ac709e63025610',
270 'info_dict': {
271 'id': '4e31f7125d0dfaef505d947642366893',
272 'ext': 'mp3',
273 'title': 'L.A.H. (Luciferian Aesthetics of Herrschaft) single, 2017 - М8Л8ТХ',
274 'uploader': 'Игорь Мудрый',
275 'uploader_id': '1459196328',
276 'duration': 280,
277 'view_count': int,
278 'vcodec': 'none',
279 'abr': 320,
280 'track': 'L.A.H. (Luciferian Aesthetics of Herrschaft) single, 2017',
281 'artist': 'М8Л8ТХ',
282 },
283 }]
284
285 def _real_extract(self, url):
286 audio_id = self._match_id(url)
287
288 webpage = self._download_webpage(url, audio_id)
289
290 title = self._og_search_title(webpage)
291 music_data = self._search(title, url, audio_id)['MusicData']
292 t = next(t for t in music_data if t.get('File') == audio_id)
293
294 info = self._extract_track(t)
295 info['title'] = title
296 return info
297
298
299 class MailRuMusicSearchIE(MailRuMusicSearchBaseIE):
300 IE_NAME = 'mailru:music:search'
301 IE_DESC = 'Музыка@Mail.Ru'
302 _VALID_URL = r'https?://my\.mail\.ru/+music/+search/+(?P<id>[^/?#&]+)'
303 _TESTS = [{
304 'url': 'https://my.mail.ru/music/search/black%20shadow',
305 'info_dict': {
306 'id': 'black shadow',
307 },
308 'playlist_mincount': 532,
309 }]
310
311 def _real_extract(self, url):
312 query = compat_urllib_parse_unquote(self._match_id(url))
313
314 entries = []
315
316 LIMIT = 100
317 offset = 0
318
319 for _ in itertools.count(1):
320 search = self._search(query, url, query, LIMIT, offset)
321
322 music_data = search.get('MusicData')
323 if not music_data or not isinstance(music_data, list):
324 break
325
326 for t in music_data:
327 track = self._extract_track(t, fatal=False)
328 if track:
329 entries.append(track)
330
331 total = try_get(
332 search, lambda x: x['Results']['music']['Total'], int)
333
334 if total is not None:
335 if offset > total:
336 break
337
338 offset += LIMIT
339
340 return self.playlist_result(entries, query)