[postprocessor/ffmpeg] Disable "Last message repeated" messages which cause non-zero...
[youtube-dl] / youtube_dl / postprocessor / ffmpeg.py
index fff2021ff39bceb092167285a8cdae9f6cb791db..33dbcad9fa989999b601f5e077d1496a780f32f1 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)])