]> jfr.im git - yt-dlp.git/blame - yt_dlp/downloader/external.py
[downloader/ffmpeg] Improve simultaneous download and merge
[yt-dlp.git] / yt_dlp / downloader / external.py
CommitLineData
222516d9
PH
1from __future__ import unicode_literals
2
3import os.path
f0298f65 4import re
222516d9 5import subprocess
12b84ac8 6import sys
f0298f65 7import time
5219cb3e 8
1009f67c 9from .fragment import FragmentFD
a50862b7
S
10from ..compat import (
11 compat_setenv,
12 compat_str,
13)
a755f825 14from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS
222516d9 15from ..utils import (
1195a38f
S
16 cli_option,
17 cli_valueless_option,
18 cli_bool_option,
330690a2 19 _configuration_args,
222516d9 20 encodeFilename,
74f8654a 21 encodeArgument,
12b84ac8 22 handle_youtubedl_headers,
99cbe98c 23 check_executable,
8bdc1494 24 is_outdated_version,
f5b1bca9 25 process_communicate_or_kill,
539d158c 26 sanitize_open,
222516d9
PH
27)
28
29
1009f67c 30class ExternalFD(FragmentFD):
5219cb3e 31 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps')
96fccc10 32 can_download_to_stdout = False
5219cb3e 33
222516d9
PH
34 def real_download(self, filename, info_dict):
35 self.report_destination(filename)
36 tmpfilename = self.temp_name(filename)
37
e7db6759 38 try:
f0298f65 39 started = time.time()
e7db6759
S
40 retval = self._call_downloader(tmpfilename, info_dict)
41 except KeyboardInterrupt:
42 if not info_dict.get('is_live'):
43 raise
44 # Live stream downloading cancellation should be considered as
45 # correct and expected termination thus all postprocessing
46 # should take place
47 retval = 0
48 self.to_screen('[%s] Interrupted by user' % self.get_basename())
49
222516d9 50 if retval == 0:
f0298f65
S
51 status = {
52 'filename': filename,
53 'status': 'finished',
54 'elapsed': time.time() - started,
55 }
56 if filename != '-':
80aa2460
JH
57 fsize = os.path.getsize(encodeFilename(tmpfilename))
58 self.to_screen('\r[%s] Downloaded %s bytes' % (self.get_basename(), fsize))
59 self.try_rename(tmpfilename, filename)
f0298f65 60 status.update({
80aa2460
JH
61 'downloaded_bytes': fsize,
62 'total_bytes': fsize,
80aa2460 63 })
3ba7740d 64 self._hook_progress(status, info_dict)
222516d9
PH
65 return True
66 else:
67 self.to_stderr('\n')
68 self.report_error('%s exited with code %d' % (
69 self.get_basename(), retval))
70 return False
71
72 @classmethod
73 def get_basename(cls):
74 return cls.__name__[:-2].lower()
75
76 @property
77 def exe(self):
52a8a1e1 78 return self.get_basename()
222516d9 79
99cbe98c 80 @classmethod
7f7de7f9 81 def available(cls, path=None):
52a8a1e1 82 path = check_executable(path or cls.get_basename(), [cls.AVAILABLE_OPT])
83 if path:
84 cls.exe = path
85 return path
86 return False
99cbe98c 87
222516d9
PH
88 @classmethod
89 def supports(cls, info_dict):
96fccc10 90 return (
91 (cls.can_download_to_stdout or not info_dict.get('to_stdout'))
92 and info_dict['protocol'] in cls.SUPPORTED_PROTOCOLS)
222516d9 93
2cb99ebb 94 @classmethod
7f7de7f9 95 def can_download(cls, info_dict, path=None):
96 return cls.available(path) and cls.supports(info_dict)
2cb99ebb 97
bf812ef7 98 def _option(self, command_option, param):
1195a38f 99 return cli_option(self.params, command_option, param)
bf812ef7 100
266b0ad6 101 def _bool_option(self, command_option, param, true_value='true', false_value='false', separator=None):
1195a38f 102 return cli_bool_option(self.params, command_option, param, true_value, false_value, separator)
266b0ad6 103
dc534b67 104 def _valueless_option(self, command_option, param, expected_value=True):
1195a38f 105 return cli_valueless_option(self.params, command_option, param, expected_value)
f30c2e8e 106
330690a2 107 def _configuration_args(self, keys=None, *args, **kwargs):
108 return _configuration_args(
109 self.get_basename(), self.params.get('external_downloader_args'), self.get_basename(),
110 keys, *args, **kwargs)
c75f0b36 111
222516d9
PH
112 def _call_downloader(self, tmpfilename, info_dict):
113 """ Either overwrite this or implement _make_cmd """
74f8654a 114 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
222516d9 115
74f8654a 116 self._debug_cmd(cmd)
222516d9 117
d7009caa 118 if 'fragments' in info_dict:
fe845284 119 fragment_retries = self.params.get('fragment_retries', 0)
120 skip_unavailable_fragments = self.params.get('skip_unavailable_fragments', True)
121
122 count = 0
123 while count <= fragment_retries:
124 p = subprocess.Popen(
125 cmd, stderr=subprocess.PIPE)
126 _, stderr = process_communicate_or_kill(p)
127 if p.returncode == 0:
128 break
129 # TODO: Decide whether to retry based on error code
130 # https://aria2.github.io/manual/en/html/aria2c.html#exit-status
131 self.to_stderr(stderr.decode('utf-8', 'replace'))
132 count += 1
133 if count <= fragment_retries:
134 self.to_screen(
135 '[%s] Got error. Retrying fragments (attempt %d of %s)...'
136 % (self.get_basename(), count, self.format_retries(fragment_retries)))
137 if count > fragment_retries:
138 if not skip_unavailable_fragments:
139 self.report_error('Giving up after %s fragment retries' % fragment_retries)
140 return -1
141
1009f67c 142 decrypt_fragment = self.decrypter(info_dict)
539d158c 143 dest, _ = sanitize_open(tmpfilename, 'wb')
fe845284 144 for frag_index, fragment in enumerate(info_dict['fragments']):
145 fragment_filename = '%s-Frag%d' % (tmpfilename, frag_index)
146 try:
147 src, _ = sanitize_open(fragment_filename, 'rb')
148 except IOError:
149 if skip_unavailable_fragments and frag_index > 1:
150 self.to_screen('[%s] Skipping fragment %d ...' % (self.get_basename(), frag_index))
151 continue
152 self.report_error('Unable to open fragment %d' % frag_index)
153 return -1
1009f67c 154 dest.write(decrypt_fragment(fragment, src.read()))
539d158c 155 src.close()
fe845284 156 if not self.params.get('keep_fragments', False):
157 os.remove(encodeFilename(fragment_filename))
539d158c 158 dest.close()
fe845284 159 os.remove(encodeFilename('%s.frag.urls' % tmpfilename))
160 else:
161 p = subprocess.Popen(
162 cmd, stderr=subprocess.PIPE)
163 _, stderr = process_communicate_or_kill(p)
164 if p.returncode != 0:
165 self.to_stderr(stderr.decode('utf-8', 'replace'))
222516d9
PH
166 return p.returncode
167
168
384b6202 169class CurlFD(ExternalFD):
91ee320b 170 AVAILABLE_OPT = '-V'
99cbe98c 171
384b6202 172 def _make_cmd(self, tmpfilename, info_dict):
163d9667 173 cmd = [self.exe, '--location', '-o', tmpfilename]
002ea8fe 174 if info_dict.get('http_headers') is not None:
175 for key, val in info_dict['http_headers'].items():
176 cmd += ['--header', '%s: %s' % (key, val)]
177
98e698f1
RA
178 cmd += self._bool_option('--continue-at', 'continuedl', '-', '0')
179 cmd += self._valueless_option('--silent', 'noprogress')
180 cmd += self._valueless_option('--verbose', 'verbose')
181 cmd += self._option('--limit-rate', 'ratelimit')
37b239b3
S
182 retry = self._option('--retry', 'retries')
183 if len(retry) == 2:
184 if retry[1] in ('inf', 'infinite'):
185 retry[1] = '2147483647'
186 cmd += retry
98e698f1 187 cmd += self._option('--max-filesize', 'max_filesize')
9f3da138 188 cmd += self._option('--interface', 'source_address')
e7a8c303 189 cmd += self._option('--proxy', 'proxy')
dc534b67 190 cmd += self._valueless_option('--insecure', 'nocheckcertificate')
c75f0b36 191 cmd += self._configuration_args()
384b6202
PH
192 cmd += ['--', info_dict['url']]
193 return cmd
194
98e698f1
RA
195 def _call_downloader(self, tmpfilename, info_dict):
196 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
197
198 self._debug_cmd(cmd)
199
acfccaca 200 # curl writes the progress to stderr so don't capture it.
98e698f1 201 p = subprocess.Popen(cmd)
f5b1bca9 202 process_communicate_or_kill(p)
98e698f1
RA
203 return p.returncode
204
384b6202 205
e0ac5214 206class AxelFD(ExternalFD):
91ee320b 207 AVAILABLE_OPT = '-V'
99cbe98c 208
e0ac5214 209 def _make_cmd(self, tmpfilename, info_dict):
210 cmd = [self.exe, '-o', tmpfilename]
002ea8fe 211 if info_dict.get('http_headers') is not None:
212 for key, val in info_dict['http_headers'].items():
213 cmd += ['-H', '%s: %s' % (key, val)]
e0ac5214 214 cmd += self._configuration_args()
215 cmd += ['--', info_dict['url']]
216 return cmd
217
218
222516d9 219class WgetFD(ExternalFD):
91ee320b 220 AVAILABLE_OPT = '--version'
99cbe98c 221
222516d9
PH
222 def _make_cmd(self, tmpfilename, info_dict):
223 cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
002ea8fe 224 if info_dict.get('http_headers') is not None:
225 for key, val in info_dict['http_headers'].items():
226 cmd += ['--header', '%s: %s' % (key, val)]
8c80603f
S
227 cmd += self._option('--limit-rate', 'ratelimit')
228 retry = self._option('--tries', 'retries')
229 if len(retry) == 2:
230 if retry[1] in ('inf', 'infinite'):
231 retry[1] = '0'
232 cmd += retry
9f3da138 233 cmd += self._option('--bind-address', 'source_address')
bf812ef7 234 cmd += self._option('--proxy', 'proxy')
dc534b67 235 cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')
c75f0b36 236 cmd += self._configuration_args()
222516d9
PH
237 cmd += ['--', info_dict['url']]
238 return cmd
239
240
384b6202 241class Aria2cFD(ExternalFD):
91ee320b 242 AVAILABLE_OPT = '-v'
52a8a1e1 243 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'dash_frag_urls', 'm3u8_frag_urls')
99cbe98c 244
0a473f2f 245 @staticmethod
246 def supports_manifest(manifest):
247 UNSUPPORTED_FEATURES = [
248 r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [1]
249 # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
250 ]
251 check_results = (not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES)
252 return all(check_results)
253
384b6202 254 def _make_cmd(self, tmpfilename, info_dict):
2b3bf01c 255 cmd = [self.exe, '-c',
256 '--console-log-level=warn', '--summary-interval=0', '--download-result=hide',
257 '--file-allocation=none', '-x16', '-j16', '-s16']
258 if 'fragments' in info_dict:
259 cmd += ['--allow-overwrite=true', '--allow-piece-length-change=true']
ff0f78e1 260 else:
261 cmd += ['--min-split-size', '1M']
2b3bf01c 262
002ea8fe 263 if info_dict.get('http_headers') is not None:
264 for key, val in info_dict['http_headers'].items():
265 cmd += ['--header', '%s: %s' % (key, val)]
691d5823 266 cmd += self._option('--max-overall-download-limit', 'ratelimit')
9f3da138 267 cmd += self._option('--interface', 'source_address')
bf812ef7 268 cmd += self._option('--all-proxy', 'proxy')
266b0ad6 269 cmd += self._bool_option('--check-certificate', 'nocheckcertificate', 'false', 'true', '=')
71f47617 270 cmd += self._bool_option('--remote-time', 'updatetime', 'true', 'false', '=')
2b3bf01c 271 cmd += self._configuration_args()
272
eb55bad5 273 # aria2c strips out spaces from the beginning/end of filenames and paths.
274 # We work around this issue by adding a "./" to the beginning of the
275 # filename and relative path, and adding a "/" at the end of the path.
276 # See: https://github.com/yt-dlp/yt-dlp/issues/276
277 # https://github.com/ytdl-org/youtube-dl/issues/20312
278 # https://github.com/aria2/aria2/issues/1373
2b3bf01c 279 dn = os.path.dirname(tmpfilename)
280 if dn:
eb55bad5 281 if not os.path.isabs(dn):
282 dn = '.%s%s' % (os.path.sep, dn)
283 cmd += ['--dir', dn + os.path.sep]
2b3bf01c 284 if 'fragments' not in info_dict:
eb55bad5 285 cmd += ['--out', '.%s%s' % (os.path.sep, os.path.basename(tmpfilename))]
5219cb3e 286 cmd += ['--auto-file-renaming=false']
2b3bf01c 287
d7009caa 288 if 'fragments' in info_dict:
fe845284 289 cmd += ['--file-allocation=none', '--uri-selector=inorder']
5219cb3e 290 url_list_file = '%s.frag.urls' % tmpfilename
291 url_list = []
fe845284 292 for frag_index, fragment in enumerate(info_dict['fragments']):
293 fragment_filename = '%s-Frag%d' % (os.path.basename(tmpfilename), frag_index)
294 url_list.append('%s\n\tout=%s' % (fragment['url'], fragment_filename))
539d158c 295 stream, _ = sanitize_open(url_list_file, 'wb')
296 stream.write('\n'.join(url_list).encode('utf-8'))
297 stream.close()
5219cb3e 298 cmd += ['-i', url_list_file]
299 else:
300 cmd += ['--', info_dict['url']]
384b6202
PH
301 return cmd
302
906e2f0e
JMF
303
304class HttpieFD(ExternalFD):
52a8a1e1 305 AVAILABLE_OPT = '--version'
306
99cbe98c 307 @classmethod
9e631877 308 def available(cls, path=None):
52a8a1e1 309 return ExternalFD.available(cls, path or 'http')
99cbe98c 310
906e2f0e
JMF
311 def _make_cmd(self, tmpfilename, info_dict):
312 cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
002ea8fe 313
314 if info_dict.get('http_headers') is not None:
315 for key, val in info_dict['http_headers'].items():
316 cmd += ['%s:%s' % (key, val)]
906e2f0e
JMF
317 return cmd
318
12b84ac8 319
320class FFmpegFD(ExternalFD):
6251555f 321 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'm3u8', 'm3u8_native', 'rtsp', 'rtmp', 'rtmp_ffmpeg', 'mms', 'http_dash_segments')
96fccc10 322 can_download_to_stdout = True
12b84ac8 323
99cbe98c 324 @classmethod
52a8a1e1 325 def available(cls, path=None):
326 # TODO: Fix path for ffmpeg
dbf5416a 327 # Fixme: This may be wrong when --ffmpeg-location is used
99cbe98c 328 return FFmpegPostProcessor().available
329
c111cefa 330 @classmethod
331 def supports(cls, info_dict):
332 return all(proto in cls.SUPPORTED_PROTOCOLS for proto in info_dict['protocol'].split('+'))
333
e36d50c5 334 def on_process_started(self, proc, stdin):
335 """ Override this in subclasses """
336 pass
337
dbf5416a 338 @classmethod
d5fe04f5 339 def can_merge_formats(cls, info_dict, params):
dbf5416a 340 return (
341 info_dict.get('requested_formats')
342 and info_dict.get('protocol')
343 and not params.get('allow_unplayable_formats')
344 and 'no-direct-merge' not in params.get('compat_opts', [])
345 and cls.can_download(info_dict))
346
12b84ac8 347 def _call_downloader(self, tmpfilename, info_dict):
18e674b4 348 urls = [f['url'] for f in info_dict.get('requested_formats', [])] or [info_dict['url']]
12b84ac8 349 ffpp = FFmpegPostProcessor(downloader=self)
77dea16a 350 if not ffpp.available:
e3b771a8 351 self.report_error('m3u8 download detected but ffmpeg could not be found. Please install')
77dea16a 352 return False
12b84ac8 353 ffpp.check_version()
354
355 args = [ffpp.executable, '-y']
356
a609e61a
S
357 for log_level in ('quiet', 'verbose'):
358 if self.params.get(log_level, False):
359 args += ['-loglevel', log_level]
360 break
2ec1759f 361 if not self.params.get('verbose'):
362 args += ['-hide_banner']
a609e61a 363
bb36a55c 364 args += info_dict.get('_ffmpeg_args', [])
365
366 # This option exists only for compatibility. Extractors should use `_ffmpeg_args` instead
36fce548
RA
367 seekable = info_dict.get('_seekable')
368 if seekable is not None:
369 # setting -seekable prevents ffmpeg from guessing if the server
370 # supports seeking(by adding the header `Range: bytes=0-`), which
371 # can cause problems in some cases
067aa17e 372 # https://github.com/ytdl-org/youtube-dl/issues/11800#issuecomment-275037127
36fce548
RA
373 # http://trac.ffmpeg.org/ticket/6125#comment:10
374 args += ['-seekable', '1' if seekable else '0']
375
694c47b2 376 # start_time = info_dict.get('start_time') or 0
377 # if start_time:
378 # args += ['-ss', compat_str(start_time)]
379 # end_time = info_dict.get('end_time')
380 # if end_time:
381 # args += ['-t', compat_str(end_time - start_time)]
12b84ac8 382
18e674b4 383 if info_dict.get('http_headers') is not None and re.match(r'^https?://', urls[0]):
12b84ac8 384 # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
385 # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
386 headers = handle_youtubedl_headers(info_dict['http_headers'])
387 args += [
388 '-headers',
389 ''.join('%s: %s\r\n' % (key, val) for key, val in headers.items())]
390
e62d9c5c
S
391 env = None
392 proxy = self.params.get('proxy')
393 if proxy:
394 if not re.match(r'^[\da-zA-Z]+://', proxy):
395 proxy = 'http://%s' % proxy
20bad91d
YCH
396
397 if proxy.startswith('socks'):
398 self.report_warning(
6c9b71bc
YCH
399 '%s does not support SOCKS proxies. Downloading is likely to fail. '
400 'Consider adding --hls-prefer-native to your command.' % self.get_basename())
20bad91d 401
e62d9c5c
S
402 # Since December 2015 ffmpeg supports -http_proxy option (see
403 # http://git.videolan.org/?p=ffmpeg.git;a=commit;h=b4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd)
404 # We could switch to the following code if we are able to detect version properly
405 # args += ['-http_proxy', proxy]
406 env = os.environ.copy()
407 compat_setenv('HTTP_PROXY', proxy, env=env)
50ce1c33 408 compat_setenv('http_proxy', proxy, env=env)
e62d9c5c 409
4230c489 410 protocol = info_dict.get('protocol')
411
412 if protocol == 'rtmp':
413 player_url = info_dict.get('player_url')
414 page_url = info_dict.get('page_url')
415 app = info_dict.get('app')
416 play_path = info_dict.get('play_path')
417 tc_url = info_dict.get('tc_url')
418 flash_version = info_dict.get('flash_version')
419 live = info_dict.get('rtmp_live', False)
d7d86fdd 420 conn = info_dict.get('rtmp_conn')
4230c489 421 if player_url is not None:
422 args += ['-rtmp_swfverify', player_url]
423 if page_url is not None:
424 args += ['-rtmp_pageurl', page_url]
425 if app is not None:
426 args += ['-rtmp_app', app]
427 if play_path is not None:
428 args += ['-rtmp_playpath', play_path]
429 if tc_url is not None:
430 args += ['-rtmp_tcurl', tc_url]
431 if flash_version is not None:
432 args += ['-rtmp_flashver', flash_version]
433 if live:
434 args += ['-rtmp_live', 'live']
d7d86fdd
RA
435 if isinstance(conn, list):
436 for entry in conn:
437 args += ['-rtmp_conn', entry]
438 elif isinstance(conn, compat_str):
439 args += ['-rtmp_conn', conn]
4230c489 440
330690a2 441 for i, url in enumerate(urls):
442 args += self._configuration_args((f'_i{i + 1}', '_i')) + ['-i', url]
6b6c16ca 443
330690a2 444 args += ['-c', 'copy']
6251555f 445 if info_dict.get('requested_formats') or protocol == 'http_dash_segments':
446 for (i, fmt) in enumerate(info_dict.get('requested_formats') or [info_dict]):
447 stream_number = fmt.get('manifest_stream_number', 0)
448 a_or_v = 'a' if fmt.get('acodec') != 'none' else 'v'
449 args.extend(['-map', f'{i}:{a_or_v}:{stream_number}'])
6d0fe752
JH
450
451 if self.params.get('test', False):
a50862b7 452 args += ['-fs', compat_str(self._TEST_FILE_SIZE)]
6d0fe752 453
e5611e8e 454 ext = info_dict['ext']
f5436c5d 455 if protocol in ('m3u8', 'm3u8_native'):
9bd20204 456 use_mpegts = (tmpfilename == '-') or self.params.get('hls_use_mpegts')
457 if use_mpegts is None:
458 use_mpegts = info_dict.get('is_live')
459 if use_mpegts:
12b84ac8 460 args += ['-f', 'mpegts']
461 else:
8bdc1494 462 args += ['-f', 'mp4']
be670b8e 463 if (ffpp.basename == 'ffmpeg' and is_outdated_version(ffpp._versions['ffmpeg'], '3.2', False)) and (not info_dict.get('acodec') or info_dict['acodec'].split('.')[0] in ('aac', 'mp4a')):
8bdc1494 464 args += ['-bsf:a', 'aac_adtstoasc']
4230c489 465 elif protocol == 'rtmp':
466 args += ['-f', 'flv']
e5611e8e 467 elif ext == 'mp4' and tmpfilename == '-':
468 args += ['-f', 'mpegts']
12b84ac8 469 else:
e5611e8e 470 args += ['-f', EXT_TO_OUT_FORMATS.get(ext, ext)]
12b84ac8 471
6251555f 472 args += self._configuration_args(('_o1', '_o', ''))
330690a2 473
12b84ac8 474 args = [encodeArgument(opt) for opt in args]
d868f43c 475 args.append(encodeFilename(ffpp._ffmpeg_filename_argument(tmpfilename), True))
12b84ac8 476 self._debug_cmd(args)
477
e62d9c5c 478 proc = subprocess.Popen(args, stdin=subprocess.PIPE, env=env)
e36d50c5 479 if url in ('-', 'pipe:'):
480 self.on_process_started(proc, proc.stdin)
12b84ac8 481 try:
482 retval = proc.wait()
f5b1bca9 483 except BaseException as e:
12b84ac8 484 # subprocces.run would send the SIGKILL signal to ffmpeg and the
485 # mp4 file couldn't be played, but if we ask ffmpeg to quit it
486 # produces a file that is playable (this is mostly useful for live
487 # streams). Note that Windows is not affected and produces playable
067aa17e 488 # files (see https://github.com/ytdl-org/youtube-dl/issues/8300).
e36d50c5 489 if isinstance(e, KeyboardInterrupt) and sys.platform != 'win32' and url not in ('-', 'pipe:'):
f5b1bca9 490 process_communicate_or_kill(proc, b'q')
491 else:
492 proc.kill()
493 proc.wait()
12b84ac8 494 raise
495 return retval
496
497
498class AVconvFD(FFmpegFD):
499 pass
500
582be358 501
222516d9
PH
502_BY_NAME = dict(
503 (klass.get_basename(), klass)
504 for name, klass in globals().items()
1009f67c 505 if name.endswith('FD') and name not in ('ExternalFD', 'FragmentFD')
222516d9
PH
506)
507
508
509def list_external_downloaders():
510 return sorted(_BY_NAME.keys())
511
512
513def get_external_downloader(external_downloader):
514 """ Given the name of the executable, see whether we support the given
515 downloader . """
6c4d20cd
S
516 # Drop .exe extension on Windows
517 bn = os.path.splitext(os.path.basename(external_downloader))[0]
52a8a1e1 518 return _BY_NAME.get(bn)