Bugfix for generating movie from jpegs tagged as "mov" extension.

This commit is contained in:
Toke Jepsen 2019-07-23 21:51:41 +01:00
parent ca2baae479
commit 862bdf6ee2

View file

@ -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))