mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	This commit is contained in:
		| @@ -6,7 +6,7 @@ from .common import InfoExtractor | |||||||
| from ..compat import compat_urllib_parse_urlencode | from ..compat import compat_urllib_parse_urlencode | ||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     ExtractorError, |     ExtractorError, | ||||||
|     unescapeHTML |     merge_dicts, | ||||||
| ) | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| @@ -77,19 +77,15 @@ class EroProfileIE(InfoExtractor): | |||||||
|             [r"glbUpdViews\s*\('\d*','(\d+)'", r'p/report/video/(\d+)'], |             [r"glbUpdViews\s*\('\d*','(\d+)'", r'p/report/video/(\d+)'], | ||||||
|             webpage, 'video id', default=None) |             webpage, 'video id', default=None) | ||||||
|  |  | ||||||
|         video_url = unescapeHTML(self._search_regex( |  | ||||||
|             r'<source src="([^"]+)', webpage, 'video url')) |  | ||||||
|         title = self._html_search_regex( |         title = self._html_search_regex( | ||||||
|             r'Title:</th><td>([^<]+)</td>', webpage, 'title') |             (r'Title:</th><td>([^<]+)</td>', r'<h1[^>]*>(.+?)</h1>'), | ||||||
|         thumbnail = self._search_regex( |             webpage, 'title') | ||||||
|             r'onclick="showVideoPlayer\(\)"><img src="([^"]+)', |  | ||||||
|             webpage, 'thumbnail', fatal=False) |  | ||||||
|  |  | ||||||
|         return { |         info = self._parse_html5_media_entries(url, webpage, video_id)[0] | ||||||
|  |  | ||||||
|  |         return merge_dicts(info, { | ||||||
|             'id': video_id, |             'id': video_id, | ||||||
|             'display_id': display_id, |             'display_id': display_id, | ||||||
|             'url': video_url, |  | ||||||
|             'title': title, |             'title': title, | ||||||
|             'thumbnail': thumbnail, |  | ||||||
|             'age_limit': 18, |             'age_limit': 18, | ||||||
|         } |         }) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user