Seedance 2.0 Mini: Reference to Video turns two still images into a single, cinematic video with AI-driven camera motion and strong character consistency. In ComfyUI, the workflow is compact and focused: two LoadImage nodes feed the ByteDance2ReferenceNode (the generator that runs the Seedance 2.0 Mini model), and the frames are encoded to a final clip with SaveVideo. By supplying a pair of complementary references—commonly one close-up for identity and one wider image for pose, outfit, or scene—the model blends cues to maintain the same subject across time while moving the virtual camera for a polished, shot-like result.
Technically, ByteDance2ReferenceNode ingests both reference images and synthesizes a sequence of frames conditioned on those visuals. It handles motion, composition, and temporal coherence internally, so you don’t need a separate sampler or flow node. SaveVideo then assembles the generated frames to your chosen resolution and FPS. The minimal node set makes this ideal for rapid iteration: swap references, adjust motion/length settings in the generator, and quickly export clips for storytelling, branded content, or short-film beats where continuity and shot language matter.
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.
Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
// Install (beta)
npm i @comfyorg/sdk
// Run this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).
Comfy Cloud API access requires a plan with an API key.
FAQ














