[redtube] Improve title extraction (#25208)
This commit is contained in:
parent
52c50a10af
commit
bf097a5077
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class RedTubeIE(InfoExtractor):
|
|||
|
||||
if not info.get('title'):
|
||||
info['title'] = self._html_search_regex(
|
||||
(r'<h(\d)[^>]+class="(?:video_title_text|videoTitle)[^"]*">(?P<title>(?:(?!\1).)+)</h\1>',
|
||||
(r'<h(\d)[^>]+class="(?:video_title_text|videoTitle|video_title)[^"]*">(?P<title>(?:(?!\1).)+)</h\1>',
|
||||
r'(?:videoTitle|title)\s*:\s*(["\'])(?P<title>(?:(?!\1).)+)\1',),
|
||||
webpage, 'title', group='title',
|
||||
default=None) or self._og_search_title(webpage)
|
||||
|
|
Loading…
Reference in a new issue