← All models
Decompression / Denoise high-quality video using LTX-2.3
Example
Details
- Accepts
- video
Pricing
- Price
- 0.301 cr / megapixel
Prices in credits (1 credit = $0.01).
Data schema
Input
| Field | Type | Description |
|---|---|---|
| seed | — | Random seed for reproducibility. If None, a random seed is chosen. |
| prompt | string | Optional short description of the video's content/scene. It is woven into the effect's trained caption to sharpen the result; leave empty to apply the effect with a generic description. |
| sync_mode | boolean | If True, the media is returned as a data URI inline in the response. Useful for short-lived requests and tests. |
| video_urlrequired | string | The URL of the source video to transform. |
| num_frames | integer | The number of output frames. Output duration is num_frames / frames_per_second. The IC-LoRA control budget caps the resolution x frames volume: roughly 6s at 720p or 15s at 480p; a request above it returns a 422 (lower num_frames, or use 480p). |
| resolution | stringenum: 480p, 720p | Output resolution (short side), preserving the source aspect ratio. The IC-LoRA control path caps the resolution x frames volume, so resolution trades against duration: 720p allows up to ~6s (sharper), 480p up to ~15s (softer but longer). A request above the budget is rejected with a clear error — p… |
| video_quality | stringenum: low, medium, high, maximum | The quality preset of the generated video. |
| generate_audio | boolean | Whether to include audio in the returned video. When disabled, the final MP4 is returned without an audio track. |
| guidance_scale | number | Classifier-free guidance scale. The default is tuned for fast, high-quality generation. |
| negative_prompt | string | The negative prompt to steer generation away from. |
| video_write_mode | stringenum: fast, balanced, small | The write mode of the generated video. |
| frames_per_second | number | Frames per second of the generated video. |
| num_inference_steps | integer | Number of inference steps. Defaults to 15 and can be increased up to 30. |
| enable_safety_checker | boolean | Whether to enable the safety checker. |
Output
| Field | Type | Description |
|---|---|---|
| seed | integer | The seed actually used for generation. |
| video | — | The generated video. |
| prompt | string | The prompt used for generation (after any expansion). |