| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2014-07-11 11:08:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-07-11 11:08:36 +02:00
										 |  |  | from ..utils import int_or_none | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 23:08:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-09 23:52:03 +06:00
										 |  |  | class SprutoBaseIE(InfoExtractor): | 
					
						
							|  |  |  |     def _extract_spruto(self, spruto, video_id): | 
					
						
							|  |  |  |         playlist = spruto['playlist'][0] | 
					
						
							|  |  |  |         title = playlist['title'] | 
					
						
							|  |  |  |         video_id = playlist.get('videoId') or video_id | 
					
						
							|  |  |  |         thumbnail = playlist.get('posterUrl') or playlist.get('thumbnailUrl') | 
					
						
							|  |  |  |         duration = int_or_none(playlist.get('duration')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [{ | 
					
						
							|  |  |  |             'url': f['url'], | 
					
						
							|  |  |  |         } for f in playlist['video']] | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class VimpleIE(SprutoBaseIE): | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |     IE_DESC = 'Vimple - one-click video hosting' | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:player\.vimple\.ru/iframe|vimple\.ru)/(?P<id>[\da-f-]{32,36})' | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2015-01-05 11:46:40 +01:00
										 |  |  |             'url': 'http://vimple.ru/c0f6b1687dcd4000a97ebe70068039cf', | 
					
						
							|  |  |  |             'md5': '2e750a330ed211d3fd41821c6ad9a279', | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  |             'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |                 'id': 'c0f6b168-7dcd-4000-a97e-be70068039cf', | 
					
						
							| 
									
										
										
										
											2014-06-12 23:08:06 -04:00
										 |  |  |                 'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-01-05 11:46:40 +01:00
										 |  |  |                 'title': 'Sunset', | 
					
						
							|  |  |  |                 'duration': 20, | 
					
						
							|  |  |  |                 'thumbnail': 're:https?://.*?\.jpg', | 
					
						
							| 
									
										
										
										
											2014-06-12 23:08:06 -04:00
										 |  |  |             }, | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |         }, { | 
					
						
							|  |  |  |             'url': 'http://player.vimple.ru/iframe/52e1beec-1314-4a83-aeac-c61562eadbf9', | 
					
						
							|  |  |  |             'only_matching': True, | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  |     ] | 
					
						
							| 
									
										
										
										
											2014-06-12 23:08:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-06-12 23:08:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |         webpage = self._download_webpage( | 
					
						
							|  |  |  |             'http://player.vimple.ru/iframe/%s' % video_id, video_id) | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-09 23:52:03 +06:00
										 |  |  |         spruto = self._parse_json( | 
					
						
							| 
									
										
										
										
											2015-04-17 22:56:26 +06:00
										 |  |  |             self._search_regex( | 
					
						
							|  |  |  |                 r'sprutoData\s*:\s*({.+?}),\r\n', webpage, 'spruto data'), | 
					
						
							| 
									
										
										
										
											2015-07-09 23:52:03 +06:00
										 |  |  |             video_id) | 
					
						
							| 
									
										
										
										
											2014-06-12 03:27:23 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-09 23:52:03 +06:00
										 |  |  |         return self._extract_spruto(spruto, video_id) |