Fix bug with WanAnimateToVideo node. (#9988)

This commit is contained in:
comfyanonymous 2025-09-22 14:26:58 -07:00 committed by GitHub
parent e3206351b0
commit 8a5ac527e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1210,7 +1210,7 @@ class WanAnimateToVideo(io.ComfyNode):
background_video = background_video[video_frame_offset:]
background_video = comfy.utils.common_upscale(background_video[:length].movedim(-1, 1), width, height, "area", "center").movedim(1, -1)
if background_video.shape[0] > ref_images_num:
image[ref_images_num:background_video.shape[0] - ref_images_num] = background_video[ref_images_num:]
image[ref_images_num:background_video.shape[0]] = background_video[ref_images_num:]
mask_refmotion = torch.ones((1, 1, latent_length * 4, concat_latent_image.shape[-2], concat_latent_image.shape[-1]), device=mask.device, dtype=mask.dtype)
if continue_motion is not None: