AI GPT ImageAI GPT Image
Video ModelsSeedance

Seedance 2.0 Fast 图生视频

获取 API Keyseedance-2.0-fast-image-to-video

Seedance 2.0 Fast 图生视频 API 文档

使用 seedance-2.0-fast-image-to-video 模型快速生成视频内容

Overview

本文档说明如何使用 seedance-2.0-fast-image-to-video 模型进行快速图生视频。

Authentication

所有 API 请求都需要在请求头中携带 Bearer Token:

Authorization: Bearer YOUR_API_KEY

获取 API Key:

  1. 打开 API Keys 页面
  2. 点击 Create API Key

1. 创建生成任务

Request Parameters

ParameterTypeRequiredDescription
modelstringYes对外模型 ID,必须精确传入 seedance-2.0-fast-image-to-video
inputobjectYes输入参数对象

input Object Parameters

  • promptstring,必填):描述源图片应如何运动或扩展成视频
  • image_urlsstring[],必填):至少一张源图片 URL
  • aspect_ratio / ratiostring,可选):输出视频比例
  • resolutionstring,可选):480p720p1080p
  • durationnumber,可选):输出视频时长,单位秒
  • generate_audioboolean,可选):是否生成音频
  • web_searchboolean,可选):是否启用联网搜索
  • nsfw_checkerboolean,可选):默认 false;如果传 false,平台侧内容过滤会被关闭,结果会直接返回模型原始输出

积分消耗

seedance-2.0-fast-image-to-video 当前公开积分规则如下:

分辨率每秒积分
480p10
720p20
1080p40

Request Example

{
  "model": "seedance-2.0-fast-image-to-video",
  "input": {
    "prompt": "Animate the portrait with subtle hair motion and a slow cinematic push-in",
    "image_urls": ["https://cdn.example.com/input.png"],
    "resolution": "720p",
    "duration": 5,
    "nsfw_checker": false
  }
}

Notes

  • 第一张源图片会作为主参考首帧输入
  • Fast 版本与标准 Seedance 2.0 的积分规则不同
Seedance 2.0 Fast 图生视频