Seedance2.0 Real Human: Image to Video is a compliant, identity-verified image-to-video workflow built with ByteDance partner nodes in ComfyUI. It guides you through creating verified real-human assets first, then generating a personalized video that transfers motion from a reference video to your identity photo. The verification step is handled by ByteDanceCreateImageAsset and ByteDanceCreateVideoAsset, which turn your uploaded portrait and reference video into reusable asset IDs and a shared Group ID that ties same-person assets together for backend recognition.

Once assets are approved and IDs are available, ByteDance2ReferenceNode performs the image-to-video generation using those IDs (instead of raw media) to meet the provider’s legal requirements. PreviewAny lets you quickly check intermediate info or the final clip, and SaveVideo writes the result to disk. LoadImage and LoadVideo handle local file inputs, while the MarkdownNote provides in-graph guidance. The workflow also includes a Save IDs for future reuse section so you can store and reuse your Group ID and asset IDs, avoiding repeat uploads for the same person. Asset limits apply (images up to 9, videos up to 3, audio up to 3).

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.

d4b951896b54.json
Fetching workflow JSON…

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

Frequently Asked Questions

View all workflows
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates