FFmpegMergerPP: Print an info message with the destination before running ffmpeg
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Fri, 17 Jan 2014 13:31:23 +0000 (14:31 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Fri, 17 Jan 2014 13:31:23 +0000 (14:31 +0100)
youtube_dl/postprocessor/ffmpeg.py

index 8c19ed7fa1fb833103c519754499a44e9bf3a76b..c22f2cdc648b440f52a08cb1ba7947e02a985019 100644 (file)
@@ -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