mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[rte] Improve thumbnail extraction (Closes #9085)
This commit is contained in:
		| @@ -39,9 +39,14 @@ class RteIE(InfoExtractor): | |||||||
|         duration = float_or_none(self._html_search_meta( |         duration = float_or_none(self._html_search_meta( | ||||||
|             'duration', webpage, 'duration', fatal=False), 1000) |             'duration', webpage, 'duration', fatal=False), 1000) | ||||||
|  |  | ||||||
|  |         thumbnail = None | ||||||
|  |         thumbnail_meta = self._html_search_meta('thumbnail', webpage) | ||||||
|  |         if thumbnail_meta: | ||||||
|             thumbnail_id = self._search_regex( |             thumbnail_id = self._search_regex( | ||||||
|             r'<meta name="thumbnail" content="uri:irus:(.*?)" />', webpage, 'thumbnail') |                 r'uri:irus:(.+)', thumbnail_meta, | ||||||
|         thumbnail = 'http://img.rasset.ie/' + thumbnail_id + '.jpg' |                 'thumbnail id', fatal=False) | ||||||
|  |             if thumbnail_id: | ||||||
|  |                 thumbnail = 'http://img.rasset.ie/%s.jpg' % thumbnail_id | ||||||
|  |  | ||||||
|         feeds_url = self._html_search_meta('feeds-prefix', webpage, 'feeds url') + video_id |         feeds_url = self._html_search_meta('feeds-prefix', webpage, 'feeds url') + video_id | ||||||
|         json_string = self._download_json(feeds_url, video_id) |         json_string = self._download_json(feeds_url, video_id) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․