| 
									
										
										
										
											2014-01-07 10:04:48 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-27 12:58:09 +01:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..compat import compat_urllib_parse | 
					
						
							| 
									
										
										
										
											2013-06-27 13:48:28 +01:00
										 |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2013-11-18 13:56:45 +01:00
										 |  |  |     determine_ext, | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2015-01-05 18:21:32 +01:00
										 |  |  |     remove_end, | 
					
						
							| 
									
										
										
										
											2013-06-27 13:48:28 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2013-06-27 12:58:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:04:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-27 18:19:19 +02:00
										 |  |  | class AUEngineIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-03-25 21:16:10 +07:00
										 |  |  |     _VALID_URL = r'http://(?:www\.)?auengine\.com/embed\.php\?.*?file=(?P<id>[^&]+).*?' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 16:36:36 +02:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-01-07 10:04:48 +01:00
										 |  |  |         'url': 'http://auengine.com/embed.php?file=lfvlytY6&w=650&h=370', | 
					
						
							|  |  |  |         'md5': '48972bdbcf1a3a2f5533e62425b41d4f', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-03-25 21:16:10 +07:00
										 |  |  |             'id': 'lfvlytY6', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-01-07 10:04:48 +01:00
										 |  |  |             'title': '[Commie]The Legend of the Legendary Heroes - 03 - Replication Eye (Alpha Stigma)[F9410F5A]' | 
					
						
							| 
									
										
										
										
											2013-07-03 16:36:36 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-27 12:58:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-10-28 15:51:15 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-03-25 21:16:10 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-27 12:58:09 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2015-01-05 18:21:32 +01:00
										 |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<title>\s*(?P<title>.+?)\s*</title>', webpage, 'title') | 
					
						
							|  |  |  |         video_urls = re.findall(r'http://\w+.auengine.com/vod/.*[^\W]', webpage) | 
					
						
							|  |  |  |         video_url = compat_urllib_parse.unquote(video_urls[0]) | 
					
						
							|  |  |  |         thumbnails = re.findall(r'http://\w+.auengine.com/thumb/.*[^\W]', webpage) | 
					
						
							|  |  |  |         thumbnail = compat_urllib_parse.unquote(thumbnails[0]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not video_url: | 
					
						
							| 
									
										
										
										
											2014-03-25 21:16:10 +07:00
										 |  |  |             raise ExtractorError('Could not find video URL') | 
					
						
							| 
									
										
										
										
											2015-01-05 18:21:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-07 10:04:48 +01:00
										 |  |  |         ext = '.' + determine_ext(video_url) | 
					
						
							| 
									
										
										
										
											2015-01-05 18:21:32 +01:00
										 |  |  |         title = remove_end(title, ext) | 
					
						
							| 
									
										
										
										
											2013-11-18 13:56:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2014-03-25 21:16:10 +07:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2013-06-27 12:58:09 +01:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2014-03-25 21:53:26 +07:00
										 |  |  |             'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf', | 
					
						
							| 
									
										
										
										
											2013-11-18 13:56:45 +01:00
										 |  |  |         } |