]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/qqmusic.py
2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
14 from ..compat
import compat_urllib_request
17 class QQMusicIE(InfoExtractor
):
19 _VALID_URL
= r
'http://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
21 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
22 'md5': 'bed90b6db2a7a7a7e11bc585f471f63a',
24 'id': '004295Et37taLD',
27 'upload_date': '20141227',
29 'description': 'md5:4348ff1dd24036906baa7b6f973f8d30',
33 # Reference: m_r_GetRUin() in top_player.js
34 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
37 curMs
= int(time
.time() * 1000) % 1000
38 return int(round(random
.random() * 2147483647) * curMs
% 1E10
)
40 def _real_extract(self
, url
):
41 mid
= self
._match
_id
(url
)
43 detail_info_page
= self
._download
_webpage
(
44 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid
,
45 mid
, note
='Download song detail info',
46 errnote
='Unable to get song detail info', encoding
='gbk')
48 song_name
= self
._html
_search
_regex
(
49 r
"songname:\s*'([^']+)'", detail_info_page
, 'song name')
51 publish_time
= self
._html
_search
_regex
(
52 r
'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page
,
53 'publish time', default
=None)
55 publish_time
= publish_time
.replace('-', '')
57 singer
= self
._html
_search
_regex
(
58 r
"singer:\s*'([^']+)", detail_info_page
, 'singer', default
=None)
60 lrc_content
= self
._html
_search
_regex
(
61 r
'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
62 detail_info_page
, 'LRC lyrics', default
=None)
64 guid
= self
.m_r_get_ruin()
66 vkey
= self
._download
_json
(
67 'http://base.music.qq.com/fcgi-bin/fcg_musicexpress.fcg?json=3&guid=%s' % guid
,
68 mid
, note
='Retrieve vkey', errnote
='Unable to get vkey',
69 transform_source
=strip_jsonp
)['key']
70 song_url
= 'http://cc.stream.qqmusic.qq.com/C200%s.m4a?vkey=%s&guid=%s&fromtag=0' % (mid
, vkey
, guid
)
76 'upload_date': publish_time
,
78 'description': lrc_content
,
82 class QQPlaylistBaseIE(InfoExtractor
):
84 def qq_static_url(category
, mid
):
85 return 'http://y.qq.com/y/static/%s/%s/%s/%s.html' % (category
, mid
[-2], mid
[-1], mid
)
88 def get_entries_from_page(cls
, page
):
91 for item
in re
.findall(r
'class="data"[^<>]*>([^<>]+)</', page
):
92 song_mid
= unescapeHTML(item
).split('|')[-5]
93 entries
.append(cls
.url_result(
94 'http://y.qq.com/#type=song&mid=' + song_mid
, 'QQMusic',
100 class QQMusicSingerIE(QQPlaylistBaseIE
):
101 IE_NAME
= 'qqmusic:singer'
102 _VALID_URL
= r
'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
104 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
106 'id': '001BLpXF2DyJe2',
108 'description': 'md5:2a222d89ba4455a3af19940c0481bb78',
110 'playlist_count': 12,
113 def _real_extract(self
, url
):
114 mid
= self
._match
_id
(url
)
116 singer_page
= self
._download
_webpage
(
117 self
.qq_static_url('singer', mid
), mid
, 'Download singer page')
119 entries
= self
.get_entries_from_page(singer_page
)
121 singer_name
= self
._html
_search
_regex
(
122 r
"singername\s*:\s*'([^']+)'", singer_page
, 'singer name',
125 singer_id
= self
._html
_search
_regex
(
126 r
"singerid\s*:\s*'([0-9]+)'", singer_page
, 'singer id',
132 req
= compat_urllib_request
.Request(
133 '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 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
136 singer_desc_page
= self
._download
_xml
(
137 req
, mid
, 'Donwload singer description XML')
139 singer_desc
= singer_desc_page
.find('./data/info/desc').text
141 return self
.playlist_result(entries
, mid
, singer_name
, singer_desc
)
144 class QQMusicAlbumIE(QQPlaylistBaseIE
):
145 IE_NAME
= 'qqmusic:album'
146 _VALID_URL
= r
'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
149 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1&play=0',
151 'id': '000gXCTb2AhRR1',
152 'title': '我们都是这样长大的',
153 'description': 'md5:d216c55a2d4b3537fe4415b8767d74d6',
158 def _real_extract(self
, url
):
159 mid
= self
._match
_id
(url
)
161 album_page
= self
._download
_webpage
(
162 self
.qq_static_url('album', mid
), mid
, 'Download album page')
164 entries
= self
.get_entries_from_page(album_page
)
166 album_name
= self
._html
_search
_regex
(
167 r
"albumname\s*:\s*'([^']+)',", album_page
, 'album name',
170 album_detail
= self
._html
_search
_regex
(
171 r
'<div class="album_detail close_detail">\s*<p>((?:[^<>]+(?:<br />)?)+)</p>',
172 album_page
, 'album details', default
=None)
174 return self
.playlist_result(entries
, mid
, album_name
, album_detail
)
177 class QQMusicToplistIE(QQPlaylistBaseIE
):
178 IE_NAME
= 'qqmusic:toplist'
179 _VALID_URL
= r
'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
182 'url': 'http://y.qq.com/#type=toplist&p=global_12',
187 'playlist_count': 10,
189 'url': 'http://y.qq.com/#type=toplist&p=top_6',
192 'title': 'QQ音乐巅峰榜·欧美',
194 'playlist_count': 100,
196 'url': 'http://y.qq.com/#type=toplist&p=global_5',
199 'title': '韩国mnet排行榜',
201 'playlist_count': 50,
205 def strip_qq_jsonp(code
):
206 return js_to_json(re
.sub(r
'^MusicJsonCallback\((.*?)\)/\*.+?\*/$', r
'\1', code
))
208 def _real_extract(self
, url
):
209 list_id
= self
._match
_id
(url
)
211 list_type
, num_id
= list_id
.split("_")
213 list_page
= self
._download
_webpage
(
214 "http://y.qq.com/y/static/toplist/index/%s.html" % list_id
,
215 list_id
, 'Download toplist page')
218 if list_type
== 'top':
219 jsonp_url
= "http://y.qq.com/y/static/toplist/json/top/%s/1.js" % num_id
221 jsonp_url
= "http://y.qq.com/y/static/toplist/json/global/%s/1_1.js" % num_id
223 toplist_json
= self
._download
_json
(
224 jsonp_url
, list_id
, note
='Retrieve toplist json',
225 errnote
='Unable to get toplist json', transform_source
=self
.strip_qq_jsonp
)
227 for song
in toplist_json
['l']:
229 song_mid
= s
.split("|")[20]
230 entries
.append(self
.url_result(
231 'http://y.qq.com/#type=song&mid=' + song_mid
, 'QQMusic',
234 list_name
= self
._html
_search
_regex
(
235 r
'<h2 id="top_name">([^\']+)</h2
>', list_page, 'top
list name
',
238 return self.playlist_result(entries, list_id, list_name)