Merge remote-tracking branch 'jaimeMF/opus-fix'
[youtube-dl] / youtube_dl / PostProcessor.py
index 07b6895c0abb5c424edf6345cefae1c08d97f088..039e014982e2396ad3175a4c3fcd3dc15030952e 100644 (file)
@@ -83,6 +83,8 @@ class FFmpegPostProcessor(PostProcessor):
                + opts +
                [encodeFilename(self._ffmpeg_filename_argument(out_path))])
 
+        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()
         if p.returncode != 0: