Lightricks' native-audio video family for text, image, first-and-last-frame, audio-driven, and controlled video-to-video workflows.
Official Distilled/Turbo workflows for fast native-audio generation and controlled video editing.
LTX-2.5 22B generates video and synchronized sound together. Create from text, animate one image, guide a transition with opening and closing frames, generate from audio alone, or combine an image with an audio track.
The video-to-video family supports canny, depth, pose, detailer, inpaint, and outpaint workflows. Pose uses a source video for motion plus a still image for the subject's appearance; inpaint uses a mask to identify the region to replace.
Fast, HQ, and Pro currently use the same release-validated official Distilled/Turbo path. Dev checkpoints are not publicly routed until Lightricks publishes an official ComfyUI Dev recipe and Sogni validates it.
Five public model IDs cover generation and editing. First-and-last-frame video uses the I2V ID with its dedicated template; Fast, HQ, and Pro all route to these release-validated Distilled/Turbo workflows.
| Workflow | Details | Access | |
|---|---|---|---|
Text to video Distilled/Turboltx25-22b-int8_t2v_distilled | Workflow: Text-to-video with native audio Duration: Up to 20 seconds | Standard Spark or eligible Unlimited | Create → |
Image / first + last frame Distilled/Turboltx25-22b-int8_i2v_distilled | Workflow: Image-to-video or dedicated first/last-frame template Duration: Up to 20 seconds References: Opening image; optional closing image | Standard Spark or eligible Unlimited | Create → |
Audio to video Distilled/Turboltx25-22b-int8_a2v_distilled | Workflow: Audio-driven video without a reference image Duration: Up to 20 seconds | Standard Spark or eligible Unlimited | Create → |
Image + audio to video Distilled/Turboltx25-22b-int8_ia2v_distilled | Workflow: Reference-image video driven by an audio track Duration: Up to 20 seconds References: Image and audio | Standard Spark or eligible Unlimited | Create → |
Video to video Distilled/Turboltx25-22b-int8_v2v_distilled | Workflow: Canny, depth, pose, detailer, inpaint, and outpaint Duration: Up to 20 seconds References: Source video; pose also uses a subject image | Standard Spark or eligible Unlimited | API / agent workflow |
LTX-2.3 remains available as an explicit rollback family. Voice ID-LoRA, the community transition LoRA, and 10Eros remain LTX-2.3-only and are not attached to LTX-2.5 requests.
LTX-2.5 22B is included on every Sogni plan — generate credit-free under fair use, alongside 200+ other models. Pay-as-you-go Spark packs are also available for eligible Spark renders.
One Sogni API key reaches every model on the Supernet — call LTX-2.5 22B with the exact model id for the variant you want.
import { SogniClient } from '@sogni-ai/sogni-client';
const client = await SogniClient.createInstance({
appId: crypto.randomUUID(),
apiKey: process.env.SOGNI_API_KEY,
network: 'fast',
});
const project = await client.projects.create({
type: 'video',
modelId: 'ltx25-22b-int8_t2v_distilled',
positivePrompt: 'a slothicorn surfing a wave of liquid paint, slow push-in, cinematic',
numberOfMedia: 1,
duration: 5,
});
const [url] = await project.waitForCompletion();
console.log(url); // result link — download within 24h curl https://api.sogni.ai/v1/creative-agent/workflows \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $SOGNI_API_KEY" \
-d '{
"input": {
"title": "First render",
"steps": [{
"id": "step1",
"toolName": "generate_video",
"arguments": { "prompt": "a slothicorn surfing a wave of liquid paint, slow push-in, cinematic", "videoModel": "ltx25", "duration": 5 }
}]
},
"confirm_cost": true
}' Example uses ltx25-22b-int8_t2v_distilled. Use any exact model id from the Variants table above. Full reference at docs.sogni.ai.
Use a flat monthly plan for credit-free fair-use generation, or buy Spark packs when pay-as-you-go fits better. Both run on the same creator-owned GPU network.
One flat price in the app. Generate under fair use without a per-image meter.
Image, video, music, and language models in one workspace and one API key.
Prefer pay-as-you-go? Call LTX-2.5 22B by id and pay with Spark packs.
Runs on a decentralized GPU network where workers share subscription revenue.
Yes. Sogni publicly routes the five Distilled/Turbo model IDs for text-to-video, image and first/last-frame video, audio-to-video, image+audio-to-video, and video-to-video workflows.
Fast, HQ, and Pro currently use the same release-validated official Distilled/Turbo workflow. Dev checkpoints are withheld until an official upstream ComfyUI Dev recipe is published and validated.
Video-to-video supports canny, depth, pose, detailer, inpaint, and outpaint. Pose requires a source video plus a still subject image, and inpaint requires a mask.
Voice ID-LoRA, the community transition LoRA, and 10Eros remain LTX-2.3-only rollback paths.
Create in the app, or build with the API. Your call.