This ComfyUI workflow turns a single still image into a high-fidelity video clip using the Wan 3.0 Image-to-Video API. It’s built around four nodes: LoadImage to bring your source frame into the graph, Wan3ImageToVideoApi to generate the animated sequence on a remote service, SaveVideo to encode the frames to a standard video file, and MarkdownNote for inline instructions. The pipeline is simple and reliable: your input image is loaded, sent to Wan 3.0 for temporal synthesis, and the returned frames are packaged into a playable video.

Technically, Wan 3.0 performs motion synthesis conditioned on the content of the single image, producing realistic camera/lens movement and subject dynamics in one pass. While the Wan 3.0 family supports multimodal inputs, this specific workflow is image-only and focuses on up to 30 seconds of output. You control the key generation settings in the Wan3ImageToVideoApi node (e.g., clip duration and any parameters exposed by your API endpoint), and finalize playback characteristics like FPS and file path in SaveVideo. This makes it well-suited for cinematic b-roll, product hero shots, and documentary-style scene recreation directly from a still.

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.

473606b441c6.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.

عرض جميع سير العمل
Showing 30 of 30 templates