| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 18:35:53 +02:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  | from ..compat import compat_urllib_request | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class VideoMegaIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'''(?x)https?://
 | 
					
						
							|  |  |  |         (?:www\.)?videomega\.tv/ | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |         (?:iframe\.php|cdn\.php)?\?ref=(?P<id>[A-Za-z0-9]+) | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |         '''
 | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |         'url': 'http://videomega.tv/?ref=4GNA688SU99US886ANG4', | 
					
						
							| 
									
										
										
										
											2015-01-15 19:57:36 +02:00
										 |  |  |         'md5': 'bf5c2f95c4c917536e80936af7bc51e1', | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |             'id': '4GNA688SU99US886ANG4', | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |             'title': 'BigBuckBunny_320x180', | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |             'thumbnail': 're:^https?://.*\.jpg$', | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2015-01-15 19:57:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |         iframe_url = 'http://videomega.tv/cdn.php?ref=%s' % video_id | 
					
						
							| 
									
										
										
										
											2015-01-15 19:57:36 +02:00
										 |  |  |         req = compat_urllib_request.Request(iframe_url) | 
					
						
							|  |  |  |         req.add_header('Referer', url) | 
					
						
							|  |  |  |         webpage = self._download_webpage(req, video_id) | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |         title = self._html_search_regex( | 
					
						
							|  |  |  |             r'<title>(.*?)</title>', webpage, 'title') | 
					
						
							|  |  |  |         title = re.sub( | 
					
						
							|  |  |  |             r'(?:^[Vv]ideo[Mm]ega\.tv\s-\s?|\s?-\svideomega\.tv$)', '', title) | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |         thumbnail = self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |             r'<video[^>]+?poster="([^"]+)"', webpage, 'thumbnail', fatal=False) | 
					
						
							|  |  |  |         video_url = self._search_regex( | 
					
						
							|  |  |  |             r'<source[^>]+?src="([^"]+)"', webpage, 'video URL') | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2015-03-19 19:37:39 +02:00
										 |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2015-01-24 18:19:58 +01:00
										 |  |  |             'http_headers': { | 
					
						
							|  |  |  |                 'Referer': iframe_url, | 
					
						
							|  |  |  |             }, | 
					
						
							| 
									
										
										
										
											2014-09-17 22:57:01 +03:00
										 |  |  |         } |