Fast 系列模型

Seedance 2.0 的每一种模式都提供 StandardFast 两档。Fast 系列以更快的生成速度更低的按秒计费成本换取轻微的画质权衡,非常适合快速迭代、批量生产与 A/B 测试。

三个 Fast 模型

Fast Model ID对应 Standard用途
seedance-2.0-fast-text-to-videoseedance-2.0-text-to-video纯文本生成视频
seedance-2.0-fast-image-to-videoseedance-2.0-image-to-video1 或 2 张图驱动
seedance-2.0-fast-reference-to-videoseedance-2.0-reference-to-video多模态合成

所有 Fast 模型共用同一个端点和同一套参数:

POST https://api.evolink.ai/v1/videos/generations

与 Standard 的差异

完全一致

  • 端点
  • 请求体结构(所有参数名、类型、默认值)
  • 允许的画质(480p / 720p)、时长(415 秒)、画面比例
  • 输入素材的数量和格式限制
  • 响应结构、任务生命周期、Webhook 回调格式
  • prompt 长度上限(中文 500 / 英文 1000)

不同之处

  • 生成速度更快
  • 按秒计费的单价更低
  • 画质细节略低于 Standard(在大多数场景肉眼难以分辨)
  • fast-image-to-video 的首帧 / 首尾帧模式由模型自动判断(传 1 张 = 首帧驱动;传 2 张 = 首尾帧过渡),无需额外字段

推荐工作流

一个典型的生产流水线会同时使用两档:

开发 / 调试 prompt
    ↓  (使用 Fast 模型快速迭代)
    ↓
筛选出效果满意的 prompt 和参数组合
    ↓  (切换 model 字段,其它参数不变)
    ↓
最终交付
    ↓  (使用 Standard 模型生成高质量成片)

代码层面只需替换 model 字段,无需重写任何其它逻辑。

curl -X POST https://api.evolink.ai/v1/videos/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0-fast-text-to-video",
    "prompt": "介绍 2026 年最新上市的电动跑车,展现流线型外观和内饰科技感。",
    "duration": 6,
    "quality": "720p",
    "aspect_ratio": "16:9",
    "generate_audio": true,
    "model_params": {
      "web_search": true
    }
  }'

model_params.web_search 是 text-to-video 系列(含 Fast)独有的参数,仅在模型实际触发联网时额外计费。

示例:Fast 图生视频(自动判别首帧 / 首尾帧)

import requests

# 传 1 张 → 首帧驱动
response = requests.post(
    "https://api.evolink.ai/v1/videos/generations",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json"
    },
    json={
        "model": "seedance-2.0-fast-image-to-video",
        "prompt": "镜头缓慢推进,画面逐渐鲜活起来",
        "image_urls": ["https://example.com/scene.jpg"],
        "duration": 5
    }
)

# 传 2 张 → 自动切换为首尾帧过渡
response = requests.post(
    "https://api.evolink.ai/v1/videos/generations",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json"
    },
    json={
        "model": "seedance-2.0-fast-image-to-video",
        "prompt": "两个场景之间的平滑过渡",
        "image_urls": [
            "https://example.com/first.jpg",
            "https://example.com/last.jpg"
        ],
        "duration": 6
    }
)

示例:Fast 参考生视频

curl -X POST https://api.evolink.ai/v1/videos/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0-fast-reference-to-video",
    "prompt": "参考视频 1 的第一人称视角,以音频 1 作为全程背景音乐。宣传短片片头。",
    "image_urls": ["https://example.com/ref1.jpg"],
    "video_urls": ["https://example.com/reference.mp4"],
    "audio_urls": ["https://example.com/bgm.mp3"],
    "duration": 10,
    "quality": "720p",
    "aspect_ratio": "16:9"
  }'

什么时候不建议用 Fast

  • 最终交付物 / 广告成片 — 选择 Standard,画质细节更稳
  • 近距离面部或微表情镜头 — Standard 更精细
  • 复杂 reference-to-video 合成(同时用 9 图 + 3 视频 + 3 音频) — Standard 综合理解能力更强

相关文档