Browse Source

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

master-ytdl-org
Sergey M 6 years ago
committed by GitHub
parent
commit
1397a790ff
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      youtube_dl/postprocessor/ffmpeg.py

+ 1
- 0
youtube_dl/postprocessor/ffmpeg.py View File

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


Loading…
Cancel
Save