| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  | # encoding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-08-22 01:43:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DumpIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'^https?://(?:www\.)?dump\.com/(?P<id>[a-zA-Z0-9]+)/' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 01:31:12 +05:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-08-22 01:43:19 +02:00
										 |  |  |         'url': 'http://www.dump.com/oneus/', | 
					
						
							|  |  |  |         'md5': 'ad71704d1e67dfd9e81e3e8b42d69d99', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'oneus', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': "He's one of us.", | 
					
						
							|  |  |  |             'thumbnail': 're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2014-08-22 01:31:12 +05:00
										 |  |  |         }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         m = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = m.group('id') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2014-08-22 01:43:19 +02:00
										 |  |  |         video_url = self._search_regex( | 
					
						
							|  |  |  |             r's1.addVariable\("file",\s*"([^"]+)"', webpage, 'video URL') | 
					
						
							| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-04 23:33:07 +06:00
										 |  |  |         title = self._og_search_title(webpage) | 
					
						
							|  |  |  |         thumbnail = self._og_search_thumbnail(webpage) | 
					
						
							| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2015-04-04 23:33:07 +06:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							| 
									
										
										
										
											2014-08-22 01:30:49 +05:00
										 |  |  |         } |