mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	adding support for axel download manager
This commit is contained in:
		 vijayanand nandam
					vijayanand nandam
				
			
				
					committed by
					
						 Sergey M․
						Sergey M․
					
				
			
			
				
	
			
			
			 Sergey M․
						Sergey M․
					
				
			
						parent
						
							bf94d763ba
						
					
				
				
					commit
					e0ac521438
				
			| @@ -83,6 +83,16 @@ class CurlFD(ExternalFD): | ||||
|         return cmd | ||||
|  | ||||
|  | ||||
| class AxelFD(ExternalFD): | ||||
|     def _make_cmd(self, tmpfilename, info_dict): | ||||
|         cmd = [self.exe, '-o', tmpfilename] | ||||
|         for key, val in info_dict['http_headers'].items(): | ||||
|             cmd += ['-H', '%s: %s' % (key, val)] | ||||
|         cmd += self._configuration_args() | ||||
|         cmd += ['--', info_dict['url']] | ||||
|         return cmd | ||||
|  | ||||
|  | ||||
| class WgetFD(ExternalFD): | ||||
|     def _make_cmd(self, tmpfilename, info_dict): | ||||
|         cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies'] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user