FFmpegPostProcessor: print the command line used if the --verbose option is given
This commit is contained in:
parent
b4cdc245cf
commit
4eb7f1d12e
2 changed files with 7 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue