| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  | import hashlib | 
					
						
							| 
									
										
										
										
											2015-10-17 23:12:58 +01:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  | from ..compat import compat_parse_qs | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     float_or_none, | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |     unified_timestamp, | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |     urlencode_postdata, | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BiliBiliIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.|bangumi\.|)bilibili\.(?:tv|com)/(?:video/av|anime/v/)(?P<id>\d+)' | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 22:01:31 +08:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |         'url': 'http://www.bilibili.tv/video/av1074402/', | 
					
						
							| 
									
										
										
										
											2016-08-08 12:57:17 +08:00
										 |  |  |         'md5': '9fa226fe2b8a9a4d5a69b4c6a183417e', | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |             'id': '1074402', | 
					
						
							| 
									
										
										
										
											2016-08-08 12:57:17 +08:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |             'title': '【金坷垃】金泡沫', | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             'description': 'md5:ce18c2a2d2193f0df2917d270f2e5923', | 
					
						
							| 
									
										
										
										
											2016-08-08 12:57:17 +08:00
										 |  |  |             'duration': 308.315, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             'timestamp': 1398012660, | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |             'upload_date': '20140420', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |             'thumbnail': r're:^https?://.+\.jpg', | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |             'uploader': '菊子桑', | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             'uploader_id': '156160', | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-09-14 22:01:31 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-18 17:00:15 +01:00
										 |  |  |     _APP_KEY = '84956560bc028eb7' | 
					
						
							|  |  |  |     _BILIBILI_KEY = '94aba54af9065f71de72f5508f1cd42e' | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-17 23:12:58 +01:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |         if 'anime/v' not in url: | 
					
						
							| 
									
										
										
										
											2016-07-29 23:21:50 +08:00
										 |  |  |             cid = compat_parse_qs(self._search_regex( | 
					
						
							|  |  |  |                 [r'EmbedPlayer\([^)]+,\s*"([^"]+)"\)', | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |                  r'<iframe[^>]+src="https://secure\.bilibili\.com/secure,([^"]+)"'], | 
					
						
							| 
									
										
										
										
											2016-07-29 23:21:50 +08:00
										 |  |  |                 webpage, 'player parameters'))['cid'][0] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |             js = self._download_json( | 
					
						
							|  |  |  |                 'http://bangumi.bilibili.com/web_api/get_source', video_id, | 
					
						
							|  |  |  |                 data=urlencode_postdata({'episode_id': video_id}), | 
					
						
							|  |  |  |                 headers={'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}) | 
					
						
							| 
									
										
										
										
											2016-07-29 23:21:50 +08:00
										 |  |  |             cid = js['result']['cid'] | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         payload = 'appkey=%s&cid=%s&otype=json&quality=2&type=mp4' % (self._APP_KEY, cid) | 
					
						
							|  |  |  |         sign = hashlib.md5((payload + self._BILIBILI_KEY).encode('utf-8')).hexdigest() | 
					
						
							| 
									
										
										
										
											2015-05-27 04:23:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |         video_info = self._download_json( | 
					
						
							|  |  |  |             'http://interface.bilibili.com/playurl?%s&sign=%s' % (payload, sign), | 
					
						
							|  |  |  |             video_id, note='Downloading video info page') | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |         entries = [] | 
					
						
							| 
									
										
										
										
											2015-04-30 18:23:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |         for idx, durl in enumerate(video_info['durl']): | 
					
						
							| 
									
										
										
										
											2015-10-21 08:24:05 +01:00
										 |  |  |             formats = [{ | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |                 'url': durl['url'], | 
					
						
							|  |  |  |                 'filesize': int_or_none(durl['size']), | 
					
						
							| 
									
										
										
										
											2015-10-21 08:24:05 +01:00
										 |  |  |             }] | 
					
						
							| 
									
										
										
										
											2016-09-14 22:11:49 +08:00
										 |  |  |             for backup_url in durl.get('backup_url', []): | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |                 formats.append({ | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |                     'url': backup_url, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |                     # backup URLs have lower priorities | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |                     'preference': -2 if 'hd.mp4' in backup_url else -3, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |                 }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self._sort_formats(formats) | 
					
						
							| 
									
										
										
										
											2015-10-21 08:24:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-30 18:23:35 +08:00
										 |  |  |             entries.append({ | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |                 'id': '%s_part%s' % (video_id, idx), | 
					
						
							|  |  |  |                 'duration': float_or_none(durl.get('length'), 1000), | 
					
						
							| 
									
										
										
										
											2015-10-17 18:30:51 +01:00
										 |  |  |                 'formats': formats, | 
					
						
							| 
									
										
										
										
											2015-01-08 01:33:22 +06:00
										 |  |  |             }) | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |         title = self._html_search_regex('<h1[^>]+title="([^"]+)">', webpage, 'title') | 
					
						
							|  |  |  |         description = self._html_search_meta('description', webpage) | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |         timestamp = unified_timestamp(self._html_search_regex( | 
					
						
							|  |  |  |             r'<time[^>]+datetime="([^"]+)"', webpage, 'upload time', fatal=False)) | 
					
						
							| 
									
										
										
										
											2016-09-05 13:53:58 +08:00
										 |  |  |         thumbnail = self._html_search_meta(['og:image', 'thumbnailUrl'], webpage) | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # TODO 'view_count' requires deobfuscating Javascript | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |         info = { | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             'description': description, | 
					
						
							|  |  |  |             'timestamp': timestamp, | 
					
						
							| 
									
										
										
										
											2016-07-29 23:21:50 +08:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2016-08-28 22:06:31 +08:00
										 |  |  |             'duration': float_or_none(video_info.get('timelength'), scale=1000), | 
					
						
							| 
									
										
										
										
											2014-04-21 13:45:27 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |         uploader_mobj = re.search( | 
					
						
							|  |  |  |             r'<a[^>]+href="https?://space\.bilibili\.com/(?P<id>\d+)"[^>]+title="(?P<name>[^"]+)"', | 
					
						
							|  |  |  |             webpage) | 
					
						
							|  |  |  |         if uploader_mobj: | 
					
						
							|  |  |  |             info.update({ | 
					
						
							|  |  |  |                 'uploader': uploader_mobj.group('name'), | 
					
						
							|  |  |  |                 'uploader_id': uploader_mobj.group('id'), | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for entry in entries: | 
					
						
							|  |  |  |             entry.update(info) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |         if len(entries) == 1: | 
					
						
							|  |  |  |             return entries[0] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2016-06-02 19:27:57 +08:00
										 |  |  |             for idx, entry in enumerate(entries): | 
					
						
							|  |  |  |                 entry['id'] = '%s_part%d' % (video_id, (idx + 1)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             return { | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |                 '_type': 'multi_video', | 
					
						
							| 
									
										
										
										
											2015-10-17 23:12:58 +01:00
										 |  |  |                 'id': video_id, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |                 'title': title, | 
					
						
							|  |  |  |                 'description': description, | 
					
						
							| 
									
										
										
										
											2015-10-17 17:28:09 +01:00
										 |  |  |                 'entries': entries, | 
					
						
							| 
									
										
										
										
											2016-05-29 01:26:00 +08:00
										 |  |  |             } |