From 56476f4230b0437dfeab47c94a05fe33b107246b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 24 Nov 2025 12:55:58 +0100 Subject: [PATCH] fix: add missing edit_song and edit_lyrics parameters to DiffRhythm workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix "edit song, edit lyrics, edit segments must be provided" error by adding the two missing parameters to all three DiffRhythm workflow files: - diffrhythm-random-generation-v1.json - diffrhythm-reference-based-v1.json - diffrhythm-full-length-t2m-v1.json Added empty string parameters at positions 9 and 10 in widgets_values array: - edit_song: "" (empty when edit=false) - edit_lyrics: "" (empty when edit=false) The DiffRhythmRun node requires 12 parameters total, not 10. These workflows use edit=false (no editing), so the edit parameters should be empty strings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../workflows/text-to-music/diffrhythm-full-length-t2m-v1.json | 2 ++ .../text-to-music/diffrhythm-random-generation-v1.json | 2 ++ .../workflows/text-to-music/diffrhythm-reference-based-v1.json | 2 ++ 3 files changed, 6 insertions(+) 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 514c5fc..db02355 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 @@ -30,6 +30,8 @@ "quality", 123, 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 d0255e2..996bbb7 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json @@ -30,6 +30,8 @@ "speed", -1, 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 5594c62..7d5099f 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json @@ -60,6 +60,8 @@ "speed", 456, false, + "", + "", "[-1, 20], [60, -1]" ], "title": "DiffRhythm Reference-Based Generation"