You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

312 lines
11 KiB

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