This ComfyUI workflow turns a single still image into a short, animated video using Lightricks’ LTX‑2.3 image‑to‑video model. The pipeline is straightforward: LoadImage brings your source frame into the graph, a custom LTX‑2.3 node (2454ad83-157c-40dd-9f19-5daaf4041ce0) synthesizes motion conditioned on that image and a text prompt, and SaveVideo assembles the generated frames into a playable clip. MarkdownNote nodes inside the graph provide in‑context guidance and prompt tips so you can follow along during the AI on the Lot 2026 ComfyUI 101 workshop.

Technically, the LTX‑2.3 node encodes your input image into the model’s latent space and generates a temporally coherent sequence guided by your prompt. You control the character and pace of motion by describing events over time ("Core Actions") and specifying concrete "Visual Details" you want to preserve, as recommended in the LTX‑2.3 prompting tips. Typical controls exposed by the node include the text prompt, seed for reproducibility, and clip characteristics such as number of frames and/or FPS (exact parameters depend on the node build). SaveVideo then writes the frames to disk at your chosen frame rate. For model weights, use Lightricks/LTX‑2.3 from Hugging Face (see the links provided), and follow the node’s loader field to point to the correct files.

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.

67981edb9ad4.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
Showing 30 of 30 templates