From 073711c017b440209df9a5c9162739750293c796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 24 Nov 2025 15:57:25 +0100 Subject: [PATCH] fix: use correct DiffRhythm parameter order from UI testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct widgets_values order (11 parameters): 0: model (string) 1: prompt/style_prompt (text) 2: unload_model (boolean) 3: odeint_method (enum) 4: steps (int) 5: cfg (int) 6: quality_or_speed (enum) 7: seed (int) 8: control_after_generate (string) 9: edit (boolean) 10: segments/edit_segments (text) Updated all four workflows: - diffrhythm-simple-t2m-v1.json - diffrhythm-random-generation-v1.json - diffrhythm-reference-based-v1.json - diffrhythm-full-length-t2m-v1.json 🤖 Generated with Claude Code Co-Authored-By: Claude --- .../text-to-music/diffrhythm-full-length-t2m-v1.json | 10 +++++----- .../text-to-music/diffrhythm-random-generation-v1.json | 10 +++++----- .../text-to-music/diffrhythm-reference-based-v1.json | 10 +++++----- .../text-to-music/diffrhythm-simple-t2m-v1.json | 10 +++++----- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json b/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json index 97df23a..85db7d4 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json @@ -21,17 +21,17 @@ "Node name for S&R": "DiffRhythmRun" }, "widgets_values": [ - false, "cfm_full_model.pt", "Cinematic orchestral piece with soaring strings, powerful brass, and emotional piano melodies building to an epic crescendo", - "", - "[-1, 20], [60, -1]", + true, "euler", 30, 4, "quality", - true, - 123 + 123, + "randomize", + false, + "[-1, 20], [60, -1]" ], "title": "DiffRhythm Full-Length Text-to-Music (4m45s)" }, diff --git a/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json b/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json index 0a471cb..55ba62f 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json @@ -21,17 +21,17 @@ "Node name for S&R": "DiffRhythmRun" }, "widgets_values": [ - false, "cfm_model_v1_2.pt", "", - "", - "[-1, 20], [60, -1]", + true, "euler", 30, 1, "speed", - true, - -1 + -1, + "randomize", + false, + "[-1, 20], [60, -1]" ], "title": "DiffRhythm Random Generation (No Prompt)" }, diff --git a/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json b/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json index 5163701..efe8b93 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json @@ -51,17 +51,17 @@ "Node name for S&R": "DiffRhythmRun" }, "widgets_values": [ - false, "cfm_model_v1_2.pt", "Energetic rock music with driving guitar riffs and powerful drums", - "", - "[-1, 20], [60, -1]", + true, "euler", 30, 5, "speed", - true, - 456 + 456, + "randomize", + false, + "[-1, 20], [60, -1]" ], "title": "DiffRhythm Reference-Based Generation" }, diff --git a/comfyui/workflows/text-to-music/diffrhythm-simple-t2m-v1.json b/comfyui/workflows/text-to-music/diffrhythm-simple-t2m-v1.json index 726e7e9..3f422cb 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-simple-t2m-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-simple-t2m-v1.json @@ -21,17 +21,17 @@ "Node name for S&R": "DiffRhythmRun" }, "widgets_values": [ - false, "cfm_model_v1_2.pt", "Upbeat electronic dance music with energetic beats and synthesizer melodies", - "", - "[-1, 20], [60, -1]", + true, "euler", 30, 4, "speed", - true, - 42 + 42, + "randomize", + false, + "[-1, 20], [60, -1]" ], "title": "DiffRhythm Text-to-Music (95s)" },