| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     unified_strdate, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class UstudioIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:(?:www|v1)\.)?ustudio\.com/video/(?P<id>[^/]+)/(?P<display_id>[^/?#&]+)' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://ustudio.com/video/Uxu2my9bgSph/san_francisco_golden_gate_bridge', | 
					
						
							|  |  |  |         'md5': '58bbfca62125378742df01fc2abbdef6', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'Uxu2my9bgSph', | 
					
						
							|  |  |  |             'display_id': 'san_francisco_golden_gate_bridge', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'San Francisco: Golden Gate Bridge', | 
					
						
							|  |  |  |             'description': 'md5:23925500697f2c6d4830e387ba51a9be', | 
					
						
							|  |  |  |             'thumbnail': 're:^https?://.*\.jpg$', | 
					
						
							|  |  |  |             'upload_date': '20111107', | 
					
						
							|  |  |  |             'uploader': 'Tony Farley', | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  |         display_id = mobj.group('display_id') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         config = self._download_xml( | 
					
						
							|  |  |  |             'http://v1.ustudio.com/embed/%s/ustudio/config.xml' % video_id, | 
					
						
							|  |  |  |             display_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def extract(kind): | 
					
						
							|  |  |  |             return [{ | 
					
						
							|  |  |  |                 'url': item.attrib['url'], | 
					
						
							|  |  |  |                 'width': int_or_none(item.get('width')), | 
					
						
							|  |  |  |                 'height': int_or_none(item.get('height')), | 
					
						
							|  |  |  |             } for item in config.findall('./qualities/quality/%s' % kind) if item.get('url')] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = extract('video') | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = self._og_search_title(webpage) | 
					
						
							|  |  |  |         upload_date = unified_strdate(self._search_regex( | 
					
						
							|  |  |  |             r'(?s)Uploaded by\s*.+?\s*on\s*<span>([^<]+)</span>', | 
					
						
							|  |  |  |             webpage, 'upload date', fatal=False)) | 
					
						
							|  |  |  |         uploader = self._search_regex( | 
					
						
							|  |  |  |             r'Uploaded by\s*<a[^>]*>([^<]+)<', | 
					
						
							|  |  |  |             webpage, 'uploader', fatal=False) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  |             'display_id': display_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  |             'description': self._og_search_description(webpage), | 
					
						
							| 
									
										
										
										
											2016-02-25 21:30:19 +06:00
										 |  |  |             'thumbnails': extract('image'), | 
					
						
							|  |  |  |             'upload_date': upload_date, | 
					
						
							|  |  |  |             'uploader': uploader, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2016-02-15 17:07:13 -08:00
										 |  |  |         } |