This ComfyUI workflow turns a single image and a voice recording into a lip-synced talking video using the LTX-2.3 model. You load a portrait with LoadImage and provide speech via LoadAudio or capture it live with RecordAudio. Both streams feed the LTX-2.3 generator node (98ee9e5b-467b-40aa-a534-36033f27d0b4), which synthesizes a sequence of frames where the subject speaks in time with the audio. The resulting frames are encoded to an MP4 using SaveVideo.
Under the hood, LTX-2.3 conditions on the visual identity from your reference image and the temporal features of the provided audio to drive mouth shapes and subtle facial motions over time. The node typically exposes settings like output resolution and FPS, and many builds also include a seed for reproducibility and an optional text prompt to guide motion or style. The MarkdownNote in the graph documents quick tips and links to the official Lightricks model repositories so you can download the required weights.
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 "LTX-2.3: Image Audio to Video" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("video_ltx2_3_ia2v_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("269", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("341")[0].toFile("output.png"); // SaveVideoThe 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














