视频 Seedance Beta(长视频版)VIP
长视频版 · 4-15 秒 · 720p / 1080p · 支持音频参考
🎬 Seedance Beta 长视频版。相较 Pro 版,支持音频参考素材且最大可达 9 张参考图。按条计费,提交即扣费。

端点

POST /v1/videos                 # 提交任务
GET  /v1/videos/{id}            # 查询状态

提交任务(cURL)

curl -X POST https://artifex.help/v1/videos \
  -H "Authorization: Bearer YOUR_VIP_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Seedance-2.0-Pro-Beta",
    "prompt": "let @1 walk into the scene of @2 with cinematic lighting",
    "duration": 8,
    "images": ["https://cdn.example.com/person.jpg"],
    "videos": ["https://cdn.example.com/scene.mp4"]
  }'

立即返回:

{
  "id": "task_xxxxx",
  "task_id": "task_xxxxx",
  "status": "queued",
  "progress": 0,
  "model": "Seedance-2.0-Pro-Beta",
  "duration": 8
}

查询状态

curl https://artifex.help/v1/videos/{task_id} \
  -H "Authorization: Bearer YOUR_VIP_API_KEY"

Python 完整示例

import requests, time

BASE = "https://artifex.help"
KEY  = "YOUR_VIP_API_KEY"
H = {"Authorization": f"Bearer {KEY}", "Content-Type": "application/json"}

# 1. 提交
res = requests.post(f"{BASE}/v1/videos", headers=H, json={
    "model": "Seedance-2.0-Fast-Beta",
    "prompt": "a corgi running in a sunflower field, slow motion",
    "duration": 8
}).json()
task_id = res["id"]
print("submitted:", task_id)

# 2. 轮询
while True:
    time.sleep(8)
    s = requests.get(f"{BASE}/v1/videos/{task_id}", headers=H).json()
    print(s["status"], s.get("progress", 0))
    if s["status"] == "completed":
        print("video:", s["video_url"])
        break
    if s["status"] == "failed":
        print("failed:", s.get("error"))
        break

可用模型与价格

模型速度档位分辨率价格
Seedance-2.0-Fast-Beta快速720p$4.50/ 条
Seedance-2.0-Pro-Beta标准720p$8.00/ 条
Seedance-2.0-Pro-Beta-1080P标准1080p$9.50/ 条

请求参数

字段类型必填说明
modelstringSeedance-2.0-Fast-Beta / Seedance-2.0-Pro-Beta / Seedance-2.0-Pro-Beta-1080P
promptstring视频描述,支持 @1/@2 引用素材
durationint4~15 秒,默认 5
imagesstring[]参考图 URL 数组(最多 9 张)
videosstring[]参考视频 URL 数组(最多 3 个)
audiosstring[]参考音频 URL 数组(最多 3 个)

素材限制

项目限制
视频时长4 ~ 15 秒
参考图片最多 9 张
参考视频最多 3 个
参考音频最多 3 个(本版本独有支持)
素材总大小≤ 20MB(图片+视频+音频合计)
Prompt 长度≤ 1500 字符

Prompt 资源引用

可在 prompt 中用 @1@2 ... 引用素材,按 images → videos → audios 的顺序编号:

{
  "images": ["a.jpg", "b.jpg"],   // @1, @2
  "videos": ["c.mp4"],             // @3
  "audios": ["d.mp3"],             // @4
  "prompt": "@1 walks into @3, with @4 as background music"
}

状态说明

status含义
queued排队中
in_progress生成中
completed完成 → 取 video_url
failed失败 → 查看 error
💡 Beta 版按条计费,提交即扣费。失败会自动退款。
⚠️ 需要使用 vip 分组的 API Key。普通 token 调用会返回 403。
📌 与Pro 版的主要区别:本版本支持音频参考素材,最大参考图 9 张(多于 Pro 版的 4 张)。。