mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 23:10:56 +00:00
[RTLnowIE] Clean video title
The title of some videos has the following format: Series - Episode | Series online schauen bei ... NOW
This commit is contained in:
parent
a921f40799
commit
63efc427cd
|
@ -79,7 +79,7 @@ class RTLnowIE(InfoExtractor):
|
|||
msg = clean_html(note_m.group(1))
|
||||
raise ExtractorError(msg)
|
||||
|
||||
video_title = self._html_search_regex(r'<title>(?P<title>[^<]+)</title>',
|
||||
video_title = self._html_search_regex(r'<title>(?P<title>[^<]+?)( \| [^<]*)?</title>',
|
||||
webpage, u'title')
|
||||
playerdata_url = self._html_search_regex(r'\'playerdata\': \'(?P<playerdata_url>[^\']+)\'',
|
||||
webpage, u'playerdata_url')
|
||||
|
|
Loading…
Reference in New Issue
Block a user