LTX-2.5 β the whole pipeline in one 22 GB file, rendered by Rust
The clips above are silent GIFs. The videos are not. The same 48 blocks denoise the soundtrack alongside the picture β hear it in
examples/: six mp4s with audio, their raw 48 kHz stereo wavs, and the exact command that made each one.
Every frame above was produced by cortiq β a single Rust binary with no
PyTorch, no diffusers, no CUDA toolkit and no Python anywhere in the process β
reading one memory-mapped CMF file.
All nine modes run from this one file: text β video, text β sound,
text β video + sound, image + text β video, video β video, video β sound,
sound β video, sound β sound, and image + sound β video. Both VAE encoders
are packed alongside the decoders, so conditioning needs nothing else β see
the table below. The pipeline_tag says
text-to-video because that is the one tag Hugging Face lets a model carry
and it is where people look for this; the rest are in tags.
LTX-2.5 renders video and its soundtrack from one prompt: a 21 B audio-video diffusion transformer that denoises picture and sound in the same 48 blocks, a Gemma-4 12 B prompt encoder, a 3-D video VAE, an audio VAE, two latent upscalers and a duration head. The reference checkout is 71.35 GB across six safetensors plus a PyTorch stack.
Here it is one file of 22.07 GB β every component, the Gemma-4 tokenizer and every config inside it.
| reference | this file | |
|---|---|---|
| files | 6 safetensors + configs + tokenizer | 1 |
| bytes | 71.35 GB | 22.07 GB (3.2Γ smaller) |
| weights | 35.65 B | 35.65 B β all of them |
| loader | diffusers / ComfyUI + PyTorch | mmap |
| renderer | Python | one Rust binary |
Quick start
# 1 β the runtime (Rust 1.85+; nothing else)
cargo install cortiq-cli
# 2 β the model
hf download infosave/LTX-2.5-cmf ltx25-q4tp.cmf --local-dir .
cortiq verify ltx25-q4tp.cmf # every tensor is hashed in the directory
# 3 β a video
cortiq ltx-video --model ltx25-q4tp.cmf \
--prompt "A corgi in a chef hat flips a pancake in a sunlit kitchen. \
Warm morning light, static camera." \
--height 256 --width 384 --frames 49 --fps 24 --seed 42 \
--out corgi.y4m
ffmpeg -i corgi.y4m -pix_fmt yuv420p corgi.mp4
That is the whole thing: prompt in, frames out, one process, one file. The GPU is found at run time β Vulkan on Linux and Windows, Metal on Apple silicon β and everything falls back to the CPU when there is none.
Keep the file on local storage. It is memory-mapped, so every weight is a page fault. On a network filesystem (NFS, MooseFS, a rented pod's
/workspacevolume) that is a network round trip per weight and the process will sit at 1 % CPU looking hung. Copy it to a local disk β or to/dev/shmif you have the RAM.
The examples above, exactly
M=ltx25-q4tp.cmf
cortiq ltx-video --model $M --seed 42 --height 256 --width 384 --frames 49 \
--out-dir corgi/ --prompt \
"A corgi in a chef hat flips a pancake in a sunlit kitchen. Warm morning light, static camera."
cortiq ltx-video --model $M --seed 7 --height 256 --width 384 --frames 49 \
--out-dir neon/ --prompt \
"Neon rain on a Tokyo side street at night, a lone figure with a translucent umbrella \
walks past ramen shop signs, reflections rippling in the puddles, slow dolly."
cortiq ltx-video --model $M --seed 11 --height 256 --width 384 --frames 49 \
--out-dir whale/ --prompt \
"A humpback whale glides through a shaft of sunlight in deep blue water, plankton \
drifting like dust, the camera rises with it toward the surface."
cortiq ltx-video --model $M --seed 23 --height 256 --width 384 --frames 49 \
--out-dir glass/ --prompt \
"Molten glass is blown into a bulb over an orange furnace, the glowing gather \
stretching and rotating, sparks drifting in the dark workshop."
# frames β mp4 β gif
ffmpeg -framerate 24 -i corgi/frame_%04d.ppm -pix_fmt yuv420p -crf 18 corgi.mp4
ffmpeg -i corgi.mp4 -vf "fps=12,scale=384:-1:flags=lanczos,split[s0][s1];\
[s0]palettegen[p];[s1][p]paletteuse" corgi.gif
--out-dir writes frame_0000.ppm β¦; --out file.y4m writes one
YUV4MPEG2 stream instead,
which every tool reads β so the renderer needs no video encoder of its own.
Sound
cortiq ltx-video --model $M --prompt "β¦" \
--height 256 --width 384 --frames 49 --seed 3 \
--out-dir frames/ --out-audio track.wav
ffmpeg -framerate 24 -i frames/frame_%04d.ppm -i track.wav \
-pix_fmt yuv420p -c:v libx264 -crf 18 -c:a aac -b:a 192k -shortest out.mp4
The transformer has been denoising the soundtrack in the same blocks as the
picture the whole time; --out-audio decodes it β the spectrogram VAE, then
BigVGAN v2, then a bandwidth extender that lifts 16 kHz to 48 kHz stereo.
Eight seconds of work behind minutes of denoising.
Higher resolution

cortiq ltx-video --model $M --two-stage \
--height 512 --width 768 --frames 49 --seed 42 \
--prompt "β¦" --out hq.y4m
--two-stage samples the way the distilled model was trained: eight
ancestral Euler steps at half resolution, the learned latent upscaler Γ2,
then three deterministic steps that refine what the upscale invented.
--steps N / --steps2 N resample that schedule. The shipped ladder is
distilled β 8 is it exactly, other counts land on sigmas the model never saw
and usually soften the frame. Detail comes from resolution and --two-stage.
LoRA adapters, and multi-subject references
cortiq ltx-video --model $M --lora adapter.safetensors --lora-strength 0.8 \
--prompt "β¦" --out clip.y4m
q4tp weights cannot absorb a low-rank update without dequantizing the whole
DiT, so the branch runs beside them β y = xΒ·Wα΅ + sΒ·(xΒ·Aα΅)Β·Bα΅, on every path
including the fused Metal q/k/v submission. Rank 128 against a 4096Γ4096
projection is about 6% more arithmetic and no memory beyond the file β but
measured on an M4 a 384-token step goes 8.6 s to about 22 s, because that
arithmetic is host-side f32 beside a device-side 4-bit GEMM and does not
overlap it. The flops are cheap; the placement is what costs.
An adapter that also carries a reference_slot_embedding takes reference
stills, which is how the multi-subject adapters work:
cortiq ltx-video --model $M --lora msr.safetensors \
--ref a.ppm --ref b.ppm --ref c.ppm \
--prompt "Image 1: β¦ Image 2: β¦ Image 3: β¦" --out clip.y4m
Each still is held for 25 or 33 pixel frames (--ref-frames, whichever the
adapter was trained on), encoded by the same video VAE the render uses, given
its slot's learned per-channel bias on the latent, and placed at a negative
frame offset β slot 1 furthest back. Those tokens ride in the same sequence,
frozen, and are cropped off the result.
They cost sequence length: three references at 384Γ256 add 1152 tokens beside 384 of clip. The stills must already be the render's size.
Measured
49 frames at 24 fps, container on local storage:
| stage | RTX 5090, 384Γ256 | RTX 5090, 768Γ512 --two-stage |
M4 MacBook, 24 GB, 384Γ256 |
|---|---|---|---|
| prompt encode (Gemma-4 12 B + connectors) | 26 s | 26 s | 32 s, then cached |
| denoise | 8 Γ 19 s | 8 Γ 19 s + 3 Γ 70 s | 8 Γ 13 s |
| latent upscale | β | 12 s | β |
| audio VAE + vocoder | 8 s | 8 s | 8.6 s |
| video VAE | 50 s | 200 s | 24 s |
| total | 3 min | 10 min | 2.3 min |
The Mac number is the interesting one, and it took three rounds to get there.
First, keeping the device at all. A 22 GB container does not fit in a single Metal buffer, so it is mapped as two overlapping windows β and the driver accounts its working set by buffer length, not by unique pages. With both windows on its books it evicts and re-wires between commits, and a 190 ms matmul takes 2.7 s. So the windows are built on first use, the prompt encoder parks the device for its phase (its weights live in the window the denoising loop never touches), and the denoising loop takes the per-op probe out of the picture β forty-eight identical blocks with the device warm throughout is the opposite of what a probe that alternates arms can measure.
Then, three things found by profiling rather than guessing, worth another quarter of every step: the feed-forward's gelu ran in f64 on one thread (half a billion values a step), the Metal path scanned every activation buffer scalar-with-a-branch to check it fits in half (2.7 billion floats a step, one thread), and independent projections each paid their own ~1.3 ms command-buffer completion. Same arithmetic β a render at the same seed before and after matches at 42.6 dB, which is the last-bit difference between f32 and f64 amplified by eight sampling steps, not a change in what the model draws.
Third, giving the memory back. The container is 20.5 GiB and the machine has 24 GB, so holding all of it resident leaves nothing for the render and macOS answers with the compressor: at 384Γ256Γ25 the steps used to climb through a run, 12.4 s to 13.1 s with a 26 s spike, and none of that was arithmetic. But the pipeline touches one component at a time and never comes back β the prompt encoder is 6.8 GiB read once, the DiT is 10.8 GiB finished before either VAE opens. Both are handed back to the system the moment they stop being read, and because they are clean file-backed pages, anything that wants them again just refaults. At that size the steps now hold 8.5β8.7 s flat and the stage goes 117.5 s β 72.8 s; the 49-frame row above is the same change measured at the size the table quotes.
On device-vs-host: CMF_MM_AB=1 runs both arms of every eligible q4tp GEMM
back to back on the same data inside one call, which is the only comparison a
laptop that drifts between runs can be trusted to give. Over a whole render the
Metal kernel is 2.01Γ the host β 2.17Γ on 4096Γ16384, 2.21Γ on 16384Γ4096,
1.81Γ on 4096Γ4096 β and the two arms disagree by at most 9e-4 relative.
A 21 B video model, its 12 B prompt encoder and both VAEs, rendering a clip with sound on a laptop with 24 GB of unified memory β because nothing is ever loaded, only mapped, and the pipeline touches one component at a time. The encoded prompt is cached, so a second take on the same text starts at the first denoising step.
The stages, separately
Each stage is its own command. That is how the port was gated: every one of them can be run against a dump of the reference implementation's own activations and will report the first place it diverges.
# prompt β the two context tensors the transformer cross-attends to
cortiq ltx-encode --model $M --prompt "β¦" --out context.safetensors
# context β latent β frames
cortiq ltx-render --model $M --context context.safetensors \
--height 256 --width 384 --frames 49 --out-latent latent.safetensors --out out.y4m
# latent β frames, the 3-D convolutional decoder alone
cortiq ltx-decode --model $M --latent latent.safetensors --out-dir frames/
Every mode the model has
LTX-2.5 is one network with two streams, and a mode is simply which parts you hold fixed. Conditioning is encoded into the model's own latent space and frozen there β the sampler gets a timestep of zero for those tokens and leaves them alone β so all of this is one command with different inputs.
| mode | how |
|---|---|
| text β video + sound | --prompt "β¦" --out-audio track.wav |
| text β video | the same, without --out-audio |
| text β sound | the same, keeping only the wav |
| image + text β video (+ sound) | --image still.ppm |
| video β video | --video frames/ |
| video β sound | --video frames/ --video-to-audio |
| sound β video | --audio-in track.wav |
| sound β sound | --audio-in track.wav --out-audio out.wav |
| image + sound β video | --image still.ppm --audio-in track.wav |
# a still into a shot, with its soundtrack
ffmpeg -i photo.jpg -vf scale=384:256 -pix_fmt rgb24 still.ppm
cortiq ltx-video --model $M --image still.ppm \
--prompt "the camera pushes in slowly as the light shifts" \
--height 256 --width 384 --frames 49 --out-dir out/ --out-audio out.wav
Image conditioning runs through the video VAE's encoder, audio conditioning through the audio VAE's and a log-mel front end β both in this same file, along with everything else.
What is inside
| component | weights | in the file | codec |
|---|---|---|---|
dit.* β LTX-2.5 22B audio-video DiT (distilled) |
21.004 B | 10.84 GiB | q4tp + exact adaLN |
te.* β Gemma-4 12B prompt encoder, aggregates, vision tower |
13.116 B | 6.87 GiB | q4tp + q8 embeddings |
vvae.* β video VAE (3-D conv, encoder + decoder) |
0.726 B | 1.35 GiB | f16 |
avae.* β audio VAE |
0.182 B | 0.34 GiB | f16 |
ups.* β latent spatial upscaler Γ2 |
0.498 B | 0.93 GiB | f16 |
upt.* β latent temporal upscaler Γ2 |
0.131 B | 0.24 GiB | f16 |
dhead.* β duration head |
1.9 M | 3.8 MB | f16 |
| configs, HF assets | β | 55 KB | raw |
tokenizer (tokenizer_json, 32 MB) |
β | VOCAB section | raw |
What the codec does per tensor, and why
Four bits is not applied by fiat. cortiq ltx-pack decides per tensor, and
two of those decisions were made by measuring against the reference rather
than by taste:
- 2-D planes of at least 2Β²β° weights β q4tp, 4.16 bits with a per-row scale ladder. Every projection in the transformer and in the encoder.
- The adaLN-single stacks stay exact. Their output is not a residual β it is the scale and the shift applied to every token in every block, so an error there is multiplied into the whole stream instead of being averaged away by anything downstream. Quantized, they put 3.6Β·10β»Β² of relative error into the very first normalization of block 0; exact, 5.9Β·10β»Β³. 0.56 GB.
- The token table stays 8-bit. It is the residual stream at layer zero and it carries through forty-eight residual additions. q4tp put 11 % into every hidden state the prompt encoder produced; q8 puts 0.5 % there, for 0.5 GB.
- The adaLN tables, the connector's learnable registers and the VAE's
per_channel_statisticsstay exact β 19 MB in total, read once a step, modulating everything. - Convolutions stay f16. Both VAEs and both upscalers are convolutional, and the decoder is what the eye actually sees.
The architecture it carries
AVTransformer3DModel, from the release's own config (kept verbatim in the
file as ltx.config_json):
- 48 blocks, video stream 4096 (32 heads Γ 128), audio stream 2048 (32 Γ 64), joint audioβvideo cross-attention with adaLN-gated fusion that reads the pre-fusion state of both streams, so the order the two directions run in cannot bias the result.
- Per block: self-attention, cross-attention to the prompt with its own
adaLN pair on the query and on the prompt's keys and values, RMS
q/k-norm across the whole inner dimension, gated attention
(
2Β·sigmoidper head), and a gelu-approximate feed-forward β all modulated from per-block[9, 4096]/[9, 2048]tables. - Split 3-D RoPE over (seconds, pixel row, pixel column) evaluated at the middle of each patch's bounds, ΞΈ = 10000, with the causal correction that gives the first latent frame one pixel frame where every later one gets eight. The audio stream shares the time axis in seconds, which is what lets the two cross-attend positionally.
- The prompt encoder is Gemma-4 12 B β forty sliding-window layers at head 256 and eight full-attention layers at head 512 whose value projection is the key projection β and the features are not its last hidden state: all forty-nine layer outputs are RMS-normalized per token per layer, concatenated to 188160 numbers and projected once to 4096 (video) and once to 2048 (audio).
- Embeddings connectors β 8 gated-attention blocks each for video and audio, with 128 learnable registers that replace every padded position, which is why the transformer needs no prompt mask at all.
Packing it yourself
Three passes, each one able to delete its source before the next lands β the stand this was packed on had a 50 GB disk quota and the sources are 71 GB:
cortiq ltx-pack --out p1.cmf --dit ltx-2.5-22b-distilled-transformer-bf16.safetensors
cortiq ltx-pack --out p2.cmf --in p1.cmf --te gemma4-12b-with-proj-ltx-2.5-bf16.safetensors
cortiq ltx-pack --out ltx25-q4tp.cmf --in p2.cmf \
--video-vae ltx-2.5-video-vae-conv-bf16.safetensors \
--audio-vae ltx-2.5-audio-vae-bf16.safetensors \
--spatial-upscaler ltx-2.5-latent-spatial-upscaler-x2-bf16-1.0.safetensors \
--temporal-upscaler ltx-2.5-latent-temporal-upscaler-x2-bf16-1.0.safetensors \
--duration-head ltx-2.5-duration-head-bf16.safetensors
cortiq verify ltx25-q4tp.cmf && cortiq info ltx25-q4tp.cmf
Measured on a 32-core pod: five minutes for 71 GB of bf16, single
machine, no Python, no GPU. --quant picks the codec for the big planes
(q4tp, q8, f16, f32), --vae-quant the one for convolutions.
Status
- β Text β video and sound runs end to end on the Rust engine: the Gemma-4 prompt encoder, the aggregate projections, the connectors, the 48-block audio-video transformer, the sampler, the latent upscaler, the video VAE, the audio VAE with its BigVGAN vocoder and bandwidth extension, and the duration head.
- β Every conditioning mode: image-to-video, video-to-video, video-to-audio, audio-to-video, audio-to-audio and the image+audio pairs β all from this one file, because both VAE encoders are in it.
- β³ LoRAs and the IC-LoRA upscaler are separate releases and not packed here yet.
Everything above is honest about what it is: a 4-bit repack. The reference at bf16 is the quality ceiling, and the codec's cost was measured stage by stage rather than assumed β see the numbers in the codec section.
Provenance
The weights are Lightricks' LTX-2.5 release and remain under the
LTX-2.x Community License
β the licence text ships inside the source checkpoints and applies to this
repack unchanged. The CMF container format and the cortiq runtime are
Apache-2.0 (repository, PATENTS.md).
No weight was altered: the pack is a codec change and a container change.
Every tensor's bytes are hashed in the directory, so cortiq verify proves
the file is the one that was written.
Model tree for infosave/LTX-2.5-cmf
Base model
Lightricks/LTX-2.5