mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:17:07 -05:00 
			
		
		
		
	[crunchyroll] Fix title extraction (Closes #7396)
This commit is contained in:
		@@ -287,7 +287,9 @@ 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'(?s)<h1[^>]*>((?:(?!<h1).)*?<span[^>]+itemprop=["\']title["\'][^>]*>(?:(?!<h1).)+?)</h1>',
 | 
			
		||||
            webpage, 'video_title')
 | 
			
		||||
        video_title = re.sub(r' {2,}', ' ', video_title)
 | 
			
		||||
        video_description = self._html_search_regex(r'"description":"([^"]+)', webpage, 'video_description', default='')
 | 
			
		||||
        if not video_description:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user