1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-23 18:12:16 +08:00

Fix merge error

This commit is contained in:
Mark Lee 2014-12-01 19:10:45 -08:00
parent 1037943c8f
commit 16d46b732f

View File

@ -86,7 +86,7 @@ class FFmpegPostProcessor(PostProcessor):
files_cmd = []
for path in input_paths:
files_cmd.extend(['-i', encodeFilename(path, True)])
cmd = ([self._get_executable(), '-y'] +
cmd = ([self._executable, '-y'] +
self._encode_opts(input_opts) + files_cmd + self._encode_opts(opts) +
[encodeFilename(self._ffmpeg_filename_argument(out_path), True)])