Browse Source

FFmpegMergerPP: Print an info message with the destination before running ffmpeg

master
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
e103fd46ca
1 changed files with 1 additions and 0 deletions
  1. 1
      youtube_dl/postprocessor/ffmpeg.py

1
youtube_dl/postprocessor/ffmpeg.py

@ -479,6 +479,7 @@ class FFmpegMergerPP(FFmpegPostProcessor):
def run(self, info):
filename = info['filepath']
args = ['-c', 'copy']
self._downloader.to_screen(u'[ffmpeg] Merging formats into "%s"' % filename)
self.run_ffmpeg_multiple_files(info['__files_to_merge'], filename, args)
return True, info
Loading…
Cancel
Save