Nuke: skip thumbnail creation on farm submission.

The thumbnail is being created when publishing from the baked colourspace movie.
This commit is contained in:
Toke Stuart Jepsen 2020-09-02 08:56:29 +01:00
parent 297fcdc8da
commit cd6c83913f
2 changed files with 8 additions and 1 deletions

View file

@ -81,6 +81,11 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
jpeg_items.append("-i {}".format(full_input_path))
# output arguments from presets
jpeg_items.extend(ffmpeg_args.get("output") or [])
# If its a movie file, we just want one frame.
if repre["ext"] == "mov":
jpeg_items.append("-vframes 1")
# output file
jpeg_items.append(full_output_path)