Skip to main content

Try LTX 2.3 Pro: Audio to Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ltx-2-3-pro-audio-to-video High-fidelity audio-to-video generation from Lightricks LTX-2.3 Pro. Creates video from an input image and audio file, synchronizing visuals with the audio. Supports 1080p output at up to 50 FPS.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "ltx-2-3-pro-audio-to-video",
  "input_audio": "https://example.com/audio.mp3"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/ltx-2-3-pro-audio-to-video

Request parameters

Required parameters

FieldTypeDefaultDescription
input_audiostringURL of the audio file to generate a video from. Duration must be between 2 and 20 seconds. Format: uri.

Optional parameters

FieldTypeDefaultDescription
promptstringText description of how the video should be generated. Required if image is not provided. When image is provided, this describes how the image should be animated.
input_imagestringURL of an image to use as the first frame of the video. If not provided, prompt is required. Format: uri.