From 3c07d57e1c70f2e8d2fd3219c988d0963fe80264 Mon Sep 17 00:00:00 2001 From: Toke Stuart Jepsen Date: Mon, 29 Jun 2020 09:36:25 +0100 Subject: [PATCH] Only publish 1 frame for review. --- pype/plugins/photoshop/publish/extract_review.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/plugins/photoshop/publish/extract_review.py b/pype/plugins/photoshop/publish/extract_review.py index 796e97600c..49e932eb67 100644 --- a/pype/plugins/photoshop/publish/extract_review.py +++ b/pype/plugins/photoshop/publish/extract_review.py @@ -89,7 +89,7 @@ class ExtractReview(pype.api.Extractor): "files": os.path.basename(mov_path), "stagingDir": staging_dir, "frameStart": 1, - "frameEnd": 2, + "frameEnd": 1, "fps": 25, "preview": True, "tags": ["review", "ftrackreview"] @@ -97,7 +97,7 @@ class ExtractReview(pype.api.Extractor): # Required for extract_review plugin (L222 onwards). instance.data["frameStart"] = 1 - instance.data["frameEnd"] = 2 + instance.data["frameEnd"] = 1 instance.data["fps"] = 25 self.log.info(f"Extracted {instance} to {staging_dir}")