aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-17 14:31:23 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-17 14:31:23 +0100
commite103fd46ca48a92de653dfa94301928856c22c82 (patch)
tree9c9d67241205b4f23836e8b5f1576cc6da7024b3
parent877bfd69d13600fe28a75c3842dbdd933e4ecfd4 (diff)
downloadyoutube-dl-e103fd46ca48a92de653dfa94301928856c22c82.tar.xz
FFmpegMergerPP: Print an info message with the destination before running ffmpeg
-rw-r--r--youtube_dl/postprocessor/ffmpeg.py1
1 files changed, 1 insertions, 0 deletions
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