]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/qqmusic.py
2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
18 class QQMusicIE(InfoExtractor
):
21 _VALID_URL
= r
'https?://y.qq.com/#type=song&mid=(?P<id>[0-9A-Za-z]+)'
23 'url': 'http://y.qq.com/#type=song&mid=004295Et37taLD',
24 'md5': '9ce1c1c8445f561506d2e3cfb0255705',
26 'id': '004295Et37taLD',
29 'release_date': '20141227',
31 'description': 'md5:d327722d0361576fde558f1ac68a7065',
32 'thumbnail': 're:^https?://.*\.jpg$',
35 'note': 'There is no mp3-320 version of this song.',
36 'url': 'http://y.qq.com/#type=song&mid=004MsGEo3DdNxV',
37 'md5': 'fa3926f0c585cda0af8fa4f796482e3e',
39 'id': '004MsGEo3DdNxV',
42 'release_date': '20050626',
44 'description': 'md5:46857d5ed62bc4ba84607a805dccf437',
45 'thumbnail': 're:^https?://.*\.jpg$',
48 'note': 'lyrics not in .lrc format',
49 'url': 'http://y.qq.com/#type=song&mid=001JyApY11tIp6',
51 'id': '001JyApY11tIp6',
53 'title': 'Shadows Over Transylvania',
54 'release_date': '19970225',
55 'creator': 'Dark Funeral',
56 'description': 'md5:ed14d5bd7ecec19609108052c25b2c11',
57 'thumbnail': 're:^https?://.*\.jpg$',
60 'skip_download': True,
65 'mp3-320': {'prefix': 'M800', 'ext': 'mp3', 'preference': 40, 'abr': 320},
66 'mp3-128': {'prefix': 'M500', 'ext': 'mp3', 'preference': 30, 'abr': 128},
67 'm4a': {'prefix': 'C200', 'ext': 'm4a', 'preference': 10}
70 # Reference: m_r_GetRUin() in top_player.js
71 # http://imgcache.gtimg.cn/music/portal_v3/y/top_player.js
74 curMs
= int(time
.time() * 1000) % 1000
75 return int(round(random
.random() * 2147483647) * curMs
% 1E10
)
77 def _real_extract(self
, url
):
78 mid
= self
._match
_id
(url
)
80 detail_info_page
= self
._download
_webpage
(
81 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_yqq_song_detail_info.fcg?songmid=%s&play=0' % mid
,
82 mid
, note
='Download song detail info',
83 errnote
='Unable to get song detail info', encoding
='gbk')
85 song_name
= self
._html
_search
_regex
(
86 r
"songname:\s*'([^']+)'", detail_info_page
, 'song name')
88 publish_time
= self
._html
_search
_regex
(
89 r
'发行时间:(\d{4}-\d{2}-\d{2})', detail_info_page
,
90 'publish time', default
=None)
92 publish_time
= publish_time
.replace('-', '')
94 singer
= self
._html
_search
_regex
(
95 r
"singer:\s*'([^']+)", detail_info_page
, 'singer', default
=None)
97 lrc_content
= self
._html
_search
_regex
(
98 r
'<div class="content" id="lrc_content"[^<>]*>([^<>]+)</div>',
99 detail_info_page
, 'LRC lyrics', default
=None)
101 lrc_content
= lrc_content
.replace('\\n', '\n')
104 albummid
= self
._search
_regex
(
105 [r
'albummid:\'([0-9a
-zA
-Z
]+)\'', r'"albummid":"([0-9a-zA-Z]+)"'],
106 detail_info_page, 'album mid
', default=None)
108 thumbnail_url = "http://i.gtimg.cn/music/photo/mid_album_500/%s/%s/%s.jpg" \
109 % (albummid[-2:-1], albummid[-1], albummid)
111 guid = self.m_r_get_ruin()
113 vkey = self._download_json(
114 'http
://base
.music
.qq
.com
/fcgi
-bin
/fcg_musicexpress
.fcg?json
=3&guid
=%s' % guid,
115 mid, note='Retrieve vkey
', errnote='Unable to get vkey
',
116 transform_source=strip_jsonp)['key
']
119 for format_id, details in self._FORMATS.items():
121 'url
': 'http
://cc
.stream
.qqmusic
.qq
.com
/%s%s.%s?vkey
=%s&guid
=%s&fromtag
=0'
122 % (details['prefix
'], mid, details['ext
'], vkey, guid),
124 'format_id
': format_id,
125 'preference
': details['preference
'],
126 'abr
': details.get('abr
'),
128 self._check_formats(formats, mid)
129 self._sort_formats(formats)
131 actual_lrc_lyrics = ''.join(
132 line + '\n' for line in re.findall(
133 r'(?m
)^
(\
[[0-9]{2}
:[0-9]{2}
(?
:\
.[0-9]{2,})?\
][^
\n]*|\
[[^\
]]*\
])', lrc_content))
139 'release_date
': publish_time,
141 'description
': lrc_content,
142 'thumbnail
': thumbnail_url
144 if actual_lrc_lyrics:
145 info_dict['subtitles
'] = {
148 'data
': actual_lrc_lyrics,
154 class QQPlaylistBaseIE(InfoExtractor):
156 def qq_static_url(category, mid):
157 return 'http
://y
.qq
.com
/y
/static
/%s/%s/%s/%s.html
' % (category, mid[-2], mid[-1], mid)
160 def get_entries_from_page(cls, page):
163 for item in re.findall(r'class="data"[^
<>]*>([^
<>]+)</', page):
164 song_mid = unescapeHTML(item).split('|
')[-5]
165 entries.append(cls.url_result(
166 'http
://y
.qq
.com
/#type=song&mid=' + song_mid, 'QQMusic',
172 class QQMusicSingerIE(QQPlaylistBaseIE
):
173 IE_NAME
= 'qqmusic:singer'
174 IE_DESC
= 'QQ音乐 - 歌手'
175 _VALID_URL
= r
'https?://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
177 'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
179 'id': '001BLpXF2DyJe2',
181 'description': 'md5:870ec08f7d8547c29c93010899103751',
183 'playlist_count': 12,
186 def _real_extract(self
, url
):
187 mid
= self
._match
_id
(url
)
189 singer_page
= self
._download
_webpage
(
190 self
.qq_static_url('singer', mid
), mid
, 'Download singer page')
192 entries
= self
.get_entries_from_page(singer_page
)
194 singer_name
= self
._html
_search
_regex
(
195 r
"singername\s*:\s*'([^']+)'", singer_page
, 'singer name',
198 singer_id
= self
._html
_search
_regex
(
199 r
"singerid\s*:\s*'([0-9]+)'", singer_page
, 'singer id',
205 req
= sanitized_Request(
206 'http://s.plcloud.music.qq.com/fcgi-bin/fcg_get_singer_desc.fcg?utf8=1&outCharset=utf-8&format=xml&singerid=%s' % singer_id
)
208 'Referer', 'http://s.plcloud.music.qq.com/xhr_proxy_utf8.html')
209 singer_desc_page
= self
._download
_xml
(
210 req
, mid
, 'Donwload singer description XML')
212 singer_desc
= singer_desc_page
.find('./data/info/desc').text
214 return self
.playlist_result(entries
, mid
, singer_name
, singer_desc
)
217 class QQMusicAlbumIE(QQPlaylistBaseIE
):
218 IE_NAME
= 'qqmusic:album'
219 IE_DESC
= 'QQ音乐 - 专辑'
220 _VALID_URL
= r
'https?://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
223 'url': 'http://y.qq.com/#type=album&mid=000gXCTb2AhRR1',
225 'id': '000gXCTb2AhRR1',
226 'title': '我们都是这样长大的',
227 'description': 'md5:179c5dce203a5931970d306aa9607ea6',
231 'url': 'http://y.qq.com/#type=album&mid=002Y5a3b3AlCu3',
233 'id': '002Y5a3b3AlCu3',
235 'description': 'md5:a48823755615508a95080e81b51ba729',
240 def _real_extract(self
, url
):
241 mid
= self
._match
_id
(url
)
243 album
= self
._download
_json
(
244 'http://i.y.qq.com/v8/fcg-bin/fcg_v8_album_info_cp.fcg?albummid=%s&format=json' % mid
,
245 mid
, 'Download album page')['data']
249 'http://y.qq.com/#type=song&mid=' + song
['songmid'], 'QQMusic', song
['songmid']
250 ) for song
in album
['list']
252 album_name
= album
.get('name')
253 album_detail
= album
.get('desc')
254 if album_detail
is not None:
255 album_detail
= album_detail
.strip()
257 return self
.playlist_result(entries
, mid
, album_name
, album_detail
)
260 class QQMusicToplistIE(QQPlaylistBaseIE
):
261 IE_NAME
= 'qqmusic:toplist'
262 IE_DESC
= 'QQ音乐 - 排行榜'
263 _VALID_URL
= r
'https?://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
266 'url': 'http://y.qq.com/#type=toplist&p=global_123',
269 'title': '美国iTunes榜',
271 'playlist_count': 10,
273 'url': 'http://y.qq.com/#type=toplist&p=top_3',
277 'description': 'QQ音乐巅峰榜·欧美根据用户收听行为自动生成,集结当下最流行的欧美新歌!:更新时间:每周四22点|统'
278 '计周期:一周(上周四至本周三)|统计对象:三个月内发行的欧美歌曲|统计数量:100首|统计算法:根据'
279 '歌曲在一周内的有效播放次数,由高到低取前100名(同一歌手最多允许5首歌曲同时上榜)|有效播放次数:'
280 '登录用户完整播放一首歌曲,记为一次有效播放;同一用户收听同一首歌曲,每天记录为1次有效播放'
282 'playlist_count': 100,
284 'url': 'http://y.qq.com/#type=toplist&p=global_106',
289 'playlist_count': 50,
292 def _real_extract(self
, url
):
293 list_id
= self
._match
_id
(url
)
295 list_type
, num_id
= list_id
.split("_")
297 toplist_json
= self
._download
_json
(
298 'http://i.y.qq.com/v8/fcg-bin/fcg_v8_toplist_cp.fcg?type=%s&topid=%s&format=json'
299 % (list_type
, num_id
),
300 list_id
, 'Download toplist page')
304 'http://y.qq.com/#type=song&mid=' + song
['data']['songmid'], 'QQMusic', song
['data']['songmid']
305 ) for song
in toplist_json
['songlist']
308 topinfo
= toplist_json
.get('topinfo', {})
309 list_name
= topinfo
.get('ListName')
310 list_description
= topinfo
.get('info')
311 return self
.playlist_result(entries
, list_id
, list_name
, list_description
)
314 class QQMusicPlaylistIE(QQPlaylistBaseIE
):
315 IE_NAME
= 'qqmusic:playlist'
316 IE_DESC
= 'QQ音乐 - 歌单'
317 _VALID_URL
= r
'https?://y\.qq\.com/#type=taoge&id=(?P<id>[0-9]+)'
320 'url': 'http://y.qq.com/#type=taoge&id=3462654915',
323 'title': '韩国5月新歌精选下旬',
324 'description': 'md5:d2c9d758a96b9888cf4fe82f603121d4',
326 'playlist_count': 40,
327 'skip': 'playlist gone',
329 'url': 'http://y.qq.com/#type=taoge&id=1374105607',
332 'title': '易入人心的华语民谣',
333 'description': '民谣的歌曲易于传唱、、歌词朗朗伤口、旋律简单温馨。属于那种才入耳孔。却上心头的感觉。没有太多的复杂情绪。简单而直接地表达乐者的情绪,就是这样的简单才易入人心。',
335 'playlist_count': 20,
338 def _real_extract(self
, url
):
339 list_id
= self
._match
_id
(url
)
341 list_json
= self
._download
_json
(
342 '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'
343 % list_id
, list_id
, 'Download list page',
344 transform_source
=strip_jsonp
)
345 if not len(list_json
.get('cdlist', [])):
346 if list_json
.get('code'):
347 raise ExtractorError(
348 'QQ Music said: error %d in fetching playlist info' % list_json
['code'],
350 raise ExtractorError('Unable to get playlist info')
352 cdlist
= list_json
['cdlist'][0]
355 'http://y.qq.com/#type=song&mid=' + song
['songmid'], 'QQMusic', song
['songmid']
356 ) for song
in cdlist
['songlist']
359 list_name
= cdlist
.get('dissname')
360 list_description
= clean_html(unescapeHTML(cdlist
.get('desc')))
361 return self
.playlist_result(entries
, list_id
, list_name
, list_description
)