mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[ustream] Add an alternative approach to extract title (fixes #5128)
This commit is contained in:
parent
762155cc90
commit
2a8137272d
@ -58,7 +58,16 @@ def _real_extract(self, url):
|
||||
self.report_extraction(video_id)
|
||||
|
||||
video_title = self._html_search_regex(r'data-title="(?P<title>.+)"',
|
||||
webpage, 'title')
|
||||
webpage, 'title', default=None)
|
||||
|
||||
if not video_title:
|
||||
try:
|
||||
video_title = params['moduleConfig']['meta']['title']
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
if not video_title:
|
||||
video_title = 'Ustream video ' + video_id
|
||||
|
||||
uploader = self._html_search_regex(r'data-content-type="channel".*?>(?P<uploader>.*?)</a>',
|
||||
webpage, 'uploader', fatal=False, flags=re.DOTALL)
|
||||
|
Loading…
Reference in New Issue
Block a user