mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
feat(global): added lut filter to ffmpeg
This commit is contained in:
parent
48e5c4fd26
commit
49eadd8a2d
1 changed files with 7 additions and 0 deletions
|
|
@ -162,6 +162,13 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
|
||||
# output filename
|
||||
output_args.append(full_output_path)
|
||||
|
||||
lut_path = instance.data.get("lutPath")
|
||||
if lut_path:
|
||||
lut_arg = "-vf \"lut3d=file='{}'\"".format(
|
||||
lut_path)
|
||||
output_args.insert(0, lut_arg)
|
||||
|
||||
mov_args = [
|
||||
os.path.join(
|
||||
os.environ.get(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue