mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[openload] Fix title extraction (Closes #9298)
This commit is contained in:
parent
aa9dc24f5a
commit
a1394b820d
@ -99,9 +99,14 @@ def _real_extract(self, url):
|
|||||||
video_url = self._search_regex(
|
video_url = self._search_regex(
|
||||||
r'return\s+"(https?://[^"]+)"', self.openload_decode(code), 'video URL')
|
r'return\s+"(https?://[^"]+)"', self.openload_decode(code), 'video URL')
|
||||||
|
|
||||||
|
title = self._og_search_title(webpage, default=None) or self._search_regex(
|
||||||
|
r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,
|
||||||
|
'title', default=None) or self._html_search_meta(
|
||||||
|
'description', webpage, 'title', fatal=True)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': self._og_search_title(webpage),
|
'title': title,
|
||||||
'thumbnail': self._og_search_thumbnail(webpage),
|
'thumbnail': self._og_search_thumbnail(webpage),
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user