]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/qqmusic.py
[qqmusic] Do not capture braced text from the middle of the string
[yt-dlp.git] / youtube_dl / extractor / qqmusic.py
CommitLineData
5d98908b
YCH
1# coding: utf-8
2from __future__ import unicode_literals
3
a2043572
YCH
4import random
5import time
8afff9f8 6import re
a2043572 7
5d98908b 8from .common import InfoExtractor
5edea45f
YCH
9from ..utils import (
10 strip_jsonp,
11 unescapeHTML,
0d0d5d37 12 clean_html,
5edea45f 13)
8afff9f8 14from ..compat import compat_urllib_request
5d98908b 15
5d98908b
YCH
16
17class QQMusicIE(InfoExtractor):
7ec676bb 18 IE_NAME = 'qqmusic'
a7ada46b 19 IE_DESC = 'QQ音乐'
5d98908b
YCH
20 _VALID_URL = r'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
21 _TESTS = [{
22 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
55e5841f 23 'md5': '9ce1c1c8445f561506d2e3cfb0255705',
5d98908b
YCH
24 'info_dict': {
25 'id': '004295Et37taLD',
55e5841f 26 'ext': 'mp3',
5d98908b
YCH
27 'title': '可惜没如果',
28 'upload_date': '20141227',
29 'creator': '林俊杰',
b813d8ca 30 'description': 'md5:d327722d0361576fde558f1ac68a7065',
85a06486 31 'thumbnail': 're:^https?://.*\.jpg$',
5e3915cb 32 }
33 }, {
34 'note': 'There is no mp3-320 version of this song.',
35 'url': 'http://y.qq.com/#type=song&mid=004MsGEo3DdNxV',
36 'md5': 'fa3926f0c585cda0af8fa4f796482e3e',
37 'info_dict': {
38 'id': '004MsGEo3DdNxV',
39 'ext': 'mp3',
40 'title': '如果',
41 'upload_date': '20050626',
42 'creator': '李季美',
43 'description': 'md5:46857d5ed62bc4ba84607a805dccf437',
85a06486 44 'thumbnail': 're:^https?://.*\.jpg$',
5d98908b
YCH
45 }
46 }]
47
55e5841f 48 _FORMATS = {
8b8cde21 49 'mp3-320': {'prefix': 'M800', 'ext': 'mp3', 'preference': 40, 'abr': 320},
50 'mp3-128': {'prefix': 'M500', 'ext': 'mp3', 'preference': 30, 'abr': 128},
55e5841f 51 'm4a': {'prefix': 'C200', 'ext': 'm4a', 'preference': 10}
52 }
53
a2043572
YCH
54 # Reference: m_r_GetRUin() in top_player.js
55 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
56 @staticmethod
57 def m_r_get_ruin():
58 curMs = int(time.time() * 1000) % 1000
59 return int(round(random.random() * 2147483647) * curMs % 1E10)
60
5d98908b
YCH
61 def _real_extract(self, url):
62 mid = self._match_id(url)
63
64 detail_info_page = self._download_webpage(
65 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid,
8afff9f8 66 mid, note='Download song detail info',
c9a77969 67 errnote='Unable to get song detail info', encoding='gbk')
5d98908b
YCH
68
69 song_name = self._html_search_regex(
70 r"songname:\s*'([^']+)'", detail_info_page, 'song name')
71
72 publish_time = self._html_search_regex(
73 r'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page,
a685ae51
YCH
74 'publish time', default=None)
75 if publish_time:
76 publish_time = publish_time.replace('-', '')
5d98908b
YCH
77
78 singer = self._html_search_regex(
a685ae51
YCH
79 r"singer:\s*'([^']+)", detail_info_page, 'singer', default=None)
80
81 lrc_content = self._html_search_regex(
82 r'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
83 detail_info_page, 'LRC lyrics', default=None)
b813d8ca
YCH
84 if lrc_content:
85 lrc_content = lrc_content.replace('\\n', '\n')
5d98908b 86
5e3915cb 87 thumbnail_url = None
88 albummid = self._search_regex(
0392ac98 89 [r'albummid:\'([0-9a-zA-Z]+)\'', r'"albummid":"([0-9a-zA-Z]+)"'],
90 detail_info_page, 'album mid', default=None)
5e3915cb 91 if albummid:
92 thumbnail_url = "http://i.gtimg.cn/music/photo/mid_album_500/%s/%s/%s.jpg" \
93 % (albummid[-2:-1], albummid[-1], albummid)
94
a2043572
YCH
95 guid = self.m_r_get_ruin()
96
5d98908b
YCH
97 vkey = self._download_json(
98 'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid,
99 mid, note='Retrieve vkey', errnote='Unable to get vkey',
100 transform_source=strip_jsonp)['key']
55e5841f 101
102 formats = []
e8ac61e8 103 for format_id, details in self._FORMATS.items():
55e5841f 104 formats.append({
105 'url': 'http://cc.stream.qqmusic.qq.com/%s%s.%s?vkey=%s&guid=%s&fromtag=0'
e8ac61e8
YCH
106 % (details['prefix'], mid, details['ext'], vkey, guid),
107 'format': format_id,
108 'format_id': format_id,
109 'preference': details['preference'],
110 'abr': details.get('abr'),
55e5841f 111 })
4d58b24c 112 self._check_formats(formats, mid)
55e5841f 113 self._sort_formats(formats)
5d98908b 114
961c5cbf
S
115 actual_lrc_lyrics = ''.join(
116 line + '\n' for line in re.findall(
d4cd0613 117 r'(?m)^(\[[0-9]{2}:[0-9]{2}\.[0-9]{2,}\][^\n]*|\[[^\]]*\])', lrc_content))
b65e5bb7
QF
118
119 info_dict = {
5d98908b 120 'id': mid,
55e5841f 121 'formats': formats,
5d98908b
YCH
122 'title': song_name,
123 'upload_date': publish_time,
124 'creator': singer,
a685ae51 125 'description': lrc_content,
b65e5bb7 126 'thumbnail': thumbnail_url
5d98908b 127 }
b65e5bb7
QF
128 if actual_lrc_lyrics:
129 info_dict['subtitles'] = {
130 'origin': [{
131 'ext': 'lrc',
132 'data': actual_lrc_lyrics,
133 }]
134 }
135 return info_dict
8afff9f8
YCH
136
137
5edea45f
YCH
138class QQPlaylistBaseIE(InfoExtractor):
139 @staticmethod
140 def qq_static_url(category, mid):
141 return 'http://y.qq.com/y/static/%s/%s/%s/%s.html' % (category, mid[-2], mid[-1], mid)
142
5edea45f
YCH
143 @classmethod
144 def get_entries_from_page(cls, page):
145 entries = []
146
147 for item in re.findall(r'class="data"[^<>]*>([^<>]+)</', page):
148 song_mid = unescapeHTML(item).split('|')[-5]
149 entries.append(cls.url_result(
a685ae51
YCH
150 'http://y.qq.com/#type=song&mid=' + song_mid, 'QQMusic',
151 song_mid))
5edea45f
YCH
152
153 return entries
154
155
156class QQMusicSingerIE(QQPlaylistBaseIE):
7ec676bb 157 IE_NAME = 'qqmusic:singer'
181c4cca 158 IE_DESC = 'QQ音乐 - 歌手'
8afff9f8
YCH
159 _VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
160 _TEST = {
161 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
162 'info_dict': {
163 'id': '001BLpXF2DyJe2',
164 'title': '林俊杰',
165 'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
166 },
167 'playlist_count': 12,
168 }
169
170 def _real_extract(self, url):
171 mid = self._match_id(url)
172
173 singer_page = self._download_webpage(
5edea45f 174 self.qq_static_url('singer', mid), mid, 'Download singer page')
8afff9f8 175
5edea45f 176 entries = self.get_entries_from_page(singer_page)
8afff9f8
YCH
177
178 singer_name = self._html_search_regex(
179 r"singername\s*:\s*'([^']+)'", singer_page, 'singer name',
180 default=None)
181
182 singer_id = self._html_search_regex(
183 r"singerid\s*:\s*'([0-9]+)'", singer_page, 'singer id',
184 default=None)
185
186 singer_desc = None
187
188 if singer_id:
189 req = compat_urllib_request.Request(
190 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_get_singer_desc.fcg?utf8=1&outCharset=utf-8&format=xml&singerid=%s' % singer_id)
191 req.add_header(
192 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
193 singer_desc_page = self._download_xml(
5edea45f 194 req, mid, 'Donwload singer description XML')
8afff9f8
YCH
195
196 singer_desc = singer_desc_page.find('./data/info/desc').text
197
198 return self.playlist_result(entries, mid, singer_name, singer_desc)
5edea45f
YCH
199
200
201class QQMusicAlbumIE(QQPlaylistBaseIE):
7ec676bb 202 IE_NAME = 'qqmusic:album'
181c4cca 203 IE_DESC = 'QQ音乐 - 专辑'
5edea45f
YCH
204 _VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
205
29b809de 206 _TESTS = [{
207 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1',
5edea45f
YCH
208 'info_dict': {
209 'id': '000gXCTb2AhRR1',
210 'title': '我们都是这样长大的',
fc7ae675 211 'description': 'md5:179c5dce203a5931970d306aa9607ea6',
5edea45f
YCH
212 },
213 'playlist_count': 4,
29b809de 214 }, {
215 'url': 'http://y.qq.com/#type=album&mid=002Y5a3b3AlCu3',
216 'info_dict': {
217 'id': '002Y5a3b3AlCu3',
218 'title': '그리고...',
fc7ae675 219 'description': 'md5:a48823755615508a95080e81b51ba729',
29b809de 220 },
221 'playlist_count': 8,
222 }]
5edea45f
YCH
223
224 def _real_extract(self, url):
225 mid = self._match_id(url)
226
29b809de 227 album = self._download_json(
228 'http://i.y.qq.com/v8/fcg-bin/fcg_v8_album_info_cp.fcg?albummid=%s&format=json' % mid,
229 mid, 'Download album page')['data']
230
231 entries = [
232 self.url_result(
233 'http://y.qq.com/#type=song&mid=' + song['songmid'], 'QQMusic', song['songmid']
234 ) for song in album['list']
235 ]
dfc4eca2 236 album_name = album.get('name')
29b809de 237 album_detail = album.get('desc')
fc7ae675
YCH
238 if album_detail is not None:
239 album_detail = album_detail.strip()
5edea45f
YCH
240
241 return self.playlist_result(entries, mid, album_name, album_detail)
41333b97 242
243
244class QQMusicToplistIE(QQPlaylistBaseIE):
7ec676bb 245 IE_NAME = 'qqmusic:toplist'
181c4cca 246 IE_DESC = 'QQ音乐 - 排行榜'
41333b97 247 _VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
54889739 248
41333b97 249 _TESTS = [{
eedda32e 250 'url': 'http://y.qq.com/#type=toplist&p=global_123',
41333b97 251 'info_dict': {
eedda32e 252 'id': 'global_123',
253 'title': '美国iTunes榜',
41333b97 254 },
255 'playlist_count': 10,
256 }, {
eedda32e 257 'url': 'http://y.qq.com/#type=toplist&p=top_3',
41333b97 258 'info_dict': {
eedda32e 259 'id': 'top_3',
41333b97 260 'title': 'QQ音乐巅峰榜·欧美',
eedda32e 261 'description': 'QQ音乐巅峰榜·欧美根据用户收听行为自动生成,集结当下最流行的欧美新歌!:更新时间:每周四22点|统'
262 '计周期:一周(上周四至本周三)|统计对象:三个月内发行的欧美歌曲|统计数量:100首|统计算法:根据'
263 '歌曲在一周内的有效播放次数,由高到低取前100名(同一歌手最多允许5首歌曲同时上榜)|有效播放次数:'
264 '登录用户完整播放一首歌曲,记为一次有效播放;同一用户收听同一首歌曲,每天记录为1次有效播放'
41333b97 265 },
266 'playlist_count': 100,
fd4eefed 267 }, {
eedda32e 268 'url': 'http://y.qq.com/#type=toplist&p=global_106',
fd4eefed 269 'info_dict': {
eedda32e 270 'id': 'global_106',
271 'title': '韩国Mnet榜',
fd4eefed 272 },
273 'playlist_count': 50,
41333b97 274 }]
275
41333b97 276 def _real_extract(self, url):
277 list_id = self._match_id(url)
278
29ea5728 279 list_type, num_id = list_id.split("_")
41333b97 280
29ea5728 281 toplist_json = self._download_json(
eedda32e 282 'http://i.y.qq.com/v8/fcg-bin/fcg_v8_toplist_cp.fcg?type=%s&topid=%s&format=json'
283 % (list_type, num_id),
284 list_id, 'Download toplist page')
41333b97 285
eedda32e 286 entries = [
287 self.url_result(
288 'http://y.qq.com/#type=song&mid=' + song['data']['songmid'], 'QQMusic', song['data']['songmid']
289 ) for song in toplist_json['songlist']
290 ]
41333b97 291
9d4f213f
YCH
292 topinfo = toplist_json.get('topinfo', {})
293 list_name = topinfo.get('ListName')
294 list_description = topinfo.get('info')
eedda32e 295 return self.playlist_result(entries, list_id, list_name, list_description)
0d0d5d37 296
297
298class QQMusicPlaylistIE(QQPlaylistBaseIE):
299 IE_NAME = 'qqmusic:playlist'
181c4cca 300 IE_DESC = 'QQ音乐 - 歌单'
0d0d5d37 301 _VALID_URL = r'http://y\.qq\.com/#type=taoge&id=(?P<id>[0-9]+)'
302
303 _TEST = {
304 'url': 'http://y.qq.com/#type=taoge&id=3462654915',
305 'info_dict': {
306 'id': '3462654915',
307 'title': '韩国5月新歌精选下旬',
308 'description': 'md5:d2c9d758a96b9888cf4fe82f603121d4',
309 },
310 'playlist_count': 40,
311 }
312
313 def _real_extract(self, url):
314 list_id = self._match_id(url)
315
316 list_json = self._download_json(
317 'http://i.y.qq.com/qzone-music/fcg-bin/fcg_ucc_getcdinfo_byids_cp.fcg?type=1&json=1&utf8=1&onlysong=0&disstid=%s'
318 % list_id, list_id, 'Download list page',
319 transform_source=strip_jsonp)['cdlist'][0]
320
321 entries = [
322 self.url_result(
323 'http://y.qq.com/#type=song&mid=' + song['songmid'], 'QQMusic', song['songmid']
324 ) for song in list_json['songlist']
325 ]
326
e9d33454 327 list_name = list_json.get('dissname')
0d0d5d37 328 list_description = clean_html(unescapeHTML(list_json.get('desc')))
329 return self.playlist_result(entries, list_id, list_name, list_description)