From af03f5dbe33ce74c38d82a4f7b212fa501b2fcca Mon Sep 17 00:00:00 2001 From: Eugene Fairley Date: Sat, 28 Jun 2025 22:15:22 -0700 Subject: [PATCH] save --- comfy_extras/nodes_wan.py | 1 + 1 file changed, 1 insertion(+) 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:]