mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
add -y into base of ffmpeg arguments
This commit is contained in:
parent
78b4bbadc9
commit
f99f811ddd
1 changed files with 3 additions and 1 deletions
|
|
@ -308,6 +308,7 @@ class ExtractReviewSlate(openpype.api.Extractor):
|
|||
]
|
||||
concat_args = [
|
||||
ffmpeg_path,
|
||||
"-y",
|
||||
"-i", slate_v_path,
|
||||
"-i", input_path,
|
||||
]
|
||||
|
|
@ -319,6 +320,7 @@ class ExtractReviewSlate(openpype.api.Extractor):
|
|||
# - keep format of output
|
||||
if format_args:
|
||||
concat_args.extend(format_args)
|
||||
|
||||
# Use arguments from ffmpeg preset
|
||||
source_ffmpeg_cmd = repre.get("ffmpeg_cmd")
|
||||
if source_ffmpeg_cmd:
|
||||
|
|
@ -334,7 +336,7 @@ class ExtractReviewSlate(openpype.api.Extractor):
|
|||
concat_args.append(arg)
|
||||
# assumes arg has one parameter
|
||||
concat_args.append(args[indx + 1])
|
||||
concat_args.append("-y")
|
||||
|
||||
# add final output path
|
||||
concat_args.append(output_path)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue