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.

308 lines
12 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': '5f7d29e1a2872f3df0cf76b1f87d3788',
  26. 'info_dict': {
  27. 'id': '1074402',
  28. 'ext': 'flv',
  29. 'title': '【金坷垃】金泡沫',
  30. 'description': 'md5:ce18c2a2d2193f0df2917d270f2e5923',
  31. 'duration': 308.067,
  32. 'timestamp': 1398012678,
  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. 'title': '阿滴英文|英文歌分享#6 "Closer',
  58. 'description': '滴妹今天唱Closer給你聽! 有史以来,被推最多次也是最久的歌曲,其实歌词跟我原本想像差蛮多的,不过还是好听! 微博@阿滴英文',
  59. },
  60. 'playlist': [{
  61. 'info_dict': {
  62. 'id': '8903802_part1',
  63. 'ext': 'flv',
  64. 'title': '阿滴英文|英文歌分享#6 "Closer',
  65. 'description': 'md5:3b1b9e25b78da4ef87e9b548b88ee76a',
  66. 'uploader': '阿滴英文',
  67. 'uploader_id': '65880958',
  68. 'timestamp': 1488382634,
  69. 'upload_date': '20170301',
  70. },
  71. 'params': {
  72. 'skip_download': True, # Test metadata only
  73. },
  74. }, {
  75. 'info_dict': {
  76. 'id': '8903802_part2',
  77. 'ext': 'flv',
  78. 'title': '阿滴英文|英文歌分享#6 "Closer',
  79. 'description': 'md5:3b1b9e25b78da4ef87e9b548b88ee76a',
  80. 'uploader': '阿滴英文',
  81. 'uploader_id': '65880958',
  82. 'timestamp': 1488382634,
  83. 'upload_date': '20170301',
  84. },
  85. 'params': {
  86. 'skip_download': True, # Test metadata only
  87. },
  88. }]
  89. }]
  90. _APP_KEY = 'iVGUTjsxvpLeuDCf'
  91. _BILIBILI_KEY = 'aHRmhWMLkdeMuILqORnYZocwMBpMEOdt'
  92. def _report_error(self, result):
  93. if 'message' in result:
  94. raise ExtractorError('%s said: %s' % (self.IE_NAME, result['message']), expected=True)
  95. elif 'code' in result:
  96. raise ExtractorError('%s returns error %d' % (self.IE_NAME, result['code']), expected=True)
  97. else:
  98. raise ExtractorError('Can\'t extract Bangumi episode ID')
  99. def _real_extract(self, url):
  100. url, smuggled_data = unsmuggle_url(url, {})
  101. mobj = re.match(self._VALID_URL, url)
  102. video_id = mobj.group('id')
  103. anime_id = mobj.group('anime_id')
  104. webpage = self._download_webpage(url, video_id)
  105. if 'anime/' not in url:
  106. cid = self._search_regex(
  107. r'\bcid(?:["\']:|=)(\d+)', webpage, 'cid',
  108. default=None
  109. ) or compat_parse_qs(self._search_regex(
  110. [r'EmbedPlayer\([^)]+,\s*"([^"]+)"\)',
  111. r'EmbedPlayer\([^)]+,\s*\\"([^"]+)\\"\)',
  112. r'<iframe[^>]+src="https://secure\.bilibili\.com/secure,([^"]+)"'],
  113. webpage, 'player parameters'))['cid'][0]
  114. else:
  115. if 'no_bangumi_tip' not in smuggled_data:
  116. self.to_screen('Downloading episode %s. To download all videos in anime %s, re-run youtube-dl with %s' % (
  117. video_id, anime_id, compat_urlparse.urljoin(url, '//bangumi.bilibili.com/anime/%s' % anime_id)))
  118. headers = {
  119. 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
  120. 'Referer': url
  121. }
  122. headers.update(self.geo_verification_headers())
  123. js = self._download_json(
  124. 'http://bangumi.bilibili.com/web_api/get_source', video_id,
  125. data=urlencode_postdata({'episode_id': video_id}),
  126. headers=headers)
  127. if 'result' not in js:
  128. self._report_error(js)
  129. cid = js['result']['cid']
  130. headers = {
  131. 'Referer': url
  132. }
  133. headers.update(self.geo_verification_headers())
  134. entries = []
  135. RENDITIONS = ('qn=80&quality=80&type=', 'quality=2&type=mp4')
  136. for num, rendition in enumerate(RENDITIONS, start=1):
  137. payload = 'appkey=%s&cid=%s&otype=json&%s' % (self._APP_KEY, cid, rendition)
  138. sign = hashlib.md5((payload + self._BILIBILI_KEY).encode('utf-8')).hexdigest()
  139. video_info = self._download_json(
  140. 'http://interface.bilibili.com/v2/playurl?%s&sign=%s' % (payload, sign),
  141. video_id, note='Downloading video info page',
  142. headers=headers, fatal=num == len(RENDITIONS))
  143. if not video_info:
  144. continue
  145. if 'durl' not in video_info:
  146. if num < len(RENDITIONS):
  147. continue
  148. self._report_error(video_info)
  149. for idx, durl in enumerate(video_info['durl']):
  150. formats = [{
  151. 'url': durl['url'],
  152. 'filesize': int_or_none(durl['size']),
  153. }]
  154. for backup_url in durl.get('backup_url', []):
  155. formats.append({
  156. 'url': backup_url,
  157. # backup URLs have lower priorities
  158. 'preference': -2 if 'hd.mp4' in backup_url else -3,
  159. })
  160. for a_format in formats:
  161. a_format.setdefault('http_headers', {}).update({
  162. 'Referer': url,
  163. })
  164. self._sort_formats(formats)
  165. entries.append({
  166. 'id': '%s_part%s' % (video_id, idx),
  167. 'duration': float_or_none(durl.get('length'), 1000),
  168. 'formats': formats,
  169. })
  170. break
  171. title = self._html_search_regex(
  172. ('<h1[^>]+\btitle=(["\'])(?P<title>(?:(?!\1).)+)\1',
  173. '(?s)<h1[^>]*>(?P<title>.+?)</h1>'), webpage, 'title',
  174. group='title')
  175. description = self._html_search_meta('description', webpage)
  176. timestamp = unified_timestamp(self._html_search_regex(
  177. r'<time[^>]+datetime="([^"]+)"', webpage, 'upload time',
  178. default=None) or self._html_search_meta(
  179. 'uploadDate', webpage, 'timestamp', default=None))
  180. thumbnail = self._html_search_meta(['og:image', 'thumbnailUrl'], webpage)
  181. # TODO 'view_count' requires deobfuscating Javascript
  182. info = {
  183. 'id': video_id,
  184. 'title': title,
  185. 'description': description,
  186. 'timestamp': timestamp,
  187. 'thumbnail': thumbnail,
  188. 'duration': float_or_none(video_info.get('timelength'), scale=1000),
  189. }
  190. uploader_mobj = re.search(
  191. r'<a[^>]+href="(?:https?:)?//space\.bilibili\.com/(?P<id>\d+)"[^>]*>(?P<name>[^<]+)',
  192. webpage)
  193. if uploader_mobj:
  194. info.update({
  195. 'uploader': uploader_mobj.group('name'),
  196. 'uploader_id': uploader_mobj.group('id'),
  197. })
  198. if not info.get('uploader'):
  199. info['uploader'] = self._html_search_meta(
  200. 'author', webpage, 'uploader', default=None)
  201. for entry in entries:
  202. entry.update(info)
  203. if len(entries) == 1:
  204. return entries[0]
  205. else:
  206. for idx, entry in enumerate(entries):
  207. entry['id'] = '%s_part%d' % (video_id, (idx + 1))
  208. return {
  209. '_type': 'multi_video',
  210. 'id': video_id,
  211. 'title': title,
  212. 'description': description,
  213. 'entries': entries,
  214. }
  215. class BiliBiliBangumiIE(InfoExtractor):
  216. _VALID_URL = r'https?://bangumi\.bilibili\.com/anime/(?P<id>\d+)'
  217. IE_NAME = 'bangumi.bilibili.com'
  218. IE_DESC = 'BiliBili番剧'
  219. _TESTS = [{
  220. 'url': 'http://bangumi.bilibili.com/anime/1869',
  221. 'info_dict': {
  222. 'id': '1869',
  223. 'title': '混沌武士',
  224. 'description': 'md5:6a9622b911565794c11f25f81d6a97d2',
  225. },
  226. 'playlist_count': 26,
  227. }, {
  228. 'url': 'http://bangumi.bilibili.com/anime/1869',
  229. 'info_dict': {
  230. 'id': '1869',
  231. 'title': '混沌武士',
  232. 'description': 'md5:6a9622b911565794c11f25f81d6a97d2',
  233. },
  234. 'playlist': [{
  235. 'md5': '91da8621454dd58316851c27c68b0c13',
  236. 'info_dict': {
  237. 'id': '40062',
  238. 'ext': 'mp4',
  239. 'title': '混沌武士',
  240. 'description': '故事发生在日本的江户时代。风是一个小酒馆的打工女。一日,酒馆里来了一群恶霸,虽然他们的举动令风十分不满,但是毕竟风只是一届女流,无法对他们采取什么行动,只能在心里嘟哝。这时,酒家里又进来了个“不良份子...',
  241. 'timestamp': 1414538739,
  242. 'upload_date': '20141028',
  243. 'episode': '疾风怒涛 Tempestuous Temperaments',
  244. 'episode_number': 1,
  245. },
  246. }],
  247. 'params': {
  248. 'playlist_items': '1',
  249. },
  250. }]
  251. @classmethod
  252. def suitable(cls, url):
  253. return False if BiliBiliIE.suitable(url) else super(BiliBiliBangumiIE, cls).suitable(url)
  254. def _real_extract(self, url):
  255. bangumi_id = self._match_id(url)
  256. # Sometimes this API returns a JSONP response
  257. season_info = self._download_json(
  258. 'http://bangumi.bilibili.com/jsonp/seasoninfo/%s.ver' % bangumi_id,
  259. bangumi_id, transform_source=strip_jsonp)['result']
  260. entries = [{
  261. '_type': 'url_transparent',
  262. 'url': smuggle_url(episode['webplay_url'], {'no_bangumi_tip': 1}),
  263. 'ie_key': BiliBiliIE.ie_key(),
  264. 'timestamp': parse_iso8601(episode.get('update_time'), delimiter=' '),
  265. 'episode': episode.get('index_title'),
  266. 'episode_number': int_or_none(episode.get('index')),
  267. } for episode in season_info['episodes']]
  268. entries = sorted(entries, key=lambda entry: entry.get('episode_number'))
  269. return self.playlist_result(
  270. entries, bangumi_id,
  271. season_info.get('bangumi_title'), season_info.get('evaluate'))