This ComfyUI workflow turns a plain-text prompt into a fully produced video with synchronized dialogue, sound effects, and music using the HappyHorse 1.1 model. The HappyHorseTextToVideoApi node sends your prompt and settings to the HappyHorse service, which generates a single video file with the audio track baked in. The SaveVideo node then writes that returned video to disk at your chosen path, so you end up with one ready-to-share file.
Technically, the workflow is lean and focused: HappyHorseTextToVideoApi handles all generation remotely (visuals and audio together) and outputs a unified video object. There is no intermediate frame assembly or separate audio pipeline to manage in ComfyUI. This makes it ideal for rapid iteration on short episodic content, product spots, and cutscenes where timing between visuals and sound is critical but you want to avoid multi-node complexity. By structuring your prompt with clear scene descriptions, quoted dialogue, and simple sound/music cues, you can guide HappyHorse 1.1 to produce coherent, timed sequences that SaveVideo preserves as a single file.
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/f1dc525f26dd.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














