6 from .common
import InfoExtractor
16 class MailRuIE(InfoExtractor
):
18 IE_DESC
= 'Видео@Mail.Ru'
21 (?:(?:www|m|videoapi)\.)?my\.mail\.ru/+
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+)
30 'url': 'http://my.mail.ru/video/top#video=/mail/sonypicturesrus/75/76',
31 'md5': 'dea205f03120046894db4ebb6159879a',
35 'title': 'Новый Человек-Паук. Высокое напряжение. Восстание Электро',
36 'timestamp': 1393235077,
37 'upload_date': '20140224',
38 'uploader': 'sonypicturesrus',
39 'uploader_id': 'sonypicturesrus@mail.ru',
42 'skip': 'Not accessible from Travis CI server',
45 'url': 'http://my.mail.ru/corp/hitech/video/news_hi-tech_mail_ru/1263.html',
46 'md5': '00a91a58c3402204dcced523777b475f',
48 'id': '46843144_1263',
50 'title': 'Samsung Galaxy S5 Hammer Smash Fail Battery Explosion',
51 'timestamp': 1397039888,
52 'upload_date': '20140409',
54 'uploader_id': 'hitech@corp.mail.ru',
57 'skip': 'Not accessible from Travis CI server',
60 # only available via metaUrl API
61 'url': 'http://my.mail.ru/mail/720pizle/video/_myvideo/502.html',
62 'md5': '3b26d2491c6949d031a32b96bd97c096',
67 'timestamp': 1449094163,
68 'upload_date': '20151202',
69 'uploader': '720pizle@mail.ru',
70 'uploader_id': '720pizle@mail.ru',
73 'skip': 'Not accessible from Travis CI server',
76 'url': 'http://m.my.mail.ru/mail/3sktvtr/video/_myvideo/138.html',
77 'only_matching': True,
80 'url': 'https://my.mail.ru/video/embed/7949340477499637815',
81 'only_matching': True,
84 'url': 'http://my.mail.ru/+/video/meta/7949340477499637815',
85 'only_matching': True,
88 'url': 'https://my.mail.ru//list/sinyutin10/video/_myvideo/4.html',
89 'only_matching': True,
92 'url': 'https://my.mail.ru//list//sinyutin10/video/_myvideo/4.html',
93 'only_matching': True,
96 'url': 'https://my.mail.ru/mail/cloud-strife/video/embed/Games/2009',
97 'only_matching': True,
100 'url': 'https://videoapi.my.mail.ru/videos/embed/mail/cloud-strife/Games/2009.html',
101 'only_matching': True,
105 def _real_extract(self
, url
):
106 mobj
= self
._match
_valid
_url
(url
)
107 meta_id
= mobj
.group('metaid')
111 meta_url
= f
'https://my.mail.ru/+/video/meta/{meta_id}'
113 video_id
= mobj
.group('idv1')
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)
122 meta_url
= page_config
.get('metaUrl') or page_config
.get('video', {}).get('metaUrl') or page_config
.get('metadataUrl')
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
)
133 video_data
= self
._download
_json
(
134 meta_url
, video_id
or meta_id
, 'Downloading video meta JSON',
137 # Fallback old approach
139 video_data
= self
._download
_json
(
140 f
'http://api.video.mail.ru/videos/{video_id}.json?new=1',
141 video_id
, 'Downloading video JSON')
143 video_key
= self
._get
_cookies
('https://my.mail.ru').get('video_key')
146 for f
in video_data
['videos']:
147 video_url
= f
.get('url')
151 self
._set
_cookie
(urllib
.parse
.urlparse(video_url
).hostname
, 'video_key', video_key
.value
)
152 format_id
= f
.get('key')
153 height
= int_or_none(self
._search
_regex
(
154 r
'^(\d+)[pP]$', format_id
, 'height', default
=None)) if format_id
else None
157 'format_id': format_id
,
161 meta_data
= video_data
['meta']
162 title
= remove_end(meta_data
['title'], '.mp4')
164 author
= video_data
.get('author')
165 uploader
= author
.get('name')
166 uploader_id
= author
.get('id') or author
.get('email')
167 view_count
= int_or_none(video_data
.get('viewsCount') or video_data
.get('views_count'))
169 acc_id
= meta_data
.get('accId')
170 item_id
= meta_data
.get('itemId')
171 content_id
= f
'{acc_id}_{item_id}' if acc_id
and item_id
else video_id
173 thumbnail
= meta_data
.get('poster')
174 duration
= int_or_none(meta_data
.get('duration'))
175 timestamp
= int_or_none(meta_data
.get('timestamp'))
180 'thumbnail': thumbnail
,
181 'timestamp': timestamp
,
182 'uploader': uploader
,
183 'uploader_id': uploader_id
,
184 'duration': duration
,
185 'view_count': view_count
,
190 class MailRuMusicSearchBaseIE(InfoExtractor
):
191 def _search(self
, query
, url
, audio_id
, limit
=100, offset
=0):
192 search
= self
._download
_json
(
193 'https://my.mail.ru/cgi-bin/my/ajax', audio_id
,
194 f
'Downloading songs JSON page {offset // limit + 1}',
197 'X-Requested-With': 'XMLHttpRequest',
201 'func_name': 'music.search',
206 'arg_search_params': json
.dumps({
213 'arg_offset': offset
,
215 return next(e
for e
in search
if isinstance(e
, dict))
218 def _extract_track(t
, fatal
=True):
219 audio_url
= t
['URL'] if fatal
else t
.get('URL')
223 audio_id
= t
['File'] if fatal
else t
.get('File')
227 thumbnail
= t
.get('AlbumCoverURL') or t
.get('FiledAlbumCover')
228 uploader
= t
.get('OwnerName') or t
.get('OwnerName_Text_HTML')
229 uploader_id
= t
.get('UploaderID')
230 duration
= int_or_none(t
.get('DurationInSeconds')) or parse_duration(
231 t
.get('Duration') or t
.get('DurationStr'))
232 view_count
= int_or_none(t
.get('PlayCount') or t
.get('PlayCount_hr'))
234 track
= t
.get('Name') or t
.get('Name_Text_HTML')
235 artist
= t
.get('Author') or t
.get('Author_Text_HTML')
238 title
= f
'{artist} - {track}' if artist
else track
243 'extractor_key': MailRuMusicIE
.ie_key(),
246 'thumbnail': thumbnail
,
247 'uploader': uploader
,
248 'uploader_id': uploader_id
,
249 'duration': duration
,
250 'view_count': view_count
,
252 'abr': int_or_none(t
.get('BitRate')),
255 'album': t
.get('Album'),
260 class MailRuMusicIE(MailRuMusicSearchBaseIE
):
261 IE_NAME
= 'mailru:music'
262 IE_DESC
= 'Музыка@Mail.Ru'
263 _VALID_URL
= r
'https?://my\.mail\.ru/+music/+songs/+[^/?#&]+-(?P<id>[\da-f]+)'
265 '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',
266 'md5': '0f8c22ef8c5d665b13ac709e63025610',
268 'id': '4e31f7125d0dfaef505d947642366893',
270 'title': 'L.A.H. (Luciferian Aesthetics of Herrschaft) single, 2017 - М8Л8ТХ',
271 'uploader': 'Игорь Мудрый',
272 'uploader_id': '1459196328',
277 'track': 'L.A.H. (Luciferian Aesthetics of Herrschaft) single, 2017',
282 def _real_extract(self
, url
):
283 audio_id
= self
._match
_id
(url
)
285 webpage
= self
._download
_webpage
(url
, audio_id
)
287 title
= self
._og
_search
_title
(webpage
)
288 music_data
= self
._search
(title
, url
, audio_id
)['MusicData']
289 t
= next(t
for t
in music_data
if t
.get('File') == audio_id
)
291 info
= self
._extract
_track
(t
)
292 info
['title'] = title
296 class MailRuMusicSearchIE(MailRuMusicSearchBaseIE
):
297 IE_NAME
= 'mailru:music:search'
298 IE_DESC
= 'Музыка@Mail.Ru'
299 _VALID_URL
= r
'https?://my\.mail\.ru/+music/+search/+(?P<id>[^/?#&]+)'
301 'url': 'https://my.mail.ru/music/search/black%20shadow',
303 'id': 'black shadow',
305 'playlist_mincount': 532,
308 def _real_extract(self
, url
):
309 query
= urllib
.parse
.unquote(self
._match
_id
(url
))
316 for _
in itertools
.count(1):
317 search
= self
._search
(query
, url
, query
, LIMIT
, offset
)
319 music_data
= search
.get('MusicData')
320 if not music_data
or not isinstance(music_data
, list):
324 track
= self
._extract
_track
(t
, fatal
=False)
326 entries
.append(track
)
329 search
, lambda x
: x
['Results']['music']['Total'], int)
331 if total
is not None:
337 return self
.playlist_result(entries
, query
)