[postprocessor/ffmpeg] Disable "Last message repeated" messages which cause non-zero...
authorAndrew Udvare <audvare@gmail.com>
Mon, 28 Jan 2019 03:24:37 +0000 (22:24 -0500)
committerAndrew Udvare <audvare@gmail.com>
Mon, 28 Jan 2019 03:24:37 +0000 (22:24 -0500)
youtube_dl/postprocessor/ffmpeg.py

index b952b0970a12940caf4ece032566452511a4de5c..8ef03f43bda594e8f7173e3dd5ba8192d79ad682 100644 (file)
@@ -218,6 +218,7 @@ class FFmpegPostProcessor(PostProcessor):
                 encodeFilename(self._ffmpeg_filename_argument(path), True)
             ])
         cmd = ([encodeFilename(self.executable, True), encodeArgument('-y')] +
+               ['-loglevel', 'repeat+info'] +
                files_cmd +
                [encodeArgument(o) for o in opts] +
                [encodeFilename(self._ffmpeg_filename_argument(out_path), True)])