mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[ustudio] Improve (Closes #8574)
This commit is contained in:
		| @@ -1,58 +1,67 @@ | |||||||
| # coding: utf-8 |  | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
|  |  | ||||||
|  | import re | ||||||
|  |  | ||||||
| from .common import InfoExtractor | from .common import InfoExtractor | ||||||
| from ..utils import int_or_none | from ..utils import ( | ||||||
|  |     int_or_none, | ||||||
|  |     unified_strdate, | ||||||
|  | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| class UstudioIE(InfoExtractor): | class UstudioIE(InfoExtractor): | ||||||
|     IE_NAME = 'uStudio' |     _VALID_URL = r'https?://(?:(?:www|v1)\.)?ustudio\.com/video/(?P<id>[^/]+)/(?P<display_id>[^/?#&]+)' | ||||||
|     _VALID_URL = r'http://(?:www\.|v1\.)?ustudio.com/video/(?P<id>[\w\d]+)/.+' |     _TEST = { | ||||||
|     _TESTS = [ |         'url': 'http://ustudio.com/video/Uxu2my9bgSph/san_francisco_golden_gate_bridge', | ||||||
|         { |         'md5': '58bbfca62125378742df01fc2abbdef6', | ||||||
|             'url': 'http://ustudio.com/video/Uxu2my9bgSph/san_francisco_golden_gate_bridge', |         'info_dict': { | ||||||
|             'md5': '58bbfca62125378742df01fc2abbdef6', |             'id': 'Uxu2my9bgSph', | ||||||
|             'info_dict': { |             'display_id': 'san_francisco_golden_gate_bridge', | ||||||
|                 'id': 'Uxu2my9bgSph', |             'ext': 'mp4', | ||||||
|                 'ext': 'mp4', |             'title': 'San Francisco: Golden Gate Bridge', | ||||||
|                 'title': 'San Francisco: Golden Gate Bridge', |             'description': 'md5:23925500697f2c6d4830e387ba51a9be', | ||||||
|                 'thumbnail': 're:^https?://.*\.jpg$', |             'thumbnail': 're:^https?://.*\.jpg$', | ||||||
|                 'description': 'md5:23925500697f2c6d4830e387ba51a9be', |             'upload_date': '20111107', | ||||||
|                 'uploader': 'Tony Farley', |             'uploader': 'Tony Farley', | ||||||
|             } |         } | ||||||
|         }, |     } | ||||||
|     ] |  | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         video_id = self._match_id(url) |         mobj = re.match(self._VALID_URL, url) | ||||||
|  |         video_id = mobj.group('id') | ||||||
|  |         display_id = mobj.group('display_id') | ||||||
|  |  | ||||||
|         webpage = self._download_webpage(url, video_id) |         config = self._download_xml( | ||||||
|  |             'http://v1.ustudio.com/embed/%s/ustudio/config.xml' % video_id, | ||||||
|  |             display_id) | ||||||
|  |  | ||||||
|         doc = self._download_xml( |         def extract(kind): | ||||||
|             'http://v1.ustudio.com/embed/{0}/ustudio/config.xml'.format( |             return [{ | ||||||
|                 video_id), |                 'url': item.attrib['url'], | ||||||
|             video_id, |                 'width': int_or_none(item.get('width')), | ||||||
|             note='Downloading video info', |                 'height': int_or_none(item.get('height')), | ||||||
|             errnote='Failed to download video info') |             } for item in config.findall('./qualities/quality/%s' % kind) if item.get('url')] | ||||||
|  |  | ||||||
|         formats = [ |         formats = extract('video') | ||||||
|             { |  | ||||||
|                 'url': quality.attrib['url'], |  | ||||||
|                 'width': int_or_none(quality.attrib.get('width')), |  | ||||||
|                 'height': int_or_none(quality.attrib.get('height')), |  | ||||||
|             } for quality in doc.findall('./qualities/quality/video') |  | ||||||
|         ] |  | ||||||
|         self._sort_formats(formats) |         self._sort_formats(formats) | ||||||
|  |  | ||||||
|  |         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) | ||||||
|  |  | ||||||
|         return { |         return { | ||||||
|             'id': video_id, |             'id': video_id, | ||||||
|             'title': self._og_search_title(webpage), |             'display_id': display_id, | ||||||
|             'thumbnail': self._og_search_thumbnail(webpage), |             'title': title, | ||||||
|             'formats': formats, |  | ||||||
|             'description': self._og_search_description(webpage), |             'description': self._og_search_description(webpage), | ||||||
|             'uploader': self._html_search_regex( |             'thumbnails': extract('image'), | ||||||
|                 r'<a href=".*/user/.+">(.+)</a> on', |             'upload_date': upload_date, | ||||||
|                 webpage, |             'uploader': uploader, | ||||||
|                 'uploader', |             'formats': formats, | ||||||
|                 fatal=False), |  | ||||||
|         } |         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․