| 
									
										
										
										
											2015-11-26 22:43:31 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GameInformerIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?gameinformer\.com/(?:[^/]+/)*(?P<id>.+)\.aspx' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://www.gameinformer.com/b/features/archive/2015/09/26/replay-animal-crossing.aspx', | 
					
						
							| 
									
										
										
										
											2016-03-14 18:32:29 +01:00
										 |  |  |         'md5': '292f26da1ab4beb4c9099f1304d2b071', | 
					
						
							| 
									
										
										
										
											2015-11-26 22:43:31 +01:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '4515472681001', | 
					
						
							| 
									
										
										
										
											2016-03-14 18:32:29 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-11-26 22:43:31 +01:00
										 |  |  |             'title': 'Replay - Animal Crossing', | 
					
						
							|  |  |  |             'description': 'md5:2e211891b215c85d061adc7a4dd2d930', | 
					
						
							| 
									
										
										
										
											2016-03-14 18:32:29 +01:00
										 |  |  |             'timestamp': 1443457610, | 
					
						
							|  |  |  |             'upload_date': '20150928', | 
					
						
							|  |  |  |             'uploader_id': '694940074001', | 
					
						
							| 
									
										
										
										
											2015-11-26 22:43:31 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-14 18:32:29 +01:00
										 |  |  |     BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/694940074001/default_default/index.html?videoId=%s' | 
					
						
							| 
									
										
										
										
											2015-11-26 22:43:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         display_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2018-02-07 21:52:15 +07:00
										 |  |  |         webpage = self._download_webpage( | 
					
						
							|  |  |  |             url, display_id, headers=self.geo_verification_headers()) | 
					
						
							| 
									
										
										
										
											2018-02-07 09:40:48 -05:00
										 |  |  |         brightcove_id = self._search_regex( | 
					
						
							|  |  |  |             [r'<[^>]+\bid=["\']bc_(\d+)', r"getVideo\('[^']+video_id=(\d+)"], | 
					
						
							|  |  |  |             webpage, 'brightcove id') | 
					
						
							|  |  |  |         return self.url_result( | 
					
						
							|  |  |  |             self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', | 
					
						
							|  |  |  |             brightcove_id) |