mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
Override user configured args
This allows `ModifyChaptersPP` to re-encode the video using user supplied codecs, then use `-c copy` to concatenate the files without encoding again.
This commit is contained in:
parent
19edaa44fc
commit
816d8ec98a
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ def make_args(file, args, name, number):
|
|||
args += ['-movflags', '+faststart']
|
||||
if number == 1:
|
||||
keys.append('')
|
||||
args += self._configuration_args(self.basename, keys)
|
||||
args = self._configuration_args(self.basename, keys) + args
|
||||
if name == 'i':
|
||||
args.append('-i')
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue