diff --git a/comfy_extras/nodes_wan.py b/comfy_extras/nodes_wan.py index d7118e697..4a5359412 100644 --- a/comfy_extras/nodes_wan.py +++ b/comfy_extras/nodes_wan.py @@ -672,6 +672,7 @@ class WanTrackToVideo: y = vae.encode( res )[0] + print("mask shape:", msk.shape, "y shape:", y.shape) y = torch.concat([msk, y]) motion_patched = patch_motion(processed_tracks, y, temperature, (4, 16), topk)[None] mask, video = motion_patched[:, 0:4], motion_patched[:, 4:]