mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[glide] Fix extraction (Closes #10478)
This commit is contained in:
		| @@ -14,10 +14,8 @@ class GlideIE(InfoExtractor): | |||||||
|         'info_dict': { |         'info_dict': { | ||||||
|             'id': 'UZF8zlmuQbe4mr+7dCiQ0w==', |             'id': 'UZF8zlmuQbe4mr+7dCiQ0w==', | ||||||
|             'ext': 'mp4', |             'ext': 'mp4', | ||||||
|             'title': 'Damon Timm\'s Glide message', |             'title': "Damon's Glide message", | ||||||
|             'thumbnail': 're:^https?://.*?\.cloudfront\.net/.*\.jpg$', |             'thumbnail': 're:^https?://.*?\.cloudfront\.net/.*\.jpg$', | ||||||
|             'uploader': 'Damon Timm', |  | ||||||
|             'upload_date': '20140919', |  | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -27,7 +25,8 @@ class GlideIE(InfoExtractor): | |||||||
|         webpage = self._download_webpage(url, video_id) |         webpage = self._download_webpage(url, video_id) | ||||||
|  |  | ||||||
|         title = self._html_search_regex( |         title = self._html_search_regex( | ||||||
|             r'<title>(.+?)</title>', webpage, 'title') |             r'<title>(.+?)</title>', webpage, | ||||||
|  |             'title', default=None) or self._og_search_title(webpage) | ||||||
|         video_url = self._proto_relative_url(self._search_regex( |         video_url = self._proto_relative_url(self._search_regex( | ||||||
|             r'<source[^>]+src=(["\'])(?P<url>.+?)\1', |             r'<source[^>]+src=(["\'])(?P<url>.+?)\1', | ||||||
|             webpage, 'video URL', default=None, |             webpage, 'video URL', default=None, | ||||||
| @@ -36,18 +35,10 @@ class GlideIE(InfoExtractor): | |||||||
|             r'<img[^>]+id=["\']video-thumbnail["\'][^>]+src=(["\'])(?P<url>.+?)\1', |             r'<img[^>]+id=["\']video-thumbnail["\'][^>]+src=(["\'])(?P<url>.+?)\1', | ||||||
|             webpage, 'thumbnail url', default=None, |             webpage, 'thumbnail url', default=None, | ||||||
|             group='url')) or self._og_search_thumbnail(webpage) |             group='url')) or self._og_search_thumbnail(webpage) | ||||||
|         uploader = self._search_regex( |  | ||||||
|             r'<div[^>]+class=["\']info-name["\'][^>]*>([^<]+)', |  | ||||||
|             webpage, 'uploader', fatal=False) |  | ||||||
|         upload_date = unified_strdate(self._search_regex( |  | ||||||
|             r'<div[^>]+class="info-date"[^>]*>([^<]+)', |  | ||||||
|             webpage, 'upload date', fatal=False)) |  | ||||||
|  |  | ||||||
|         return { |         return { | ||||||
|             'id': video_id, |             'id': video_id, | ||||||
|             'title': title, |             'title': title, | ||||||
|             'url': video_url, |             'url': video_url, | ||||||
|             'thumbnail': thumbnail, |             'thumbnail': thumbnail, | ||||||
|             'uploader': uploader, |  | ||||||
|             'upload_date': upload_date, |  | ||||||
|         } |         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․