mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:17:07 -05:00 
			
		
		
		
	[downloader/external] Clarify that ffmpeg doesn't support SOCKS
Ref: #10304
This commit is contained in:
		@@ -220,6 +220,11 @@ class FFmpegFD(ExternalFD):
 | 
			
		||||
        if proxy:
 | 
			
		||||
            if not re.match(r'^[\da-zA-Z]+://', proxy):
 | 
			
		||||
                proxy = 'http://%s' % proxy
 | 
			
		||||
 | 
			
		||||
            if proxy.startswith('socks'):
 | 
			
		||||
                self.report_warning(
 | 
			
		||||
                    '%s does not support SOCKS proxies. Downloading may fail.' % self.get_basename())
 | 
			
		||||
 | 
			
		||||
            # Since December 2015 ffmpeg supports -http_proxy option (see
 | 
			
		||||
            # http://git.videolan.org/?p=ffmpeg.git;a=commit;h=b4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd)
 | 
			
		||||
            # We could switch to the following code if we are able to detect version properly
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user