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.
pull/12317/head
tcely 2 months ago committed by GitHub
parent 19edaa44fc
commit 816d8ec98a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -347,7 +347,7 @@ class FFmpegPostProcessor(PostProcessor):
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…
Cancel
Save