Skip to content

Doubao SeeDance 视频生成

使用 DragonAPI 密钥和本站接口。示例中的 your-media.example 是占位地址,需替换为你自己的可访问素材或回调地址。协议、可用性与价格以当前模型说明和控制台为准。

使用字节跳动豆包 Doubao SeeDance 模型生成视频

  • 字节跳动豆包视频生成模型
  • 通过 model 参数选择 doubao-seedance-1-0-pro-fastdoubao-seedance-1-0-pro-quality 模型
  • 支持文本到视频生成
  • 支持首帧/尾帧/参考图控制
  • 异步任务管理,通过任务 ID 查询结果

重要变更 :为了更稳定的调用体验,我们不再支持在 image_urls 中直接传入 base64 图片数据。请先将素材保存到可公开访问的 HTTPS 地址,再调用本接口。

Authorizations

Authorization

string · 必填

所有接口均需要使用 Bearer Token 进行认证

获取 DragonAPI API Key:访问 DragonAPI 密钥管理页面 获取您的 API Key

使用时在请求头中添加:

text
Authorization: Bearer YOUR_DRAGONAPI_KEY

Body

model

string · 必填 · 默认 doubao-seedance-1-0-pro-fast

视频生成模型名称

可用模型:

  • doubao-seedance-1-0-pro-fast - 快速版(40-90 秒生成)
  • doubao-seedance-1-0-pro-quality - 高质量版(90-300 秒生成)

prompt

string · 必填

视频内容描述

详细描述场景、动作、风格以获得更好的生成效果

示例:"海滩日落,金色阳光照在海面上,海浪轻轻拍打沙滩"

duration

integer · 可选 · 默认 5

视频时长(秒)

支持范围:2 \~ 12

默认:5

aspect_ratio

string · 可选 · 默认 16:9

视频宽高比

可选项:

  • 16:9 - 横屏
  • 9:16 - 竖屏
  • 1:1 - 方形
  • 4:3 - 传统比例
  • 3:4 - 竖向传统比例
  • 21:9 - 超宽屏

默认:16:9

resolution

string · 可选 · 默认 720p

视频分辨率

可选项:

  • 480p - 标清
  • 720p - 高清
  • 1080p - 全高清

默认:720p

1080p 限制 :使用参考图(image_with_rolesrole: reference)时,不支持 1080p 分辨率

分辨率与宽高比组合

分辨率支持的宽高比备注
480p16:9, 4:3, 1:1, 3:4, 9:16, 21:9全部支持
720p16:9, 4:3, 1:1, 3:4, 9:16, 21:9全部支持
1080p16:9, 4:3, 1:1, 3:4, 9:16, 21:9不支持参考图

image_urls

string[] · 可选

首帧图像 URL 数组,用于图生视频

⚠️ 仅支持 URL 格式(不再支持 base64)

  • 公开可访问的图像 URL(http\😕/ 或 https\😕/)
  • 请先将本地素材保存到可公开访问的 HTTPS 地址

示例:["https://your-media.example/cat.png"]

image_urlsimage_with_roles 不能同时使用

image_with_roles

array · 可选

带角色的图像数组,用于更精确的控制

字段说明

url

string · 必填

图像 URL 地址

role

string · 必填

图像角色

可选项:

  • first_frame - 首帧图,作为视频起始画面(仅支持一张)
  • last_frame - 尾帧图,作为视频结束画面( 仅 quality 版本支持 ,仅支持一张)
  • reference - 参考图,用于指导视频风格(仅支持一张)

示例:

json
[
  {"url": "https://your-media.example/start.png", "role": "first_frame"},
  {"url": "https://your-media.example/end.png", "role": "last_frame"}
]
  • image_urlsimage_with_roles 不能同时使用
  • 每种角色的图片仅支持上传一张
  • last_frame(尾帧图)仅 doubao-seedance-1-0-pro-quality 版本支持,fast 版本不支持首尾帧同时使用

metadata

object · 可选

扩展参数(可选)

字段说明

seed

integer · 可选

种子整数,用于控制生成内容的随机性

取值范围:-1 \~ 2^32-1

相同 seed 值会生成类似结果,但不保证完全一致

Response

id

string · 可选

任务唯一标识符,用于查询任务状态

object

string · 可选

对象类型,固定为 generation.task

model

string · 可选

使用的模型名称

status

string · 可选

任务状态

  • queued - 排队等待处理
  • in_progress - 处理中
  • completed - 成功完成
  • failed - 失败

progress

integer · 可选

任务进度百分比(0-100)

created_at

integer · 可选

任务创建时间戳(Unix 时间戳)

metadata

object · 可选

任务元数据

curl --request POST \
  --url https://newapi.dragon3api.com/v1/videos \
  --header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "doubao-seedance-1-0-pro-fast",
    "prompt": "海滩日落,金色阳光照在海面上,海浪轻轻拍打沙滩",
    "duration": 5,
    "aspect_ratio": "16:9",
    "resolution": "720p"
  }'
curl --request POST \
  --url https://newapi.dragon3api.com/v1/videos \
  --header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "doubao-seedance-1-0-pro-quality",
    "prompt": "女孩在樱花树下旋转,花瓣随风飘落",
    "duration": 5,
    "aspect_ratio": "9:16",
    "resolution": "1080p"
  }'
curl --request POST \
  --url https://newapi.dragon3api.com/v1/videos \
  --header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "doubao-seedance-1-0-pro-quality",
    "prompt": "画面从白天逐渐过渡到夜晚,城市灯光逐渐亮起",
    "duration": 5,
    "image_with_roles": [
      {"url": "https://your-media.example/day.png", "role": "first_frame"},
      {"url": "https://your-media.example/night.png", "role": "last_frame"}
    ]
  }'
import requests

response = requests.post(
    "https://newapi.dragon3api.com/v1/videos",
    headers={
        "Authorization": "Bearer YOUR_DRAGONAPI_KEY",
        "Content-Type": "application/json"
    },
    json={
        "model": "doubao-seedance-1-0-pro-fast",
        "prompt": "海滩日落,金色阳光照在海面上,海浪轻轻拍打沙滩",
        "duration": 5,
        "aspect_ratio": "16:9",
        "resolution": "720p"
    }
)

task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const response = await fetch('https://newapi.dragon3api.com/v1/videos', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_DRAGONAPI_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'doubao-seedance-1-0-pro-fast',
    prompt: '海滩日落,金色阳光照在海面上,海浪轻轻拍打沙滩',
    duration: 5,
    aspect_ratio: '16:9',
    resolution: '720p'
  })
});

const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
  "id": "task_vid_xyz789ghi012",
  "object": "generation.task",
  "model": "doubao-seedance-1-0-pro-fast",
  "status": "queued",
  "progress": 0,
  "created_at": 1703884800,
  "metadata": {}
}

模型、价格与服务规则以当前控制台为准。