Nodes/ComfyUI-LTXVideo/πŸ…›πŸ…£πŸ…§ LTXV Base Sampler
ComfyUI Node Runs on cloud

πŸ…›πŸ…£πŸ…§ LTXV Base Sampler

The all-in-one LTX video sampler

By LightricksΒ·Created 2 years agoΒ·Updated about a month agoΒ· 3,956
πŸ…›πŸ…£πŸ…§ LTXV Base Sampler
  • model
  • vae
  • guider
  • sampler
  • sigmas
  • noise
  • optional_cond_images
  • denoised
  • positive
  • negative
β—„width768β–Ί
β—„height512β–Ί
β—„num_frames97β–Ί
β—„optional_cond_indicesβ€”β–Ί
β—„strength0.90β–Ί
β—„cropdisabledβ–Ί
β—„crf35β–Ί
β—„blur0β–Ί

LTXV Base Sampler is the node that actually makes the video. Where a stock ComfyUI setup makes you assemble an empty latent, a KSamplerSelect, a scheduler, and a sampler by hand, this one folds the whole LTX sampling stack into a single box: you tell it the width, height, and frame count, hand it a guider and a sampler, and it hands back a denoised video latent. For text-to-video and image-to-video on LTX, it's the workhorse in the middle of nearly every Lightricks example workflow.

It's part of ComfyUI-LTXVideo, the official pack from Lightricks. LTX's whole pitch is speed - drafts in seconds where Wan takes minutes - and this node is tuned around that, including the image-conditioning path that makes I2V a one-node affair.

How it works

Under the hood it builds the initial noise latent at your requested resolution and frame count, then runs the LTX diffusion transformer through the sigmas you feed it, steered by whatever guider you connect. The clever bit is the conditioning: if you connect an image, the node VAE-encodes it and injects it as a keyframe, so the same node covers T2V (no image) and I2V (image connected) without swapping graphs. It also returns the positive and negative conditioning it used, so you can chain further guide nodes downstream.

The inputs that matter

The required side is mostly plumbing you connect once: model, vae, a guider (from STG Guider or Multimodal Guider), a sampler, sigmas, and noise. The widgets a beginner actually sets:

  • width / height - default 768Γ—512. On LTX-2.3, width and height must be divisible by 32 or the run fails outright rather than rounding.
  • num_frames - default 97, and it steps by 8. LTX wants frame counts of the form (multiple of 8) + 1, which 97 satisfies.

For image-to-video, the optional inputs matter: optional_cond_images is the image you're animating from, optional_cond_indices places it (frame 0 = first frame), and strength (default 0.9) controls how hard the model holds to it. There's also crf (default 35) and blur, which lightly degrade the conditioning image so the model treats it as a starting point rather than something to copy pixel-for-pixel.

Outputs are denoised (the video LATENT - send it to a VAE Decode), plus the positive and negative conditioning passthroughs.

Installing it

ComfyUI Manager β†’ Install Custom Nodes β†’ search LTXVideo β†’ install β†’ restart. Or: cd ComfyUI/custom_nodes && git clone https://github.com/Lightricks/ComfyUI-LTXVideo, then restart. It shows up under sampling. You'll need an LTX checkpoint in models/checkpoints, and on LTX-2 the Gemma 3 text encoder - the models download on first use, and the pack's own prerequisites call for a lot of disk (100GB+) and, officially, a 32GB+ card.

Where people get burned

  • Off-grid resolutions on 2.3. Divisible-by-32 width/height and (8n+1) frames are hard requirements now - pick 768Γ—512 / 97 frames and adjust in those steps.
  • Short prompts. LTX punishes vague prompting with static or chaotic motion. Long, specific, chronological prose is the difference between a great clip and a slideshow; many people let an LLM write the prompt.
  • I2V strength too high. At strength near 1.0 the model can freeze on the input frame - a known LTX-2-era complaint. If your I2V barely moves, lower it and lean on the prompt for motion.
  • Distilled vs dev confusion. Distilled checkpoints want ~8 steps at CFG 1 and are more stable but ignore prompts more; dev checkpoints want 20–40 steps and follow prompts better but wander. Match your sigmas/steps to the checkpoint you loaded.
  • VRAM. This is where the Gemma text encoder OOMs bite on LTX-2. If you're crashing on a sub-32GB card, quantized weights plus ComfyUI's --reserve-vram flag are the community's standard workaround.
Categorysampling

Inputs (15)

NameTypeDefaultDescription
modelMODELThe diffusion model to use.
vaeVAEThe VAE to use.
widthINT76864–16384β€”
heightINT51264–16384β€”
num_framesINT971–16384β€”
guiderGUIDERThe guider to use, must be a STGGuiderAdvanced.
samplerSAMPLERThe sampler to use.
sigmasSIGMASThe sigmas to use.
noiseNOISEThe noise to use for the sampling.
optional_cond_imagesoptIMAGEThe images to use for conditioning the sampling.
optional_cond_indicesoptSTRINGThe indices of the images to use for conditioning the sampling.
strengthoptFLOAT0.900–1The strength of the conditioning on the images.
cropoptCOMBOdisabledThe crop mode to use for the images.
crfoptINT350–100The CRF value to use for preprocessing the images.
bluroptINT00–10The blur value to use for preprocessing the images.

Outputs (3)

NameTypeDescription
denoisedLATENTβ€”
positiveCONDITIONINGβ€”
negativeCONDITIONINGβ€”