Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Standalone: editorial not publishing thumbnails on all subsets #2258

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def create_representations(
})

# exception for mp4 preview
if ".mp4" in _reminding_file:
if ext in ["mp4", "mov"]:
frame_start = 0
frame_end = (
(instance_data["frameEnd"] - instance_data["frameStart"])
Expand All @@ -255,6 +255,7 @@ def create_representations(
"step": 1,
"fps": self.context.data.get("fps"),
"name": "review",
"thumbnail": True,
"tags": ["review", "ftrackreview", "delete"],
})

Expand Down