1 from __future__ import unicode_literals
8 from .common import FileDownloader
13 from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS
18 cli_configuration_args,
21 handle_youtubedl_headers,
27 class ExternalFD(FileDownloader):
28 def real_download(self, filename, info_dict):
29 self.report_destination(filename)
30 tmpfilename = self.temp_name(filename)
33 retval = self._call_downloader(tmpfilename, info_dict)
34 except KeyboardInterrupt:
35 if not info_dict.get('is_live'):
37 # Live stream downloading cancellation should be considered as
38 # correct and expected termination thus all postprocessing
41 self.to_screen('[%s] Interrupted by user' % self.get_basename())
44 fsize = os.path.getsize(encodeFilename(tmpfilename))
45 self.to_screen('\r[%s] Downloaded %s bytes' % (self.get_basename(), fsize))
46 self.try_rename(tmpfilename, filename)
48 'downloaded_bytes': fsize,
56 self.report_error('%s exited with code %d' % (
57 self.get_basename(), retval))
61 def get_basename(cls):
62 return cls.__name__[:-2].lower()
66 return self.params.get('external_downloader')
70 return check_executable(cls.get_basename(), [cls.AVAILABLE_OPT])
73 def supports(cls, info_dict):
74 return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps')
77 def can_download(cls, info_dict):
78 return cls.available() and cls.supports(info_dict)
80 def _option(self, command_option, param):
81 return cli_option(self.params, command_option, param)
83 def _bool_option(self, command_option, param, true_value='true', false_value='false', separator=None):
84 return cli_bool_option(self.params, command_option, param, true_value, false_value, separator)
86 def _valueless_option(self, command_option, param, expected_value=True):
87 return cli_valueless_option(self.params, command_option, param, expected_value)
89 def _configuration_args(self, default=[]):
90 return cli_configuration_args(self.params, 'external_downloader_args', default)
92 def _call_downloader(self, tmpfilename, info_dict):
93 """ Either overwrite this or implement _make_cmd """
94 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
99 cmd, stderr=subprocess.PIPE)
100 _, stderr = p.communicate()
101 if p.returncode != 0:
102 self.to_stderr(stderr.decode('utf-8', 'replace'))
106 class CurlFD(ExternalFD):
109 def _make_cmd(self, tmpfilename, info_dict):
110 cmd = [self.exe, '--location', '-o', tmpfilename]
111 for key, val in info_dict['http_headers'].items():
112 cmd += ['--header', '%s: %s' % (key, val)]
113 cmd += self._bool_option('--continue-at', 'continuedl', '-', '0')
114 cmd += self._valueless_option('--silent', 'noprogress')
115 cmd += self._valueless_option('--verbose', 'verbose')
116 cmd += self._option('--limit-rate', 'ratelimit')
117 cmd += self._option('--retry', 'retries')
118 cmd += self._option('--max-filesize', 'max_filesize')
119 cmd += self._option('--interface', 'source_address')
120 cmd += self._option('--proxy', 'proxy')
121 cmd += self._valueless_option('--insecure', 'nocheckcertificate')
122 cmd += self._configuration_args()
123 cmd += ['--', info_dict['url']]
126 def _call_downloader(self, tmpfilename, info_dict):
127 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
131 # curl writes the progress to stderr so don't capture it.
132 p = subprocess.Popen(cmd)
137 class AxelFD(ExternalFD):
140 def _make_cmd(self, tmpfilename, info_dict):
141 cmd = [self.exe, '-o', tmpfilename]
142 for key, val in info_dict['http_headers'].items():
143 cmd += ['-H', '%s: %s' % (key, val)]
144 cmd += self._configuration_args()
145 cmd += ['--', info_dict['url']]
149 class WgetFD(ExternalFD):
150 AVAILABLE_OPT = '--version'
152 def _make_cmd(self, tmpfilename, info_dict):
153 cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
154 for key, val in info_dict['http_headers'].items():
155 cmd += ['--header', '%s: %s' % (key, val)]
156 cmd += self._option('--bind-address', 'source_address')
157 cmd += self._option('--proxy', 'proxy')
158 cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')
159 cmd += self._configuration_args()
160 cmd += ['--', info_dict['url']]
164 class Aria2cFD(ExternalFD):
167 def _make_cmd(self, tmpfilename, info_dict):
168 cmd = [self.exe, '-c']
169 cmd += self._configuration_args([
170 '--min-split-size', '1M', '--max-connection-per-server', '4'])
171 dn = os.path.dirname(tmpfilename)
174 cmd += ['--out', os.path.basename(tmpfilename)]
175 for key, val in info_dict['http_headers'].items():
176 cmd += ['--header', '%s: %s' % (key, val)]
177 cmd += self._option('--interface', 'source_address')
178 cmd += self._option('--all-proxy', 'proxy')
179 cmd += self._bool_option('--check-certificate', 'nocheckcertificate', 'false', 'true', '=')
180 cmd += ['--', info_dict['url']]
184 class HttpieFD(ExternalFD):
187 return check_executable('http', ['--version'])
189 def _make_cmd(self, tmpfilename, info_dict):
190 cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
191 for key, val in info_dict['http_headers'].items():
192 cmd += ['%s:%s' % (key, val)]
196 class FFmpegFD(ExternalFD):
198 def supports(cls, info_dict):
199 return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms')
203 return FFmpegPostProcessor().available
205 def _call_downloader(self, tmpfilename, info_dict):
206 url = info_dict['url']
207 ffpp = FFmpegPostProcessor(downloader=self)
208 if not ffpp.available:
209 self.report_error('m3u8 download detected but ffmpeg or avconv could not be found. Please install one.')
213 args = [ffpp.executable, '-y']
215 for log_level in ('quiet', 'verbose'):
216 if self.params.get(log_level, False):
217 args += ['-loglevel', log_level]
220 seekable = info_dict.get('_seekable')
221 if seekable is not None:
222 # setting -seekable prevents ffmpeg from guessing if the server
223 # supports seeking(by adding the header `Range: bytes=0-`), which
224 # can cause problems in some cases
225 # https://github.com/rg3/youtube-dl/issues/11800#issuecomment-275037127
226 # http://trac.ffmpeg.org/ticket/6125#comment:10
227 args += ['-seekable', '1' if seekable else '0']
229 args += self._configuration_args()
231 # start_time = info_dict.get('start_time') or 0
233 # args += ['-ss', compat_str(start_time)]
234 # end_time = info_dict.get('end_time')
236 # args += ['-t', compat_str(end_time - start_time)]
238 if info_dict['http_headers'] and re.match(r'^https?://', url):
239 # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
240 # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
241 headers = handle_youtubedl_headers(info_dict['http_headers'])
244 ''.join('%s: %s\r\n' % (key, val) for key, val in headers.items())]
247 proxy = self.params.get('proxy')
249 if not re.match(r'^[\da-zA-Z]+://', proxy):
250 proxy = 'http://%s' % proxy
252 if proxy.startswith('socks'):
254 '%s does not support SOCKS proxies. Downloading is likely to fail. '
255 'Consider adding --hls-prefer-native to your command.' % self.get_basename())
257 # Since December 2015 ffmpeg supports -http_proxy option (see
258 # http://git.videolan.org/?p=ffmpeg.git;a=commit;h=b4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd)
259 # We could switch to the following code if we are able to detect version properly
260 # args += ['-http_proxy', proxy]
261 env = os.environ.copy()
262 compat_setenv('HTTP_PROXY', proxy, env=env)
263 compat_setenv('http_proxy', proxy, env=env)
265 protocol = info_dict.get('protocol')
267 if protocol == 'rtmp':
268 player_url = info_dict.get('player_url')
269 page_url = info_dict.get('page_url')
270 app = info_dict.get('app')
271 play_path = info_dict.get('play_path')
272 tc_url = info_dict.get('tc_url')
273 flash_version = info_dict.get('flash_version')
274 live = info_dict.get('rtmp_live', False)
275 if player_url is not None:
276 args += ['-rtmp_swfverify', player_url]
277 if page_url is not None:
278 args += ['-rtmp_pageurl', page_url]
280 args += ['-rtmp_app', app]
281 if play_path is not None:
282 args += ['-rtmp_playpath', play_path]
283 if tc_url is not None:
284 args += ['-rtmp_tcurl', tc_url]
285 if flash_version is not None:
286 args += ['-rtmp_flashver', flash_version]
288 args += ['-rtmp_live', 'live']
290 args += ['-i', url, '-c', 'copy']
292 if self.params.get('test', False):
293 args += ['-fs', compat_str(self._TEST_FILE_SIZE)]
295 if protocol in ('m3u8', 'm3u8_native'):
296 if self.params.get('hls_use_mpegts', False) or tmpfilename == '-':
297 args += ['-f', 'mpegts']
299 args += ['-f', 'mp4']
300 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')):
301 args += ['-bsf:a', 'aac_adtstoasc']
302 elif protocol == 'rtmp':
303 args += ['-f', 'flv']
305 args += ['-f', EXT_TO_OUT_FORMATS.get(info_dict['ext'], info_dict['ext'])]
307 args = [encodeArgument(opt) for opt in args]
308 args.append(encodeFilename(ffpp._ffmpeg_filename_argument(tmpfilename), True))
310 self._debug_cmd(args)
312 proc = subprocess.Popen(args, stdin=subprocess.PIPE, env=env)
315 except KeyboardInterrupt:
316 # subprocces.run would send the SIGKILL signal to ffmpeg and the
317 # mp4 file couldn't be played, but if we ask ffmpeg to quit it
318 # produces a file that is playable (this is mostly useful for live
319 # streams). Note that Windows is not affected and produces playable
320 # files (see https://github.com/rg3/youtube-dl/issues/8300).
321 if sys.platform != 'win32':
322 proc.communicate(b'q')
327 class AVconvFD(FFmpegFD):
332 (klass.get_basename(), klass)
333 for name, klass in globals().items()
334 if name.endswith('FD') and name != 'ExternalFD'
338 def list_external_downloaders():
339 return sorted(_BY_NAME.keys())
342 def get_external_downloader(external_downloader):
343 """ Given the name of the executable, see whether we support the given
345 # Drop .exe extension on Windows
346 bn = os.path.splitext(os.path.basename(external_downloader))[0]