fix bilibili extraction (closes #15171)
This commit is contained in:
		 Luca Steeb
					Luca Steeb
				
			
				
					committed by
					
						 Chih-Hsuan Yen
						Chih-Hsuan Yen
					
				
			
			
				
	
			
			
			 Chih-Hsuan Yen
						Chih-Hsuan Yen
					
				
			
						parent
						
							950b5f2969
						
					
				
				
					commit
					3a513f29ad
				
			| @@ -102,6 +102,7 @@ class BiliBiliIE(InfoExtractor): | |||||||
|                     video_id, anime_id, compat_urlparse.urljoin(url, '//bangumi.bilibili.com/anime/%s' % anime_id))) |                     video_id, anime_id, compat_urlparse.urljoin(url, '//bangumi.bilibili.com/anime/%s' % anime_id))) | ||||||
|             headers = { |             headers = { | ||||||
|                 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', |                 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', | ||||||
|  |                 'Referer': url | ||||||
|             } |             } | ||||||
|             headers.update(self.geo_verification_headers()) |             headers.update(self.geo_verification_headers()) | ||||||
|  |  | ||||||
| @@ -116,10 +117,15 @@ class BiliBiliIE(InfoExtractor): | |||||||
|         payload = 'appkey=%s&cid=%s&otype=json&quality=2&type=mp4' % (self._APP_KEY, cid) |         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() |         sign = hashlib.md5((payload + self._BILIBILI_KEY).encode('utf-8')).hexdigest() | ||||||
|  |  | ||||||
|  |         headers = { | ||||||
|  |             'Referer': url | ||||||
|  |         } | ||||||
|  |         headers.update(self.geo_verification_headers()) | ||||||
|  |  | ||||||
|         video_info = self._download_json( |         video_info = self._download_json( | ||||||
|             'http://interface.bilibili.com/playurl?%s&sign=%s' % (payload, sign), |             'http://interface.bilibili.com/playurl?%s&sign=%s' % (payload, sign), | ||||||
|             video_id, note='Downloading video info page', |             video_id, note='Downloading video info page', | ||||||
|             headers=self.geo_verification_headers()) |             headers=headers) | ||||||
|  |  | ||||||
|         if 'durl' not in video_info: |         if 'durl' not in video_info: | ||||||
|             self._report_error(video_info) |             self._report_error(video_info) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user