Fixed skyreels gen bug

This commit is contained in:
DeepBeepMeep 2025-06-18 00:20:53 +02:00
parent acc5ec9d9b
commit b562190b93
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ class DTT2V:
if input_video != None:
_ , _ , height, width = input_video.shape
elif image_start != None:
image_start = image_start[0]
image_start = image_start
frame_width, frame_height = image_start.size
height, width = calculate_new_dimensions(height, width, frame_height, frame_width, fit_into_canvas)
image_start = np.array(image_start.resize((width, height))).transpose(2, 0, 1)