Преглед на файлове

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

Jaime Marquínez Ferrándiz преди 11 години
родител
ревизия
e103fd46ca
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      youtube_dl/postprocessor/ffmpeg.py

+ 1 - 0
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