Seedance 和 Seedence 模型
Seedance 和 Seedence 的模式、配置积分矩阵与 Vidrush API 示例。
简介
厂商: ByteDance。本系列包括 Seedance 2.0、Fast、Mini、Seedance 1.5 Pro,以及单独配置的 Seedence 1.0 模型。Seedance 2.0 与 Fast 由 FreeModel provider 提供服务;Seedance 2 Mini 还支持首尾帧和参考控制。
支持模式
| 模型 | 模式 | 时长 | 分辨率 | 宽高比 | 音频 |
|---|---|---|---|---|---|
seedance-2-0 | text-to-video, image-to-video | 5s, 10s, 15s | 720p | 16:9, 9:16, 1:1 | 不支持 |
seedance-2-0-fast | text-to-video, image-to-video | 5s, 10s, 15s | 720p | 16:9, 9:16, 1:1 | 不支持 |
seedance-2-mini | text-to-video, image-to-video, frames-to-video, reference-to-video | 4s, 5s, 6s, 8s, 10s, 12s, 15s | 480p, 720p | 1:1, 21:9, 4:3, 3:4, 16:9, 9:16, Auto | 支持 |
seedance-1-5-pro | text-to-video, image-to-video | 4s, 8s, 12s | 480p, 720p, 1080p | 1:1, 21:9, 4:3, 3:4, 16:9, 9:16 | 支持 |
seedence-1-0-pro | text-to-video, image-to-video | 5s, 10s | 480p, 720p, 1080p | text-to-video: 21:9, 16:9, 4:3, 1:1, 3:4, 9:16;image-to-video:无选项 | 不支持 |
seedence-1-0-pro-fast | image-to-video | 5s, 10s | 720p, 1080p | 配置未提供宽高比选项 | 不支持 |
seedence-1-0-lite | text-to-video, image-to-video | 5s, 10s | 480p, 720p, 1080p | text-to-video: 16:9, 4:3, 1:1, 3:4, 9:16, 9:21;image-to-video:无选项 | 不支持 |
frames-to-video 至少需要两个 image_urls;reference-to-video 至少需要一个。Seedance 2 Mini 在参考模式下可接受可选视频输入。
积分价格
除非特别说明,文生视频和图生视频使用相同矩阵。两个由 FreeModel 接入的 Seedance 2 版本采用相同的时长价格。
seedance-2-0
| 分辨率 | 5s | 10s | 15s |
|---|---|---|---|
| 720p | 200 | 400 | 600 |
seedance-2-0-fast
| 分辨率 | 5s | 10s | 15s |
|---|---|---|---|
| 720p | 200 | 400 | 600 |
seedance-2-mini
所有支持模式的标准费率均为:480p 每秒 9.5 积分,720p 每秒 20.5 积分。计算方式为 ceil(rate * duration_seconds)。
reference-to-video 带视频输入时,配置费率为 480p 每秒 6 积分或 720p 每秒 12.5 积分;此时应提供 options.source_video_duration_seconds。
seedance-1-5-pro
| 分辨率 | 4s | 8s | 12s | 开启音频后的价格 |
|---|---|---|---|---|
| 480p | 7 | 15 | 21 | 14, 30, 42 |
| 720p | 15 | 30 | 45 | 30, 60, 90 |
| 1080p | 30 | 60 | 90 | 60, 120, 180 |
最后一列按同一时长顺序应用配置中的 2 倍音频倍率。
Seedence 1.0
| 模型 | 配置中的价格 |
|---|---|
seedence-1-0-pro | Standard 质量:4s = 14、8s = 28、12s = 42 积分 |
seedence-1-0-pro-fast | 未配置细粒度积分矩阵;公开目录返回 16+ credits |
seedence-1-0-lite | 480p:5s = 10、10s = 20;720p:5s = 20、10s = 30;1080p:5s = 30、10s = 40 |
seedence-1-0-pro 当前合法时长为 5s 和 10s,而配置中的 Standard 价格键为 4s、8s、12s。不得为这一不匹配推断价格;提交任务前应读取 GET /api/v1/models。
cURL
curl -X POST https://vidrush-ai.com/api/v1/videos \
-H "Authorization: Bearer $VIDRUSH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2-mini",
"mode": "text-to-video",
"prompt": "Ink clouds blooming in clear water",
"options": {
"duration": "4s",
"resolution": "480p",
"aspect_ratio": "1:1",
"audio": true
}
}'CLI
vidrush generate -m seedance-2-mini -p "Ink clouds blooming in clear water" \
--duration 4s --resolution 480p --aspect-ratio 1:1 --audio --waitMCP
让 MCP 客户端在调用 generate_video 前先调用 get_video_model,以选择正确的 Seedance 模式和价格。
注意事项
- 按秒计费的模型会用
ceil向上取整。 - 本系列只有 Seedance 2 Mini 和 Seedance 1.5 Pro 支持
audio: true。 - 模型 ID 同时使用
seedance和seedence两种拼写,必须按上表原样发送。