mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
add continuos arguments next to each other
This commit is contained in:
parent
b5d7ae0d2a
commit
78b4bbadc9
1 changed files with 2 additions and 1 deletions
|
|
@ -295,12 +295,14 @@ class ExtractReviewSlate(openpype.api.Extractor):
|
||||||
# this will reencode the output
|
# this will reencode the output
|
||||||
if input_audio:
|
if input_audio:
|
||||||
fmap = [
|
fmap = [
|
||||||
|
"-filter_complex",
|
||||||
"[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]",
|
"[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]",
|
||||||
"-map", '[v]',
|
"-map", '[v]',
|
||||||
"-map", '[a]'
|
"-map", '[a]'
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
fmap = [
|
fmap = [
|
||||||
|
"-filter_complex",
|
||||||
"[0:v] [1:v] concat=n=2:v=1:a=0 [v]",
|
"[0:v] [1:v] concat=n=2:v=1:a=0 [v]",
|
||||||
"-map", '[v]'
|
"-map", '[v]'
|
||||||
]
|
]
|
||||||
|
|
@ -308,7 +310,6 @@ class ExtractReviewSlate(openpype.api.Extractor):
|
||||||
ffmpeg_path,
|
ffmpeg_path,
|
||||||
"-i", slate_v_path,
|
"-i", slate_v_path,
|
||||||
"-i", input_path,
|
"-i", input_path,
|
||||||
"-filter_complex",
|
|
||||||
]
|
]
|
||||||
concat_args.extend(fmap)
|
concat_args.extend(fmap)
|
||||||
if offset_timecode:
|
if offset_timecode:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue