qqmusic.py 8.1 KB

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