mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
replace FFMPEG string in command method
This commit is contained in:
parent
54c76b3b7f
commit
fdf4182155
1 changed files with 2 additions and 2 deletions
|
|
@ -217,7 +217,7 @@ class ModifiedBurnins(ffmpeg_burnins.Burnins):
|
|||
if self.filter_string:
|
||||
filters = '-vf "{}"'.format(self.filter_string)
|
||||
|
||||
return (ffmpeg_burnins.FFMPEG % {
|
||||
return (FFMPEG % {
|
||||
'input': self.source,
|
||||
'output': output,
|
||||
'args': '%s ' % args if args else '',
|
||||
|
|
@ -398,7 +398,7 @@ def burnins_from_data(input_path, codec_data, output_path, data, overwrite=True)
|
|||
codec_args = ''
|
||||
if codec_data is not []:
|
||||
codec_args = " ".join(codec_data)
|
||||
|
||||
|
||||
burnin.render(output_path, args=codec_args, overwrite=overwrite)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue