]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/qqmusic.py
2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
13 from ..compat
import compat_urllib_request
16 class QQMusicIE(InfoExtractor
):
18 _VALID_URL
= r
'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
20 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
21 'md5': 'bed90b6db2a7a7a7e11bc585f471f63a',
23 'id': '004295Et37taLD',
26 'upload_date': '20141227',
28 'description': 'md5:d327722d0361576fde558f1ac68a7065',
32 # Reference: m_r_GetRUin() in top_player.js
33 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
36 curMs
= int(time
.time() * 1000) % 1000
37 return int(round(random
.random() * 2147483647) * curMs
% 1E10
)
39 def _real_extract(self
, url
):
40 mid
= self
._match
_id
(url
)
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
,
44 mid
, note
='Download song detail info',
45 errnote
='Unable to get song detail info', encoding
='gbk')
47 song_name
= self
._html
_search
_regex
(
48 r
"songname:\s*'([^']+)'", detail_info_page
, 'song name')
50 publish_time
= self
._html
_search
_regex
(
51 r
'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page
,
52 'publish time', default
=None)
54 publish_time
= publish_time
.replace('-', '')
56 singer
= self
._html
_search
_regex
(
57 r
"singer:\s*'([^']+)", detail_info_page
, 'singer', default
=None)
59 lrc_content
= self
._html
_search
_regex
(
60 r
'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
61 detail_info_page
, 'LRC lyrics', default
=None)
63 lrc_content
= lrc_content
.replace('\\n', '\n')
65 guid
= self
.m_r_get_ruin()
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
)
77 'upload_date': publish_time
,
79 'description': lrc_content
,
83 class QQPlaylistBaseIE(InfoExtractor
):
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
)
89 def get_entries_from_page(cls
, page
):
92 for item
in re
.findall(r
'class="data"[^<>]*>([^<>]+)</', page
):
93 song_mid
= unescapeHTML(item
).split('|')[-5]
94 entries
.append(cls
.url_result(
95 'http://y.qq.com/#type=song&mid=' + song_mid
, 'QQMusic',
101 class QQMusicSingerIE(QQPlaylistBaseIE
):
102 IE_NAME
= 'qqmusic:singer'
103 _VALID_URL
= r
'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
105 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
107 'id': '001BLpXF2DyJe2',
109 'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
111 'playlist_count': 12,
114 def _real_extract(self
, url
):
115 mid
= self
._match
_id
(url
)
117 singer_page
= self
._download
_webpage
(
118 self
.qq_static_url('singer', mid
), mid
, 'Download singer page')
120 entries
= self
.get_entries_from_page(singer_page
)
122 singer_name
= self
._html
_search
_regex
(
123 r
"singername\s*:\s*'([^']+)'", singer_page
, 'singer name',
126 singer_id
= self
._html
_search
_regex
(
127 r
"singerid\s*:\s*'([0-9]+)'", singer_page
, '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
)
136 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
137 singer_desc_page
= self
._download
_xml
(
138 req
, mid
, 'Donwload singer description XML')
140 singer_desc
= singer_desc_page
.find('./data/info/desc').text
142 return self
.playlist_result(entries
, mid
, singer_name
, singer_desc
)
145 class QQMusicAlbumIE(QQPlaylistBaseIE
):
146 IE_NAME
= 'qqmusic:album'
147 _VALID_URL
= r
'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
150 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1&play=0',
152 'id': '000gXCTb2AhRR1',
153 'title': '我们都是这样长大的',
154 'description': 'md5:d216c55a2d4b3537fe4415b8767d74d6',
159 def _real_extract(self
, url
):
160 mid
= self
._match
_id
(url
)
162 album_page
= self
._download
_webpage
(
163 self
.qq_static_url('album', mid
), mid
, 'Download album page')
165 entries
= self
.get_entries_from_page(album_page
)
167 album_name
= self
._html
_search
_regex
(
168 r
"albumname\s*:\s*'([^']+)',", album_page
, 'album name',
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)
175 return self
.playlist_result(entries
, mid
, album_name
, album_detail
)
178 class QQMusicToplistIE(QQPlaylistBaseIE
):
179 IE_NAME
= 'qqmusic:toplist'
180 _VALID_URL
= r
'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
183 'url': 'http://y.qq.com/#type=toplist&p=global_123',
186 'title': '美国iTunes榜',
188 'playlist_count': 10,
190 'url': 'http://y.qq.com/#type=toplist&p=top_3',
193 'title': 'QQ音乐巅峰榜·欧美',
194 'description': 'QQ音乐巅峰榜·欧美根据用户收听行为自动生成,集结当下最流行的欧美新歌!:更新时间:每周四22点|统'
195 '计周期:一周(上周四至本周三)|统计对象:三个月内发行的欧美歌曲|统计数量:100首|统计算法:根据'
196 '歌曲在一周内的有效播放次数,由高到低取前100名(同一歌手最多允许5首歌曲同时上榜)|有效播放次数:'
197 '登录用户完整播放一首歌曲,记为一次有效播放;同一用户收听同一首歌曲,每天记录为1次有效播放'
199 'playlist_count': 100,
201 'url': 'http://y.qq.com/#type=toplist&p=global_106',
206 'playlist_count': 50,
209 def _real_extract(self
, url
):
210 list_id
= self
._match
_id
(url
)
212 list_type
, num_id
= list_id
.split("_")
214 toplist_json
= self
._download
_json
(
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')
221 'http://y.qq.com/#type=song&mid=' + song
['data']['songmid'], 'QQMusic', song
['data']['songmid']
222 ) for song
in toplist_json
['songlist']
225 topinfo
= toplist_json
.get('topinfo', {})
226 list_name
= topinfo
.get('ListName')
227 list_description
= topinfo
.get('info')
228 return self
.playlist_result(entries
, list_id
, list_name
, list_description
)