Seedance 2.5 - Reference to Video
Direct with your references: up to 30 images, 10 videos, and 10 audio clips guiding one generation. Real faces, real action, and native synced audio -- single takes up to 30 seconds.
About Seedance 2.5 - Reference to Video
ByteDance Seedance 2.5 generates video from a text prompt guided by reference images, videos, and/or audio, with synchronized audio on by default. Accepts up to 30 reference images, 10 reference videos, and 10 reference audio clips, including audio-only input. Supports generating new videos, editing videos, extending videos, and coherent outputs up to 30 seconds long at 480p, 720p, or 1080p (1080p uses 10-bit color and H.265/HEVC encoding).
See what this model can do
A handful of real prompts and their outputs.
Ready to build with Seedance 2.5 - Reference to Video?
Try Seedance 2.5 - Reference to Video in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.
curl -sSf -X POST https://hub.oxen.ai/api/ai/videos/generate \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OXEN_API_KEY" \
-d '{
"model": "bytedance-seedance-2-5-reference-to-video",
"prompt": "A lone ox walks down an empty desert highway at golden hour, dust drifting behind it, slow cinematic camera move, warm low sunlight, shallow depth of field.",
"generate_audio": true,
"aspect_ratio": "adaptive",
"duration": "auto",
"resolution": "720p",
"output_format": "mp4",
"watermark": false
}'Request parameters
Every field Seedance 2.5 - Reference to Video accepts in the request body. See the API reference for response formats.
https://hub.oxen.ai/api/ai/videos/generate| Field | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | — | The text prompt used to generate the video. Use @Image1, @Image2, @Video1, @Audio1, etc. to reference inputs. Face-containing media is indexed before non-face media within its type. |
input_face_images | array<string> | No | — | Place reference images here when they show a real human face. Content filters may block the request otherwise. |
input_images | array<string> | No | — | Reference images that guide the generated video. Up to 30 total reference images may be used. |
input_face_videos | array<string> | No | — | Place reference videos here when they show a real human face. Content filters may block the request otherwise. |
input_videos | array<string> | No | — | Reference videos that guide the generated video. Up to 10 total reference videos may be used, each 2-30 seconds long with a combined duration of at most 30 seconds. |
input_audios | array<string> | No | — | Reference audios that guide the generated video. Audio-only input is supported. Up to 10 reference audio clips may be used, each 2-30 seconds long with a combined duration of at most 30 seconds. |
generate_audio | boolean | No | true | Whether to generate synchronized audio. |
aspect_ratio | string | No | "adaptive" | adaptive21:916:94:31:13:49:16 |
duration | integer | string | No | "auto" | Range: 4 – 30 |
resolution | string | No | "720p" | 480p720p1080p |
output_format | string | No | "mp4" | Output video format. mp4 for broad compatibility, mov for high color precision in professional post-production workflows. For video editing and extension, mov input and output is recommended.mp4mov |
watermark | boolean | No | false | Whether to add an 'AI generated' watermark to the output. |