| 
									
										
										
										
											2016-10-02 13:39:18 +02:00
										 |  |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | class RUHDIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-03-21 21:36:32 +06:00
										 |  |  |  |     _VALID_URL = r'https?://(?:www\.)?ruhd\.ru/play\.php\?vid=(?P<id>\d+)' | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |     _TEST = { | 
					
						
							|  |  |  |  |         'url': 'http://www.ruhd.ru/play.php?vid=207', | 
					
						
							|  |  |  |  |         'md5': 'd1a9ec4edf8598e3fbd92bb16072ba83', | 
					
						
							|  |  |  |  |         'info_dict': { | 
					
						
							|  |  |  |  |             'id': '207', | 
					
						
							|  |  |  |  |             'ext': 'divx', | 
					
						
							|  |  |  |  |             'title': 'КОТ бааааам', | 
					
						
							|  |  |  |  |             'description': 'классный кот)', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |  |             'thumbnail': r're:^http://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-10-27 00:20:54 +01:00
										 |  |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         video_url = self._html_search_regex( | 
					
						
							|  |  |  |  |             r'<param name="src" value="([^"]+)"', webpage, 'video url') | 
					
						
							|  |  |  |  |         title = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2017-10-09 23:50:53 +07:00
										 |  |  |  |             r'<title>([^<]+)   RUHD\.ru - Видео Высокого качества №1 в России!</title>', | 
					
						
							| 
									
										
										
										
											2014-10-27 00:20:54 +01:00
										 |  |  |  |             webpage, 'title') | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |         description = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2014-10-27 00:20:54 +01:00
										 |  |  |  |             r'(?s)<div id="longdesc">(.+?)<span id="showlink">', | 
					
						
							|  |  |  |  |             webpage, 'description', fatal=False) | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |         thumbnail = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2014-10-27 00:20:54 +01:00
										 |  |  |  |             r'<param name="previewImage" value="([^"]+)"', | 
					
						
							|  |  |  |  |             webpage, 'thumbnail', fatal=False) | 
					
						
							| 
									
										
										
										
											2014-07-13 04:03:22 +07:00
										 |  |  |  |         if thumbnail: | 
					
						
							|  |  |  |  |             thumbnail = 'http://www.ruhd.ru' + thumbnail | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         return { | 
					
						
							|  |  |  |  |             'id': video_id, | 
					
						
							|  |  |  |  |             'url': video_url, | 
					
						
							|  |  |  |  |             'title': title, | 
					
						
							|  |  |  |  |             'description': description, | 
					
						
							|  |  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |  |         } |