mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
make sure output frames are integers
This commit is contained in:
parent
bd854fc7e1
commit
7b9f29f5bf
1 changed files with 2 additions and 2 deletions
|
|
@ -249,8 +249,8 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
"handle_end": handle_end,
|
||||
"frame_start_handle": frame_start_handle,
|
||||
"frame_end_handle": frame_end_handle,
|
||||
"output_frame_start": output_frame_start,
|
||||
"output_frame_end": output_frame_end,
|
||||
"output_frame_start": int(output_frame_start),
|
||||
"output_frame_end": int(output_frame_end),
|
||||
"pixel_aspect": instance.data.get("pixelAspect", 1),
|
||||
"resolution_width": instance.data.get("resolutionWidth"),
|
||||
"resolution_height": instance.data.get("resolutionHeight"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue