mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:57:06 -05:00 
			
		
		
		
	[sockshare] Fix title extraction (Fixes #3592)
This commit is contained in:
		@@ -61,7 +61,10 @@ class SockshareIE(InfoExtractor):
 | 
			
		||||
            r'<a href="([^"]*)".+class="download_file_link"',
 | 
			
		||||
            webpage, 'file url')
 | 
			
		||||
        video_url = "http://www.sockshare.com" + video_url
 | 
			
		||||
        title = self._html_search_regex(r'<h1>(.+)<strong>', webpage, 'title')
 | 
			
		||||
        title = self._html_search_regex((
 | 
			
		||||
            r'<h1>(.+)<strong>',
 | 
			
		||||
            r'var name = "([^"]+)";'),
 | 
			
		||||
            webpage, 'title', default=None)
 | 
			
		||||
        thumbnail = self._html_search_regex(
 | 
			
		||||
            r'<img\s+src="([^"]*)".+?name="bg"',
 | 
			
		||||
            webpage, 'thumbnail')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user