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.

261 lines
9.7 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import hashlib
  4. import re
  5. from .common import InfoExtractor
  6. from ..compat import (
  7. compat_parse_qs,
  8. compat_urlparse,
  9. )
  10. from ..utils import (
  11. ExtractorError,
  12. int_or_none,
  13. float_or_none,
  14. parse_iso8601,
  15. smuggle_url,
  16. strip_jsonp,
  17. unified_timestamp,
  18. unsmuggle_url,
  19. urlencode_postdata,
  20. )
  21. class BiliBiliIE(InfoExtractor):
  22. _VALID_URL = r'https?://(?:www\.|bangumi\.|)bilibili\.(?:tv|com)/(?:video/av|anime/(?P<anime_id>\d+)/play#)(?P<id>\d+)'
  23. _TESTS = [{
  24. 'url': 'http://www.bilibili.tv/video/av1074402/',
  25. 'md5': '9fa226fe2b8a9a4d5a69b4c6a183417e',
  26. 'info_dict': {
  27. 'id': '1074402',
  28. 'ext': 'mp4',
  29. 'title': '【金坷垃】金泡沫',
  30. 'description': 'md5:ce18c2a2d2193f0df2917d270f2e5923',
  31. 'duration': 308.315,
  32. 'timestamp': 1398012660,
  33. 'upload_date': '20140420',
  34. 'thumbnail': r're:^https?://.+\.jpg',
  35. 'uploader': '菊子桑',
  36. 'uploader_id': '156160',
  37. },
  38. }, {
  39. # Tested in BiliBiliBangumiIE
  40. 'url': 'http://bangumi.bilibili.com/anime/1869/play#40062',
  41. 'only_matching': True,
  42. }, {
  43. 'url': 'http://bangumi.bilibili.com/anime/5802/play#100643',
  44. 'md5': '3f721ad1e75030cc06faf73587cfec57',
  45. 'info_dict': {
  46. 'id': '100643',
  47. 'ext': 'mp4',
  48. 'title': 'CHAOS;CHILD',
  49. 'description': '如果你是神明,并且能够让妄想成为现实。那你会进行怎么样的妄想?是淫靡的世界?独裁社会?毁灭性的制裁?还是……2015年,涩谷。从6年前发生的大灾害“涩谷地震”之后复兴了的这个街区里新设立的私立高中...',
  50. },
  51. 'skip': 'Geo-restricted to China',
  52. }, {
  53. # Title with double quotes
  54. 'url': 'http://www.bilibili.com/video/av8903802/',
  55. 'info_dict': {
  56. 'id': '8903802',
  57. 'ext': 'mp4',
  58. 'title': '阿滴英文|英文歌分享#6 "Closer',
  59. 'description': '滴妹今天唱Closer給你聽! 有史以来,被推最多次也是最久的歌曲,其实歌词跟我原本想像差蛮多的,不过还是好听! 微博@阿滴英文',
  60. 'uploader': '阿滴英文',
  61. 'uploader_id': '65880958',
  62. 'timestamp': 1488382620,
  63. 'upload_date': '20170301',
  64. },
  65. 'params': {
  66. 'skip_download': True, # Test metadata only
  67. },
  68. }]
  69. _APP_KEY = '84956560bc028eb7'
  70. _BILIBILI_KEY = '94aba54af9065f71de72f5508f1cd42e'
  71. def _report_error(self, result):
  72. if 'message' in result:
  73. raise ExtractorError('%s said: %s' % (self.IE_NAME, result['message']), expected=True)
  74. elif 'code' in result:
  75. raise ExtractorError('%s returns error %d' % (self.IE_NAME, result['code']), expected=True)
  76. else:
  77. raise ExtractorError('Can\'t extract Bangumi episode ID')
  78. def _real_extract(self, url):
  79. url, smuggled_data = unsmuggle_url(url, {})
  80. mobj = re.match(self._VALID_URL, url)
  81. video_id = mobj.group('id')
  82. anime_id = mobj.group('anime_id')
  83. webpage = self._download_webpage(url, video_id)
  84. if 'anime/' not in url:
  85. cid = compat_parse_qs(self._search_regex(
  86. [r'EmbedPlayer\([^)]+,\s*"([^"]+)"\)',
  87. r'<iframe[^>]+src="https://secure\.bilibili\.com/secure,([^"]+)"'],
  88. webpage, 'player parameters'))['cid'][0]
  89. else:
  90. if 'no_bangumi_tip' not in smuggled_data:
  91. self.to_screen('Downloading episode %s. To download all videos in anime %s, re-run youtube-dl with %s' % (
  92. video_id, anime_id, compat_urlparse.urljoin(url, '//bangumi.bilibili.com/anime/%s' % anime_id)))
  93. headers = {
  94. 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
  95. }
  96. headers.update(self.geo_verification_headers())
  97. js = self._download_json(
  98. 'http://bangumi.bilibili.com/web_api/get_source', video_id,
  99. data=urlencode_postdata({'episode_id': video_id}),
  100. headers=headers)
  101. if 'result' not in js:
  102. self._report_error(js)
  103. cid = js['result']['cid']
  104. payload = 'appkey=%s&cid=%s&otype=json&quality=2&type=mp4' % (self._APP_KEY, cid)
  105. sign = hashlib.md5((payload + self._BILIBILI_KEY).encode('utf-8')).hexdigest()
  106. video_info = self._download_json(
  107. 'http://interface.bilibili.com/playurl?%s&sign=%s' % (payload, sign),
  108. video_id, note='Downloading video info page',
  109. headers=self.geo_verification_headers())
  110. if 'durl' not in video_info:
  111. self._report_error(video_info)
  112. entries = []
  113. for idx, durl in enumerate(video_info['durl']):
  114. formats = [{
  115. 'url': durl['url'],
  116. 'filesize': int_or_none(durl['size']),
  117. }]
  118. for backup_url in durl.get('backup_url', []):
  119. formats.append({
  120. 'url': backup_url,
  121. # backup URLs have lower priorities
  122. 'preference': -2 if 'hd.mp4' in backup_url else -3,
  123. })
  124. for a_format in formats:
  125. a_format.setdefault('http_headers', {}).update({
  126. 'Referer': url,
  127. })
  128. self._sort_formats(formats)
  129. entries.append({
  130. 'id': '%s_part%s' % (video_id, idx),
  131. 'duration': float_or_none(durl.get('length'), 1000),
  132. 'formats': formats,
  133. })
  134. title = self._html_search_regex('<h1[^>]*>([^<]+)</h1>', webpage, 'title')
  135. description = self._html_search_meta('description', webpage)
  136. timestamp = unified_timestamp(self._html_search_regex(
  137. r'<time[^>]+datetime="([^"]+)"', webpage, 'upload time', default=None))
  138. thumbnail = self._html_search_meta(['og:image', 'thumbnailUrl'], webpage)
  139. # TODO 'view_count' requires deobfuscating Javascript
  140. info = {
  141. 'id': video_id,
  142. 'title': title,
  143. 'description': description,
  144. 'timestamp': timestamp,
  145. 'thumbnail': thumbnail,
  146. 'duration': float_or_none(video_info.get('timelength'), scale=1000),
  147. }
  148. uploader_mobj = re.search(
  149. r'<a[^>]+href="(?:https?:)?//space\.bilibili\.com/(?P<id>\d+)"[^>]+title="(?P<name>[^"]+)"',
  150. webpage)
  151. if uploader_mobj:
  152. info.update({
  153. 'uploader': uploader_mobj.group('name'),
  154. 'uploader_id': uploader_mobj.group('id'),
  155. })
  156. for entry in entries:
  157. entry.update(info)
  158. if len(entries) == 1:
  159. return entries[0]
  160. else:
  161. for idx, entry in enumerate(entries):
  162. entry['id'] = '%s_part%d' % (video_id, (idx + 1))
  163. return {
  164. '_type': 'multi_video',
  165. 'id': video_id,
  166. 'title': title,
  167. 'description': description,
  168. 'entries': entries,
  169. }
  170. class BiliBiliBangumiIE(InfoExtractor):
  171. _VALID_URL = r'https?://bangumi\.bilibili\.com/anime/(?P<id>\d+)'
  172. IE_NAME = 'bangumi.bilibili.com'
  173. IE_DESC = 'BiliBili番剧'
  174. _TESTS = [{
  175. 'url': 'http://bangumi.bilibili.com/anime/1869',
  176. 'info_dict': {
  177. 'id': '1869',
  178. 'title': '混沌武士',
  179. 'description': 'md5:6a9622b911565794c11f25f81d6a97d2',
  180. },
  181. 'playlist_count': 26,
  182. }, {
  183. 'url': 'http://bangumi.bilibili.com/anime/1869',
  184. 'info_dict': {
  185. 'id': '1869',
  186. 'title': '混沌武士',
  187. 'description': 'md5:6a9622b911565794c11f25f81d6a97d2',
  188. },
  189. 'playlist': [{
  190. 'md5': '91da8621454dd58316851c27c68b0c13',
  191. 'info_dict': {
  192. 'id': '40062',
  193. 'ext': 'mp4',
  194. 'title': '混沌武士',
  195. 'description': '故事发生在日本的江户时代。风是一个小酒馆的打工女。一日,酒馆里来了一群恶霸,虽然他们的举动令风十分不满,但是毕竟风只是一届女流,无法对他们采取什么行动,只能在心里嘟哝。这时,酒家里又进来了个“不良份子...',
  196. 'timestamp': 1414538739,
  197. 'upload_date': '20141028',
  198. 'episode': '疾风怒涛 Tempestuous Temperaments',
  199. 'episode_number': 1,
  200. },
  201. }],
  202. 'params': {
  203. 'playlist_items': '1',
  204. },
  205. }]
  206. @classmethod
  207. def suitable(cls, url):
  208. return False if BiliBiliIE.suitable(url) else super(BiliBiliBangumiIE, cls).suitable(url)
  209. def _real_extract(self, url):
  210. bangumi_id = self._match_id(url)
  211. # Sometimes this API returns a JSONP response
  212. season_info = self._download_json(
  213. 'http://bangumi.bilibili.com/jsonp/seasoninfo/%s.ver' % bangumi_id,
  214. bangumi_id, transform_source=strip_jsonp)['result']
  215. entries = [{
  216. '_type': 'url_transparent',
  217. 'url': smuggle_url(episode['webplay_url'], {'no_bangumi_tip': 1}),
  218. 'ie_key': BiliBiliIE.ie_key(),
  219. 'timestamp': parse_iso8601(episode.get('update_time'), delimiter=' '),
  220. 'episode': episode.get('index_title'),
  221. 'episode_number': int_or_none(episode.get('index')),
  222. } for episode in season_info['episodes']]
  223. entries = sorted(entries, key=lambda entry: entry.get('episode_number'))
  224. return self.playlist_result(
  225. entries, bangumi_id,
  226. season_info.get('bangumi_title'), season_info.get('evaluate'))