From 92d72ea4a68df434d486ecfa992a5fb2e8833980 Mon Sep 17 00:00:00 2001 From: Eugene Fairley Date: Fri, 27 Jun 2025 22:59:57 -0700 Subject: [PATCH] save --- comfy_extras/nodes_wan.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comfy_extras/nodes_wan.py b/comfy_extras/nodes_wan.py index 840b49418..232ce2bc9 100644 --- a/comfy_extras/nodes_wan.py +++ b/comfy_extras/nodes_wan.py @@ -621,7 +621,7 @@ class WanTrackToVideo: # Parse tracks from JSON tracks_data = parse_json_tracks(tracks) - + print(f"parsed tracks: {tracks}") if tracks_data: # Convert tracks to tensor format arrs = [] @@ -631,6 +631,7 @@ class WanTrackToVideo: tracks_np = np.stack(arrs, axis=0) processed_tracks = process_tracks(tracks_np, (width, height)).unsqueeze(0) + print(f"Processed tracks: {processed_tracks}") # Debugging line if start_image is not None: start_image = comfy.utils.common_upscale(start_image[:length].movedim(-1, 1), width, height, "bilinear", "center").movedim(1, -1)