[postprocessor/ffmpeg] Disable "Last message repeated" messages which cause non-zero...
authorSergey M <dstftw@gmail.com>
Mon, 28 Jan 2019 15:59:00 +0000 (22:59 +0700)
committerGitHub <noreply@github.com>
Mon, 28 Jan 2019 15:59:00 +0000 (22:59 +0700)
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)])