logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: bf097a5077036d25e5c2ae2ea2d3b8c55bfdc83c
parent 52c50a10af5de16165621f8929b64dc726774276
Author: Dave Loyall <dave@the-good-guys.net>
Date:   Tue, 19 May 2020 14:11:05 -0500

[redtube] Improve title extraction (#25208)


Diffstat:

Myoutube_dl/extractor/redtube.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/redtube.py b/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)