支持模型与参数视频模型
Seedance 2.5
seedance-2-5 的参数、枚举、首尾帧和音频说明。
seedance-2-5 支持 4 至 15 秒、480p 至 1080p 的视频生成。参数能力以后端模型 schema 为准。
模型速览
| 项 | 说明 |
|---|---|
| 模型 ID | seedance-2-5 |
| 类型 | 视频 |
| 区域 | Global / CN |
| 推荐场景 | 支持 4 至 15 秒、480p 至 1080p 的视频生成 |
推荐请求写法
提交前建议先调用 POST /v1/quote,报价和创建任务使用完全相同的参数。
{
"model": "seedance-2-5",
"prompt": "A cinematic product reveal",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}字段说明
| 字段 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
model | string | 是 | - | 固定传 seedance-2-5 |
prompt | string | 是 | - | 视频描述 |
reference_images | string[] | 否 | - | 参考图片 URL |
first_frame_image_url | string | 否 | - | 首帧图片 URL |
last_frame_image_url | string | 否 | - | 尾帧图片 URL |
duration | integer | 否 | 5 | 输出时长 |
resolution | string | 否 | 720p | 输出分辨率 |
aspect_ratio | string | 否 | 16:9 | 画面比例 |
generate_audio | boolean | 否 | true | 是否生成音频 |
可选枚举
| 字段 | 支持值 |
|---|---|
duration | 4 至 15 |
resolution | 480p 720p 1080p |
aspect_ratio | 21:9 16:9 4:3 1:1 3:4 9:16 |
Seedance 2.5 接入说明
has_video_input是服务端派生字段,客户端不应直接传入。- 不要传模型 schema 未声明的字段;运行时以
GET /v1/models返回值为准。
最小示例
{
"model": "seedance-2-5",
"prompt": "A cinematic product reveal"
}
