From: Jaime Marquínez Ferrándiz Date: Tue, 17 Feb 2015 15:21:02 +0000 (+0100) Subject: [downloader/external] curl: Add the '--location' flag X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=163d966707a7e49bcdad4ebd9189922b58223395;p=youtube-dl [downloader/external] curl: Add the '--location' flag curl doesn't follow redirections by default --- diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index ff031d2e0..51c41c704 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -75,7 +75,7 @@ class ExternalFD(FileDownloader): class CurlFD(ExternalFD): def _make_cmd(self, tmpfilename, info_dict): - cmd = [self.exe, '-o', tmpfilename] + cmd = [self.exe, '--location', '-o', tmpfilename] for key, val in info_dict['http_headers'].items(): cmd += ['--header', '%s: %s' % (key, val)] cmd += self._source_address('--interface')