1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-28 03:13:10 +08:00

[crunchyroll] the video_title wasn't working.

I changed the self._html_search_regex.
This commit is contained in:
tijder 2015-11-07 10:43:22 +01:00
parent 5d0f84d32c
commit e7dbf0483f

View File

@ -287,7 +287,7 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
if 'To view this, please log in to verify you are 18 or older.' in webpage:
self.raise_login_required()
video_title = self._html_search_regex(r'<h1[^>]*>(.+?)</h1>', webpage, 'video_title', flags=re.DOTALL)
video_title = self._html_search_regex(r'<h1 itemscope[^>]*>(.+?)</h1>', webpage, 'video_title', flags=re.DOTALL)
video_title = re.sub(r' {2,}', ' ', video_title)
video_description = self._html_search_regex(r'"description":"([^"]+)', webpage, 'video_description', default='')
if not video_description: