
This ComfyUI workflow, titled '1.2 Starter – Image to Video,' is designed to transform a series of static images into a seamless video using the Wan 2.2 model. The workflow leverages several nodes, including LoadImage, MarkdownNote, and a unique node identified by its hash, 5df1f6c5-ddad-49be-a893-fcc0e3d5778e. The process begins with loading individual images, which are then fed into the Create Video node. This node is responsible for stitching the images together into a video format, with a specified frame rate of 16 frames per second (fps). The final output is then linked to a Save Video node, which allows users to save the generated video to their desired location.
Technically, this workflow is beneficial for users looking to create dynamic video content from static images without needing extensive video editing skills. The Wan 2.2 model is particularly adept at handling image-to-video transformations with high noise tolerance, making it suitable for various creative and professional applications. The workflow's simplicity, combined with the robust capabilities of the Wan 2.2 model, makes it a powerful tool for video content creators and digital artists.
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













