Browse Source

[redtube] Improve title extraction (#25208)

Dave Loyall 5 years ago
parent
commit
bf097a5077
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/redtube.py

+ 1 - 1
youtube_dl/extractor/redtube.py

@@ -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)