youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 269aecd0c010de98fa8816d511f061e0768757f4
parent aafddb2b0a0c6493e5c1e9f92c1570d3c018845b
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon,  7 Apr 2014 23:32:50 +0200

[ffmpeg] Do not pass in byets to subprocess (Fixes #2717)

Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -53,8 +53,7 @@ class FFmpegPostProcessor(PostProcessor): if self._downloader.params.get('verbose', False): self._downloader.to_screen(u'[debug] ffmpeg command line: %s' % shell_quote(cmd)) - bcmd = [self._downloader.encode(c) for c in cmd] - p = subprocess.Popen(bcmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = p.communicate() if p.returncode != 0: stderr = stderr.decode('utf-8', 'replace')