mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 19:17:06 -05:00 
			
		
		
		
	YoutubeDL: Use its urlopen method for downloading the thumbnail.
				
					
				
			This commit is contained in:
		@@ -918,7 +918,7 @@ class YoutubeDL(object):
 | 
			
		||||
                    self.to_screen('[%s] %s: Downloading thumbnail ...' %
 | 
			
		||||
                                   (info_dict['extractor'], info_dict['id']))
 | 
			
		||||
                    try:
 | 
			
		||||
                        uf = compat_urllib_request.urlopen(info_dict['thumbnail'])
 | 
			
		||||
                        uf = self.urlopen(info_dict['thumbnail'])
 | 
			
		||||
                        with open(thumb_filename, 'wb') as thumbf:
 | 
			
		||||
                            shutil.copyfileobj(uf, thumbf)
 | 
			
		||||
                        self.to_screen('[%s] %s: Writing thumbnail to: %s' %
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user