]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/qqmusic.py
Merge pull request #5891 from ping/qqmusic-toplist-fix
[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,
12)
8afff9f8 13from ..compat import compat_urllib_request
5d98908b 14
5d98908b
YCH
15
16class QQMusicIE(InfoExtractor):
7ec676bb 17 IE_NAME = 'qqmusic'
5d98908b
YCH
18 _VALID_URL = r'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
19 _TESTS = [{
20 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
21 'md5': 'bed90b6db2a7a7a7e11bc585f471f63a',
22 'info_dict': {
23 'id': '004295Et37taLD',
24 'ext': 'm4a',
25 'title': '可惜没如果',
26 'upload_date': '20141227',
27 'creator': '林俊杰',
b813d8ca 28 'description': 'md5:d327722d0361576fde558f1ac68a7065',
5d98908b
YCH
29 }
30 }]
31
a2043572
YCH
32 # Reference: m_r_GetRUin() in top_player.js
33 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
34 @staticmethod
35 def m_r_get_ruin():
36 curMs = int(time.time() * 1000) % 1000
37 return int(round(random.random() * 2147483647) * curMs % 1E10)
38
5d98908b
YCH
39 def _real_extract(self, url):
40 mid = self._match_id(url)
41
42 detail_info_page = self._download_webpage(
43 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid,
8afff9f8 44 mid, note='Download song detail info',
c9a77969 45 errnote='Unable to get song detail info', encoding='gbk')
5d98908b
YCH
46
47 song_name = self._html_search_regex(
48 r"songname:\s*'([^']+)'", detail_info_page, 'song name')
49
50 publish_time = self._html_search_regex(
51 r'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page,
a685ae51
YCH
52 'publish time', default=None)
53 if publish_time:
54 publish_time = publish_time.replace('-', '')
5d98908b
YCH
55
56 singer = self._html_search_regex(
a685ae51
YCH
57 r"singer:\s*'([^']+)", detail_info_page, 'singer', default=None)
58
59 lrc_content = self._html_search_regex(
60 r'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
61 detail_info_page, 'LRC lyrics', default=None)
b813d8ca
YCH
62 if lrc_content:
63 lrc_content = lrc_content.replace('\\n', '\n')
5d98908b 64
a2043572
YCH
65 guid = self.m_r_get_ruin()
66
5d98908b
YCH
67 vkey = self._download_json(
68 'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid,
69 mid, note='Retrieve vkey', errnote='Unable to get vkey',
70 transform_source=strip_jsonp)['key']
71 song_url = 'http://cc.stream.qqmusic.qq.com/C200%s.m4a?vkey=%s&guid=%s&fromtag=0' % (mid, vkey, guid)
72
73 return {
74 'id': mid,
75 'url': song_url,
76 'title': song_name,
77 'upload_date': publish_time,
78 'creator': singer,
a685ae51 79 'description': lrc_content,
5d98908b 80 }
8afff9f8
YCH
81
82
5edea45f
YCH
83class QQPlaylistBaseIE(InfoExtractor):
84 @staticmethod
85 def qq_static_url(category, mid):
86 return 'http://y.qq.com/y/static/%s/%s/%s/%s.html' % (category, mid[-2], mid[-1], mid)
87
5edea45f
YCH
88 @classmethod
89 def get_entries_from_page(cls, page):
90 entries = []
91
92 for item in re.findall(r'class="data"[^<>]*>([^<>]+)</', page):
93 song_mid = unescapeHTML(item).split('|')[-5]
94 entries.append(cls.url_result(
a685ae51
YCH
95 'http://y.qq.com/#type=song&mid=' + song_mid, 'QQMusic',
96 song_mid))
5edea45f
YCH
97
98 return entries
99
100
101class QQMusicSingerIE(QQPlaylistBaseIE):
7ec676bb 102 IE_NAME = 'qqmusic:singer'
8afff9f8
YCH
103 _VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
104 _TEST = {
105 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
106 'info_dict': {
107 'id': '001BLpXF2DyJe2',
108 'title': '林俊杰',
109 'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
110 },
111 'playlist_count': 12,
112 }
113
114 def _real_extract(self, url):
115 mid = self._match_id(url)
116
117 singer_page = self._download_webpage(
5edea45f 118 self.qq_static_url('singer', mid), mid, 'Download singer page')
8afff9f8 119
5edea45f 120 entries = self.get_entries_from_page(singer_page)
8afff9f8
YCH
121
122 singer_name = self._html_search_regex(
123 r"singername\s*:\s*'([^']+)'", singer_page, 'singer name',
124 default=None)
125
126 singer_id = self._html_search_regex(
127 r"singerid\s*:\s*'([0-9]+)'", singer_page, 'singer id',
128 default=None)
129
130 singer_desc = None
131
132 if singer_id:
133 req = compat_urllib_request.Request(
134 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_get_singer_desc.fcg?utf8=1&outCharset=utf-8&format=xml&singerid=%s' % singer_id)
135 req.add_header(
136 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
137 singer_desc_page = self._download_xml(
5edea45f 138 req, mid, 'Donwload singer description XML')
8afff9f8
YCH
139
140 singer_desc = singer_desc_page.find('./data/info/desc').text
141
142 return self.playlist_result(entries, mid, singer_name, singer_desc)
5edea45f
YCH
143
144
145class QQMusicAlbumIE(QQPlaylistBaseIE):
7ec676bb 146 IE_NAME = 'qqmusic:album'
5edea45f
YCH
147 _VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
148
149 _TEST = {
150 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1&play=0',
151 'info_dict': {
152 'id': '000gXCTb2AhRR1',
153 'title': '我们都是这样长大的',
154 'description': 'md5:d216c55a2d4b3537fe4415b8767d74d6',
155 },
156 'playlist_count': 4,
157 }
158
159 def _real_extract(self, url):
160 mid = self._match_id(url)
161
162 album_page = self._download_webpage(
163 self.qq_static_url('album', mid), mid, 'Download album page')
164
165 entries = self.get_entries_from_page(album_page)
166
167 album_name = self._html_search_regex(
168 r"albumname\s*:\s*'([^']+)',", album_page, 'album name',
169 default=None)
170
171 album_detail = self._html_search_regex(
172 r'<div class="album_detail close_detail">\s*<p>((?:[^<>]+(?:<br />)?)+)</p>',
173 album_page, 'album details', default=None)
174
175 return self.playlist_result(entries, mid, album_name, album_detail)
41333b97 176
177
178class QQMusicToplistIE(QQPlaylistBaseIE):
7ec676bb 179 IE_NAME = 'qqmusic:toplist'
41333b97 180 _VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
54889739 181
41333b97 182 _TESTS = [{
eedda32e 183 'url': 'http://y.qq.com/#type=toplist&p=global_123',
41333b97 184 'info_dict': {
eedda32e 185 'id': 'global_123',
186 'title': '美国iTunes榜',
41333b97 187 },
188 'playlist_count': 10,
189 }, {
eedda32e 190 'url': 'http://y.qq.com/#type=toplist&p=top_3',
41333b97 191 'info_dict': {
eedda32e 192 'id': 'top_3',
41333b97 193 'title': 'QQ音乐巅峰榜·欧美',
eedda32e 194 'description': 'QQ音乐巅峰榜·欧美根据用户收听行为自动生成,集结当下最流行的欧美新歌!:更新时间:每周四22点|统'
195 '计周期:一周(上周四至本周三)|统计对象:三个月内发行的欧美歌曲|统计数量:100首|统计算法:根据'
196 '歌曲在一周内的有效播放次数,由高到低取前100名(同一歌手最多允许5首歌曲同时上榜)|有效播放次数:'
197 '登录用户完整播放一首歌曲,记为一次有效播放;同一用户收听同一首歌曲,每天记录为1次有效播放'
41333b97 198 },
199 'playlist_count': 100,
fd4eefed 200 }, {
eedda32e 201 'url': 'http://y.qq.com/#type=toplist&p=global_106',
fd4eefed 202 'info_dict': {
eedda32e 203 'id': 'global_106',
204 'title': '韩国Mnet榜',
fd4eefed 205 },
206 'playlist_count': 50,
41333b97 207 }]
208
41333b97 209 def _real_extract(self, url):
210 list_id = self._match_id(url)
211
29ea5728 212 list_type, num_id = list_id.split("_")
41333b97 213
29ea5728 214 toplist_json = self._download_json(
eedda32e 215 'http://i.y.qq.com/v8/fcg-bin/fcg_v8_toplist_cp.fcg?type=%s&topid=%s&format=json'
216 % (list_type, num_id),
217 list_id, 'Download toplist page')
41333b97 218
eedda32e 219 entries = [
220 self.url_result(
221 'http://y.qq.com/#type=song&mid=' + song['data']['songmid'], 'QQMusic', song['data']['songmid']
222 ) for song in toplist_json['songlist']
223 ]
41333b97 224
eedda32e 225 list_name = toplist_json['topinfo']['ListName']
226 list_description = toplist_json['topinfo']['info']
227 return self.playlist_result(entries, list_id, list_name, list_description)