Sergey M․
5 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
7 additions and
5 deletions
-
youtube_dl/postprocessor/ffmpeg.py
|
|
@ -217,11 +217,13 @@ class FFmpegPostProcessor(PostProcessor): |
|
|
|
encodeArgument('-i'), |
|
|
|
encodeFilename(self._ffmpeg_filename_argument(path), True) |
|
|
|
]) |
|
|
|
cmd = ([encodeFilename(self.executable, True), encodeArgument('-y')] + |
|
|
|
[encodeArgument('-loglevel'), encodeArgument('repeat+info')] + |
|
|
|
files_cmd + |
|
|
|
[encodeArgument(o) for o in opts] + |
|
|
|
[encodeFilename(self._ffmpeg_filename_argument(out_path), True)]) |
|
|
|
cmd = [encodeFilename(self.executable, True), encodeArgument('-y')] |
|
|
|
# avconv does not have repeat option |
|
|
|
if self.basename == 'ffmpeg': |
|
|
|
cmd += [encodeArgument('-loglevel'), encodeArgument('repeat+info')] |
|
|
|
cmd += (files_cmd + |
|
|
|
[encodeArgument(o) for o in opts] + |
|
|
|
[encodeFilename(self._ffmpeg_filename_argument(out_path), True)]) |
|
|
|
|
|
|
|
if self._downloader.params.get('verbose', False): |
|
|
|
self._downloader.to_screen('[debug] ffmpeg command line: %s' % shell_quote(cmd)) |
|
|
|