| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-25 16:04:08 +07:00
										 |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ExtractorError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MacGameStoreIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  |     IE_NAME = 'macgamestore' | 
					
						
							|  |  |  |     IE_DESC = 'MacGameStore trailers' | 
					
						
							| 
									
										
										
										
											2013-12-25 16:04:08 +07:00
										 |  |  |     _VALID_URL = r'https?://www\.macgamestore\.com/mediaviewer\.php\?trailer=(?P<id>\d+)' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  |         'url': 'http://www.macgamestore.com/mediaviewer.php?trailer=2450', | 
					
						
							|  |  |  |         'md5': '8649b8ea684b6666b4c5be736ecddc61', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-02-01 15:08:33 +01:00
										 |  |  |             'id': '2450', | 
					
						
							|  |  |  |             'ext': 'm4v', | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  |             'title': 'Crow', | 
					
						
							| 
									
										
										
										
											2013-12-25 16:04:08 +07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-02-01 15:08:33 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							|  |  |  |         webpage = self._download_webpage( | 
					
						
							|  |  |  |             url, video_id, 'Downloading trailer page') | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-01 15:08:33 +01:00
										 |  |  |         if '>Missing Media<' in webpage: | 
					
						
							|  |  |  |             raise ExtractorError( | 
					
						
							|  |  |  |                 'Trailer %s does not exist' % video_id, expected=True) | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         video_title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<title>MacGameStore: (.*?) Trailer</title>', webpage, 'title') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         video_url = self._html_search_regex( | 
					
						
							|  |  |  |             r'(?s)<div\s+id="video-player".*?href="([^"]+)"\s*>', | 
					
						
							|  |  |  |             webpage, 'video URL') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-25 16:04:08 +07:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							|  |  |  |             'title': video_title | 
					
						
							| 
									
										
										
										
											2014-01-03 13:09:39 +01:00
										 |  |  |         } |