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.
GET https://comfy.org/workflows/download/adca306765ce.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "LTX-2.3: Image Audio to Video" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("video_ltx2_3_ia2v_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("269", "image", asset) # LoadImage
job = client.run(wf)
for output in job.get_outputs("341"): # SaveVideo
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














