
The LTXV Image to Video workflow in ComfyUI is designed to transform static images into dynamic video sequences. This workflow leverages the LTX-0.9.5 model, which is specifically optimized for generating video content from still images. The process begins by loading necessary models and configurations using nodes like CLIPLoader and CheckpointLoaderSimple. The core transformation occurs through the LTXVImgToVideo node, which applies advanced conditioning and scheduling techniques via the LTXVConditioning and LTXVScheduler nodes. These nodes ensure that the generated video retains high fidelity to the source image while introducing realistic motion and transitions.
Technically, this workflow utilizes a series of nodes to encode text prompts (CLIPTextEncode) and decode visual data (VAEDecode), ensuring that both the visual and conceptual elements of the input image are accurately translated into video form. The inclusion of a custom sampler and KSamplerSelect nodes allows for fine-tuning of the video synthesis process, providing users with control over the aesthetic and motion characteristics of the output. This workflow is particularly useful for artists and content creators looking to animate their static imagery with minimal effort, offering a seamless integration of AI-driven video generation techniques.
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/4176b98e2b7e.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 "LTXV Image 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("ltxv_image_to_video_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("78", "image", asset) # LoadImage
wf.set_input("6", "text", "your prompt here") # CLIPTextEncode
job = client.run(wf)
for output in job.get_outputs("81"): # 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














