Ltx 2.3 Extend
Playground
Try it on WavespeedAI!LTX-2.3 is a DiT-based audio-video foundation model designed to generate synchronized video and audio within a single model, with improved audio and visual quality as well as enhanced prompt adherence. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
LTX-2.3 Image-to-Video
LTX-2.3 is a significant update to the LTX-2 model, featuring improved audio and visual quality with enhanced prompt adherence. As a DiT-based (Diffusion Transformer) audio-video foundation model, it animates your input image into a high-fidelity video with synchronized audio generated in a single pass.
Why Choose This?
-
Improved quality Enhanced audio and visual quality compared to LTX-2, with better prompt adherence and more coherent outputs.
-
Image-conditioned video with audio Transforms a static image into a moving video with synchronized audio in a single model pass.
-
Preserves input composition Maintains the subject, framing, and lighting of your reference image while adding natural motion.
-
DiT-based architecture Built on Diffusion Transformer technology for detailed, temporally consistent video generation.
-
Variable duration Generate clips from 1 to 20 seconds.
Parameters
| Parameter | Required | Description |
|---|---|---|
| video | Yes | Reference video to animate (MP4) |
| prompt | Yes | Text description of motion, action, and audio cues |
| duration | No | Video length in seconds (1-20) |
How to Use
- Upload your video — the reference video that defines subject, composition, and lighting.
- Write your prompt — describe the motion, camera movement, and audio cues.
- Set duration — 1-20 seconds based on your content needs.
- Run — submit and download the animated video with synchronized audio.
Pricing
| 5s | 10s | 15s | 20s |
|---|---|---|---|
| $0.50 | $1.0 | $1.5 | $2 |
Best Use Cases
- Product Animation — Bring product photos to life with subtle motion and ambient audio.
- Portrait Animation — Animate headshots and portraits with natural movement.
- Social Media — Create engaging animated content from static images.
- Marketing — Transform key visuals into video ads with cohesive sound.
- Storytelling — Animate storyboard frames or concept art.
Pro Tips
- Audio is automatic — sound is generated based on visual motion and prompt context.
- Describe specific audio when needed (e.g., “rain”, “jazz”, “crowd noise”).
- Use high-quality, sharp, well-exposed images for best results.
- Keep motion prompts simple — one clear action per prompt yields better results.
- Iterate at 480p to dial in motion, then render at higher resolution for final output.
- Use fixed seed when comparing prompt variations to isolate changes.
Notes
- Maximum video duration is 20 seconds.
- Width & height must be divisible by 32, frame count must be divisible by 8 + 1.
- The aspect ratio of output video is influenced by your input image.
- For longer content, generate multiple clips and edit together.
Related Models
- LTX-2.3 Text-to-Video — Generate video with audio from text only.
- LTX-2 19B Image-to-Video — Previous generation model.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ltx-2.3/extend" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"duration": 5
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| video | string | Yes | - | The video for the extension. | |
| duration | integer | No | 5 | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 | The duration of the generated media in seconds. |
| prompt | string | No | - | The positive prompt for the extension. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |