Skip to main content
Seedance 1.0 Pro Fast 图生视频 是字节跳动 Seedance 系列的图生视频模型,通过 AnyFast API 提供服务。使用参考图片作为首帧(和尾帧)生成视频。

核心能力

  • 图生视频 — 使用参考图片作为首帧
  • 灵活时长 — 2–12 秒
  • 多种比例 — 16:9、4:3、1:1、3:4、9:16、21:9、adaptive
  • 多种分辨率 — 480p、720p、1080p

快速示例

curl https://www.anyfast.com.cn/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedance-1-0-pro-fast-251015",
    "content": [
      {"type": "text", "text": "女孩睁开眼,温柔地看向镜头"},
      {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}, "role": "first_frame"}
    ],
    "ratio": "adaptive",
    "duration": 5,
    "resolution": "720p"
  }'

参数说明

参数类型必填说明
modelstring固定为 doubao-seedance-1-0-pro-fast-251015
contentarraytext 项 + 带 role 的 image_url 项
ratiostring支持 adaptive,默认 16:9
resolutionstring480p720p1080p,默认 720p
durationinteger2–12 秒,默认 5
watermarkboolean默认 false
seedinteger随机种子
camera_fixedboolean默认 false

API 参考

查看 Seedance 1.0 Pro Fast 图生视频 的交互式 API Playground。