跳转到主要内容
厂商: Google Model ID: veo-3.1-fast 能力: 720p · 最长 5s · 文本 + image init · 通过 tasks API 异步 价格: 按秒计费,fast 级 (实时费率) Veo 3.1 Fast 是迭代变体。同样的 Veo 运动强项(自然世界镜头、符合物理) 被压到 720p / 5s,周转通常在 30 秒以内。prompt 设计、定稿 Veo 3.1 之前 跑 draft,以及用户点了「生成」之后盯着秒表的 UX —— 这些场景就用它。

Submit

curl https://llm.bytespike.ai/v1/tasks/submit \
  -H "x-api-key: $BYTESPIKE_API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "model": "veo-3.1-fast",
    "prompt": "Slow zoom into a bowl of ramen, steam rising.",
    "duration_seconds": 4,
    "resolution": "720p"
  }'

Body 参数

FieldTypeRequiredDefaultNotes
modelstringyesveo-3.1-fast
promptstringyes针对英文调优。
duration_secondsintegeryes1–5。
resolutionstringno720p仅支持 720p
aspect_ratiostringno16:916:9 / 9:16 / 1:1
seedintegerno可复现性。
image_initstringnoinit image 的 URL。

Submit + poll

// Submit 响应
{"task_id": "task_…", "status": "queued", "estimated_credits": 0.18}

// 完成响应
{"task_id": "task_…", "status": "completed", "result": {"video_url": "https://cdn.bytespike.ai/vid/...", "duration_seconds": 4, "resolution": "720p"}, "credits": 0.18}
推荐节奏:前 30 秒每 1 秒,之后每 2 秒,最长到 60 秒。query 免费。

代码示例

curl https://llm.bytespike.ai/v1/tasks/submit \
  -H "x-api-key: $BYTESPIKE_API_KEY" \
  -H "content-type: application/json" \
  -d '{"model": "veo-3.1-fast", "prompt": "Slow zoom into ramen", "duration_seconds": 4, "resolution": "720p"}'

错误

Code触发条件计费?
400 / 401 / 402 / 403标准不计费
451prompt 被上游安全过滤拦截不计费
5xx上游问题不计费(自动重试)

何时选用

  • 延迟敏感的 UX —— 用户在盯着秒表。
  • 定稿 Veo 3.1 / Sora 2 之前的 prompt 迭代。
  • 完整 1080p 保真度,见 Veo 3.1
  • ByteDance 系 fast 级,见 Seedance Fast

限制

限制
最长时长5s
最短时长1s
分辨率仅 720p
长宽比16:9、9:16、1:1
支持 image init
4s 片段典型延迟20-40s
通过 tasks API 异步