mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Bugfix for generating movie from jpegs tagged as "mov" extension.
This commit is contained in:
parent
ca2baae479
commit
862bdf6ee2
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
|
||||
# necessary input data
|
||||
# adds start arg only if image sequence
|
||||
if "mov" not in repre_new['ext']:
|
||||
if isinstance(repre["files"], list):
|
||||
input_args.append("-start_number {0} -framerate {1}".format(
|
||||
start_frame, fps))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue