logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 1397a790ffe17472a818c99d85a049253b91116c
parent 7f903dd8bfbc9c2de129d5b0be23ef62d8ca3df3
Author: Sergey M <dstftw@gmail.com>
Date:   Mon, 28 Jan 2019 22:59:00 +0700

[postprocessor/ffmpeg] Disable "Last message repeated" messages which cause non-zero exit status (#19025)


Diffstat:

Myoutube_dl/postprocessor/ffmpeg.py1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -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)])