| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | # encoding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2015-04-19 04:09:01 +06:00
										 |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |     float_or_none, | 
					
						
							|  |  |  |     xpath_text, | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:08:29 +06:00
										 |  |  | class MegaVideozIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?megavideoz\.eu/video/(?P<id>[^/]+)(?:/(?P<display_id>[^/]+))?' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://megavideoz.eu/video/WM6UB919XMXH/SMPTE-Universal-Film-Leader', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '48723', | 
					
						
							|  |  |  |             'display_id': 'SMPTE-Universal-Film-Leader', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'SMPTE Universal Film Leader', | 
					
						
							|  |  |  |             'thumbnail': 're:https?://.*?\.jpg', | 
					
						
							|  |  |  |             'duration': 10.93, | 
					
						
							| 
									
										
										
										
											2015-04-17 11:25:01 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  |         display_id = mobj.group('display_id') or video_id | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:14:58 +06:00
										 |  |  |         if any(p in webpage for p in ('>Video Not Found<', '>404 Error<')): | 
					
						
							| 
									
										
										
										
											2015-04-19 04:09:01 +06:00
										 |  |  |             raise ExtractorError('Video %s does not exist' % video_id, expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |         config = self._download_xml( | 
					
						
							|  |  |  |             self._search_regex( | 
					
						
							|  |  |  |                 r"var\s+cnf\s*=\s*'([^']+)'", webpage, 'cnf url'), | 
					
						
							|  |  |  |             display_id) | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |         video_url = xpath_text(config, './file', 'video url', fatal=True) | 
					
						
							|  |  |  |         title = xpath_text(config, './title', 'title', fatal=True) | 
					
						
							|  |  |  |         thumbnail = xpath_text(config, './image', 'thumbnail') | 
					
						
							|  |  |  |         duration = float_or_none(xpath_text(config, './duration', 'duration')) | 
					
						
							|  |  |  |         video_id = xpath_text(config, './mediaid', 'video id') or video_id | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  |             'url': video_url, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2015-04-19 04:07:45 +06:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2015-01-15 21:28:57 -05:00
										 |  |  |             'duration': duration | 
					
						
							|  |  |  |         } |