logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 2b3afe6b0fee226bb1e61027d815df088cb40757
parent e71be6ee9f239308765443d49d91358fa306e48a
Author: Andrew Udvare <audvare@gmail.com>
Date:   Sun, 27 Jan 2019 22:24:37 -0500

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

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)])