mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
removed unnecessary changes
This commit is contained in:
parent
312f4c2cf9
commit
a190048764
1 changed files with 2 additions and 4 deletions
|
|
@ -1059,10 +1059,8 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
# NOTE: value in "-ac" was hardcoded to 2, changed to audio inputs len.
|
||||
# Need to merge audio if there are more than 1 input.
|
||||
if len(audio_inputs) > 1:
|
||||
audio_out_args.extend([
|
||||
"-filter_complex", "amerge",
|
||||
"-ac", str(len(audio_inputs))
|
||||
])
|
||||
audio_out_args.append("-filter_complex amerge")
|
||||
audio_out_args.append("-ac {}".format(len(audio_inputs)))
|
||||
|
||||
return audio_in_args, audio_filters, audio_out_args
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue