
This workflow turns a single character image and a text prompt into a fully mixed audio clip with speech, ambience, background music, and sound effects. It centers on the ByteDanceSeedAudio node (Seed Audio 1.0), which accepts your image from LoadImage as a visual reference to derive a matching vocal identity, then synthesizes the spoken script and supporting layers described in your prompt. The output is saved with SaveAudioAdvanced, so you leave ComfyUI with a ready-to-share audio file.
Technically, the image conditions the model’s voice characteristics (vocal color, style cues) while the prompt serves both as the script and the sonic direction for ambience, music, and SFX. The MarkdownNote node is included for in-graph instructions or prompt notes. Because everything runs inside a simple chain—LoadImage → ByteDanceSeedAudio → SaveAudioAdvanced—you can iterate quickly: swap images to change the perceived character, refine the prompt to adjust performance and sound design, and re-run to compare variations. This makes it practical for rapid voice ideation, scene-building, and audio mockups without leaving ComfyUI.
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
GET https://comfy.org/workflows/download/9974666c3acb.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run this workflow (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
wf = client.workflows.from_file("workflow_api.json")
job = client.run(wf)
for output in job.get_outputs("<output-node-id>"):
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














