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.

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