[ffmpeg] Do not pass in byets to subprocess (Fixes #2717)
[youtube-dl] / youtube_dl / postprocessor / ffmpeg.py
index c22f2cdc648b440f52a08cb1ba7947e02a985019..8922920cd03b35a94701677173609153fb1f7aa2 100644 (file)
@@ -54,7 +54,7 @@ class FFmpegPostProcessor(PostProcessor):
         if self._downloader.params.get('verbose', False):
             self._downloader.to_screen(u'[debug] ffmpeg command line: %s' % shell_quote(cmd))
         p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-        stdout,stderr = p.communicate()
+        stdout, stderr = p.communicate()
         if p.returncode != 0:
             stderr = stderr.decode('utf-8', 'replace')
             msg = stderr.strip().split('\n')[-1]