]> jfr.im git - yt-dlp.git/blob - youtube_dl/downloader/external.py
[download/external] move the check for multiple selected formats to get_suitable_down...
[yt-dlp.git] / youtube_dl / downloader / external.py
1 from __future__ import unicode_literals
2
3 import os.path
4 import subprocess
5 import sys
6 import re
7
8 from .common import FileDownloader
9 from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS
10 from ..compat import compat_str
11 from ..utils import (
12 cli_option,
13 cli_valueless_option,
14 cli_bool_option,
15 cli_configuration_args,
16 encodeFilename,
17 encodeArgument,
18 handle_youtubedl_headers,
19 check_executable,
20 )
21
22
23 class ExternalFD(FileDownloader):
24 def real_download(self, filename, info_dict):
25 self.report_destination(filename)
26 tmpfilename = self.temp_name(filename)
27
28 retval = self._call_downloader(tmpfilename, info_dict)
29 if retval == 0:
30 fsize = os.path.getsize(encodeFilename(tmpfilename))
31 self.to_screen('\r[%s] Downloaded %s bytes' % (self.get_basename(), fsize))
32 self.try_rename(tmpfilename, filename)
33 self._hook_progress({
34 'downloaded_bytes': fsize,
35 'total_bytes': fsize,
36 'filename': filename,
37 'status': 'finished',
38 })
39 return True
40 else:
41 self.to_stderr('\n')
42 self.report_error('%s exited with code %d' % (
43 self.get_basename(), retval))
44 return False
45
46 @classmethod
47 def get_basename(cls):
48 return cls.__name__[:-2].lower()
49
50 @property
51 def exe(self):
52 return self.params.get('external_downloader')
53
54 @classmethod
55 def available(cls):
56 return check_executable(cls.get_basename(), [cls.AVAILABLE_OPT])
57
58 @classmethod
59 def supports(cls, info_dict):
60 return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps')
61
62 @classmethod
63 def can_download(cls, info_dict):
64 return cls.available() and cls.supports(info_dict)
65
66 def _option(self, command_option, param):
67 return cli_option(self.params, command_option, param)
68
69 def _bool_option(self, command_option, param, true_value='true', false_value='false', separator=None):
70 return cli_bool_option(self.params, command_option, param, true_value, false_value, separator)
71
72 def _valueless_option(self, command_option, param, expected_value=True):
73 return cli_valueless_option(self.params, command_option, param, expected_value)
74
75 def _configuration_args(self, default=[]):
76 return cli_configuration_args(self.params, 'external_downloader_args', default)
77
78 def _call_downloader(self, tmpfilename, info_dict):
79 """ Either overwrite this or implement _make_cmd """
80 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
81
82 self._debug_cmd(cmd)
83
84 p = subprocess.Popen(
85 cmd, stderr=subprocess.PIPE)
86 _, stderr = p.communicate()
87 if p.returncode != 0:
88 self.to_stderr(stderr)
89 return p.returncode
90
91
92 class CurlFD(ExternalFD):
93 AVAILABLE_OPT = '-V'
94
95 def _make_cmd(self, tmpfilename, info_dict):
96 cmd = [self.exe, '--location', '-o', tmpfilename]
97 for key, val in info_dict['http_headers'].items():
98 cmd += ['--header', '%s: %s' % (key, val)]
99 cmd += self._option('--interface', 'source_address')
100 cmd += self._option('--proxy', 'proxy')
101 cmd += self._valueless_option('--insecure', 'nocheckcertificate')
102 cmd += self._configuration_args()
103 cmd += ['--', info_dict['url']]
104 return cmd
105
106
107 class AxelFD(ExternalFD):
108 AVAILABLE_OPT = '-V'
109
110 def _make_cmd(self, tmpfilename, info_dict):
111 cmd = [self.exe, '-o', tmpfilename]
112 for key, val in info_dict['http_headers'].items():
113 cmd += ['-H', '%s: %s' % (key, val)]
114 cmd += self._configuration_args()
115 cmd += ['--', info_dict['url']]
116 return cmd
117
118
119 class WgetFD(ExternalFD):
120 AVAILABLE_OPT = '--version'
121
122 def _make_cmd(self, tmpfilename, info_dict):
123 cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
124 for key, val in info_dict['http_headers'].items():
125 cmd += ['--header', '%s: %s' % (key, val)]
126 cmd += self._option('--bind-address', 'source_address')
127 cmd += self._option('--proxy', 'proxy')
128 cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')
129 cmd += self._configuration_args()
130 cmd += ['--', info_dict['url']]
131 return cmd
132
133
134 class Aria2cFD(ExternalFD):
135 AVAILABLE_OPT = '-v'
136
137 def _make_cmd(self, tmpfilename, info_dict):
138 cmd = [self.exe, '-c']
139 cmd += self._configuration_args([
140 '--min-split-size', '1M', '--max-connection-per-server', '4'])
141 dn = os.path.dirname(tmpfilename)
142 if dn:
143 cmd += ['--dir', dn]
144 cmd += ['--out', os.path.basename(tmpfilename)]
145 for key, val in info_dict['http_headers'].items():
146 cmd += ['--header', '%s: %s' % (key, val)]
147 cmd += self._option('--interface', 'source_address')
148 cmd += self._option('--all-proxy', 'proxy')
149 cmd += self._bool_option('--check-certificate', 'nocheckcertificate', 'false', 'true', '=')
150 cmd += ['--', info_dict['url']]
151 return cmd
152
153
154 class HttpieFD(ExternalFD):
155 @classmethod
156 def available(cls):
157 return check_executable('http', ['--version'])
158
159 def _make_cmd(self, tmpfilename, info_dict):
160 cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
161 for key, val in info_dict['http_headers'].items():
162 cmd += ['%s:%s' % (key, val)]
163 return cmd
164
165
166 class FFmpegFD(ExternalFD):
167 @classmethod
168 def supports(cls, info_dict):
169 return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms')
170
171 @classmethod
172 def available(cls):
173 return FFmpegPostProcessor().available
174
175 def _call_downloader(self, tmpfilename, info_dict):
176 url = info_dict['url']
177 ffpp = FFmpegPostProcessor(downloader=self)
178 ffpp.check_version()
179
180 args = [ffpp.executable, '-y']
181
182 start_time = info_dict.get('start_time') or 0
183 if start_time:
184 args += ['-ss', compat_str(start_time)]
185 end_time = info_dict.get('end_time')
186 if end_time:
187 args += ['-t', compat_str(end_time - start_time)]
188
189 if info_dict['http_headers'] and re.match(r'^https?://', url):
190 # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
191 # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
192 headers = handle_youtubedl_headers(info_dict['http_headers'])
193 args += [
194 '-headers',
195 ''.join('%s: %s\r\n' % (key, val) for key, val in headers.items())]
196
197 args += ['-i', url, '-c', 'copy']
198 if info_dict.get('protocol') == 'm3u8':
199 if self.params.get('hls_use_mpegts', False):
200 args += ['-f', 'mpegts']
201 else:
202 args += ['-f', 'mp4', '-bsf:a', 'aac_adtstoasc']
203 else:
204 args += ['-f', EXT_TO_OUT_FORMATS.get(info_dict['ext'], info_dict['ext'])]
205
206 args = [encodeArgument(opt) for opt in args]
207 args.append(encodeFilename(ffpp._ffmpeg_filename_argument(tmpfilename), True))
208
209 self._debug_cmd(args)
210
211 proc = subprocess.Popen(args, stdin=subprocess.PIPE)
212 try:
213 retval = proc.wait()
214 except KeyboardInterrupt:
215 # subprocces.run would send the SIGKILL signal to ffmpeg and the
216 # mp4 file couldn't be played, but if we ask ffmpeg to quit it
217 # produces a file that is playable (this is mostly useful for live
218 # streams). Note that Windows is not affected and produces playable
219 # files (see https://github.com/rg3/youtube-dl/issues/8300).
220 if sys.platform != 'win32':
221 proc.communicate(b'q')
222 raise
223 return retval
224
225
226 class AVconvFD(FFmpegFD):
227 pass
228
229 _BY_NAME = dict(
230 (klass.get_basename(), klass)
231 for name, klass in globals().items()
232 if name.endswith('FD') and name != 'ExternalFD'
233 )
234
235
236 def list_external_downloaders():
237 return sorted(_BY_NAME.keys())
238
239
240 def get_external_downloader(external_downloader):
241 """ Given the name of the executable, see whether we support the given
242 downloader . """
243 # Drop .exe extension on Windows
244 bn = os.path.splitext(os.path.basename(external_downloader))[0]
245 return _BY_NAME[bn]