From: Jaime Marquínez Ferrándiz Date: Fri, 17 Jan 2014 13:31:23 +0000 (+0100) Subject: FFmpegMergerPP: Print an info message with the destination before running ffmpeg X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=e103fd46ca48a92de653dfa94301928856c22c82;p=youtube-dl FFmpegMergerPP: Print an info message with the destination before running ffmpeg --- diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py index 8c19ed7fa..c22f2cdc6 100644 --- a/youtube_dl/postprocessor/ffmpeg.py +++ b/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