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.

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