From a3c870127ace9343f2a96b6961c38d0658cf1621 Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 21 Mar 2026 14:25:29 +0100 Subject: [PATCH] ComfyUI: separate Workflows fuer Musik und SFX - workflow_music.json: MusicGen optimiert (stereo, 48kHz, cfg 5.0) - workflow_sfx.json: AudioGen optimiert (kurze SFX, cfg 4.0) Co-Authored-By: Claude Sonnet 4.6 --- comfyui-audio/workflow_music.json | 79 +++++++++++++++++++++++++++++++ comfyui-audio/workflow_sfx.json | 77 ++++++++++++++++++++++++++++++ 2 files changed, 156 insertions(+) create mode 100644 comfyui-audio/workflow_music.json create mode 100644 comfyui-audio/workflow_sfx.json diff --git a/comfyui-audio/workflow_music.json b/comfyui-audio/workflow_music.json new file mode 100644 index 0000000..029c393 --- /dev/null +++ b/comfyui-audio/workflow_music.json @@ -0,0 +1,79 @@ +{ + "last_node_id": 3, + "last_link_id": 2, + "nodes": [ + { + "id": 1, + "type": "MusicGen", + "pos": [50, 100], + "size": {"0": 480, "1": 370}, + "flags": {}, + "order": 0, + "mode": 0, + "inputs": [], + "outputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "links": [1], "slot_index": 0} + ], + "properties": {"Node name for S&R": "MusicGen"}, + "widgets_values": [ + "epic dark fantasy orchestral RPG main menu theme, war drums, deep brass horns, sweeping strings, ancient mysterious atmosphere, cinematic, 80 BPM", + 30.0, + "facebook/musicgen-stereo-medium", + 0, + 0.9, + 5.0, + 250, + 18.0 + ] + }, + { + "id": 2, + "type": "AudioUpsample", + "pos": [580, 100], + "size": {"0": 300, "1": 120}, + "flags": {}, + "order": 1, + "mode": 0, + "inputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "link": 1} + ], + "outputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "links": [2], "slot_index": 0} + ], + "properties": {"Node name for S&R": "AudioUpsample"}, + "widgets_values": [48000] + }, + { + "id": 3, + "type": "AudioPreview", + "pos": [930, 100], + "size": {"0": 250, "1": 80}, + "flags": {}, + "order": 2, + "mode": 0, + "inputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "link": 2} + ], + "outputs": [], + "properties": {"Node name for S&R": "AudioPreview"}, + "widgets_values": [] + } + ], + "links": [ + [1, 1, 0, 2, 0, "AUDIO_PATH"], + [2, 2, 0, 3, 0, "AUDIO_PATH"] + ], + "groups": [ + { + "title": "Musik Pipeline: MusicGen → Upsample 48kHz → Preview", + "bounding": [30, 65, 1180, 180], + "color": "#3d2a5a", + "font_size": 14 + } + ], + "config": {}, + "extra": { + "notes": "Tipps:\n- temperature 0.8-0.9 = konsistenter Sound\n- cfg_coef 5.0 = mehr am Prompt orientiert\n- extend_stride 18 = keine Lücken bei langen Tracks\n- stereo-large für beste Qualität (6GB VRAM)" + }, + "version": 0.4 +} diff --git a/comfyui-audio/workflow_sfx.json b/comfyui-audio/workflow_sfx.json new file mode 100644 index 0000000..2380e0d --- /dev/null +++ b/comfyui-audio/workflow_sfx.json @@ -0,0 +1,77 @@ +{ + "last_node_id": 3, + "last_link_id": 2, + "nodes": [ + { + "id": 1, + "type": "AudioGen", + "pos": [50, 100], + "size": {"0": 480, "1": 330}, + "flags": {}, + "order": 0, + "mode": 0, + "inputs": [], + "outputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "links": [1], "slot_index": 0} + ], + "properties": {"Node name for S&R": "AudioGen"}, + "widgets_values": [ + "fast sword swing whoosh attack sound effect combat", + 2.0, + 0, + 1.0, + 4.0, + 250 + ] + }, + { + "id": 2, + "type": "AudioUpsample", + "pos": [580, 100], + "size": {"0": 300, "1": 120}, + "flags": {}, + "order": 1, + "mode": 0, + "inputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "link": 1} + ], + "outputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "links": [2], "slot_index": 0} + ], + "properties": {"Node name for S&R": "AudioUpsample"}, + "widgets_values": [48000] + }, + { + "id": 3, + "type": "AudioPreview", + "pos": [930, 100], + "size": {"0": 250, "1": 80}, + "flags": {}, + "order": 2, + "mode": 0, + "inputs": [ + {"name": "audio_file", "type": "AUDIO_PATH", "link": 2} + ], + "outputs": [], + "properties": {"Node name for S&R": "AudioPreview"}, + "widgets_values": [] + } + ], + "links": [ + [1, 1, 0, 2, 0, "AUDIO_PATH"], + [2, 2, 0, 3, 0, "AUDIO_PATH"] + ], + "groups": [ + { + "title": "SFX Pipeline: AudioGen → Upsample 48kHz → Preview", + "bounding": [30, 65, 1180, 180], + "color": "#1a3a2a", + "font_size": 14 + } + ], + "config": {}, + "extra": { + "notes": "Tipps fuer gute SFX:\n- duration 1.5-3s fuer Attacken\n- cfg_coef 4.0-5.0 = schärferer Sound\n- temperature 0.9-1.0\n- Prompts: sehr konkret beschreiben (material + bewegung + umgebung)" + }, + "version": 0.4 +}