mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 05:07:07 -05:00 
			
		
		
		
	[ard] Fix title (#3006)
This commit is contained in:
		@@ -38,7 +38,9 @@ class ARDIE(InfoExtractor):
 | 
				
			|||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        title = self._html_search_regex(
 | 
					        title = self._html_search_regex(
 | 
				
			||||||
            r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>', webpage, 'title')
 | 
					            [r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>',
 | 
				
			||||||
 | 
					             r'<h4 class="headline">(.*?)</h4>'],
 | 
				
			||||||
 | 
					            webpage, 'title')
 | 
				
			||||||
        description = self._html_search_meta(
 | 
					        description = self._html_search_meta(
 | 
				
			||||||
            'dcterms.abstract', webpage, 'description')
 | 
					            'dcterms.abstract', webpage, 'description')
 | 
				
			||||||
        thumbnail = self._og_search_thumbnail(webpage)
 | 
					        thumbnail = self._og_search_thumbnail(webpage)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user