Seedance 2.0 Fast 图片转视频

doubao/seedance-2-0-fast/image-to-video

Seedance 2.0 Fast(图片转视频)可根据参考图片和提示词生成电影感视频,原生支持音画同步,具备导演级控制力与出色的运动稳定性,并针对更快生成和更低成本进行了优化。基于 Seed 统一多模态架构构建。

示例

Seedance 2.0 Fast 图片转视频 example 1

参数

名称类型默认约束说明
prompt *提示词textarea≤ 5000 chars描述视频中的场景、动作、镜头运动和氛围。
first_frame *图片image_uploadimage/* · 0–1 items用于引导视频生成的起始图片 URL。
last_frame最后一张图片image_uploadimage/* · 0–1 items用于视频续接的最后一帧图片 URL。
aspect_ratio宽高比select16:9 | 9:16 | 4:3 | 3:4 | 1:1 | 21:9生成视频的宽高比。如未指定,将自动适配输入图片。
resolution分辨率select720p480p | 720p输出视频的分辨率。
duration时长slider54 ~ 15 · step 1生成视频的时长(单位:秒,4-15 秒)。
generate_audio生成音频booleantrue是否生成与输出视频同步的原生音频。默认为 true。

API

通过统一 REST API 调用本模型;在 API Keys 页获取密钥。

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2-0-fast/image-to-video" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "prompt": "A cinematic slow push-in on a lone astronaut standing on a windswept red desert at sunset, dust drifting across the ground as distant storm clouds roll over the horizon. The astronaut turns slightly toward a glowing research outpost in the distance, cape and suit details moving naturally in the wind. Subtle handheld camera motion, dramatic lighting, epic sci-fi mood, highly realistic motion, synchronized ambient wind and distant machinery sounds.",
    "first_frame": [
      "https://assets-public.namifusion.com/marketplace/images/2026-06-12/638e1ee18ac7.jpeg"
    ],
    "last_frame": [
      "https://assets-public.namifusion.com/marketplace/images/2026-06-12/b4826e0e01e2.jpeg"
    ],
    "aspect_ratio": "16:9",
    "resolution": "720p",
    "duration": 6,
    "generate_audio": true
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2-0-fast/image-to-video",
    headers=HEADERS,
    json={
        "input": {
            "prompt": "A cinematic slow push-in on a lone astronaut standing on a windswept red desert at sunset, dust drifting across the ground as distant storm clouds roll over the horizon. The astronaut turns slightly toward a glowing research outpost in the distance, cape and suit details moving naturally in the wind. Subtle handheld camera motion, dramatic lighting, epic sci-fi mood, highly realistic motion, synchronized ambient wind and distant machinery sounds.",
            "first_frame": [
                "https://assets-public.namifusion.com/marketplace/images/2026-06-12/638e1ee18ac7.jpeg"
            ],
            "last_frame": [
                "https://assets-public.namifusion.com/marketplace/images/2026-06-12/b4826e0e01e2.jpeg"
            ],
            "aspect_ratio": "16:9",
            "resolution": "720p",
            "duration": 6,
            "generate_audio": True
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedance-2-0-fast/image-to-video", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "prompt": "A cinematic slow push-in on a lone astronaut standing on a windswept red desert at sunset, dust drifting across the ground as distant storm clouds roll over the horizon. The astronaut turns slightly toward a glowing research outpost in the distance, cape and suit details moving naturally in the wind. Subtle handheld camera motion, dramatic lighting, epic sci-fi mood, highly realistic motion, synchronized ambient wind and distant machinery sounds.",
      "first_frame": [
        "https://assets-public.namifusion.com/marketplace/images/2026-06-12/638e1ee18ac7.jpeg"
      ],
      "last_frame": [
        "https://assets-public.namifusion.com/marketplace/images/2026-06-12/b4826e0e01e2.jpeg"
      ],
      "aspect_ratio": "16:9",
      "resolution": "720p",
      "duration": 6,
      "generate_audio": true
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

文档

Seedance 2.0 Fast Image to Video

更快、更低成本的电影级图片转视频生成,并支持原生音画同步。

Seedance 2.0 Fast Image to Video 是 ByteDance 推出的速度优化型图片转视频模型,可基于参考图片与提示词生成具有电影感的视频内容。该模型在保持主体一致性、构图稳定性与运动表现力的同时,兼顾更快的生成效率与更低的使用成本,适合高频迭代、批量生产与快速验证场景。

🚀 核心特性

  • 速度优化生成:面向快速出片与高效迭代优化,适合原型验证、创意探索和批量内容生产。
  • 更低成本:相比标准版具备更高性价比,适合预算敏感或高吞吐工作流。
  • 高保真参考图保持:能够较好保留输入图片中的主体身份、构图关系与整体风格。
  • 原生音画同步:支持在单次生成中输出带同步音频的视频,减少后期拼接成本。
  • 导演级提示词控制:可通过提示词细化场景动作、镜头运动、光线氛围与角色表演。
  • 视频续写能力:支持通过 last_image 指定末帧,用于镜头延展或连续叙事生成。

🛠️ 技术规格

项目说明
模型架构Seed 统一多模态架构(速度优化版本)
任务类型图片转视频
输入提示词、起始图片,可选末帧图片
输出形式视频(可选原生同步音频)
分辨率480p、720p(默认)、1080p
时长4–15 秒(默认 5 秒)
宽高比16:9、9:16、4:3、3:4、1:1、21:9;未指定时可自适应输入图片
音频默认开启,支持原生音画同步生成
参考图能力文档说明支持最多 4 张参考图片
连续生成支持通过末帧图片进行视频续写
控制能力支持通过提示词控制场景、动作、镜头运动与氛围
延迟面向快速生成优化;实际耗时取决于分辨率、时长与任务负载

示例提示词

  1. 一位模特站在霓虹灯映照的雨夜街头,镜头缓慢推进,风吹动外套下摆,地面反射城市灯光,整体氛围电影感强烈。
  2. 一台高端耳机置于纯色背景的转台上,镜头环绕拍摄,柔和棚拍光线,突出金属质感与细节,适合产品广告。
  3. 清晨的山谷中,一只鹿缓慢穿过薄雾森林,阳光从树梢间洒下,镜头平稳跟随,环境音自然宁静。

💰 价格

服务类型价格预估成本
视频生成 (文字/图片生视频)$5.6 / 1M Tokens~每秒 $0.1
视频生成 (视频生视频)$3.3 / 1M Tokens~每秒 $0.065

💡 最佳使用场景

  • 快速创意验证:在正式制作前快速测试不同镜头语言、动作设计与视觉风格。
  • 电商与产品动画:将静态商品图快速转化为动态展示视频,用于广告、详情页与短视频投放。
  • 社交媒体内容批量生产:适合高频生成多版本素材,用于 A/B 测试与内容矩阵运营。
  • 视觉概念预演:用于分镜预览、情绪片段制作和低成本动态概念展示。

🔗 相关模型

  • Seedance 2.0 Image-to-Video:标准版,适合追求更高最终质量的项目。
  • Seedance 2.0 Fast Text-to-Video:快速文本生成视频版本,适合无参考图片场景。
  • Seedance 2.0 Text-to-Video:标准文本生成视频版本,适合更高质量需求。

相关模型

xAI Grok Imagine Video v1.5 图片转视频
Image to VideoX Ai

xAI Grok Imagine Video v1.5 图片转视频

使用文本提示词将单张输入图片生成 1-15 秒视频,支持 480p 和 720p。

$0.840 / 每次
Vidu Q3 图片转视频
Image to VideoVidu

Vidu Q3 图片转视频

Vidu Q3 图片转视频将文本提示词转化为高质量视频,具有卓越的视觉保真度和多样的运动。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。

$0.750 / 每次
Nami Wan 2.7 I2V Spicy Prime
Image to Video

Nami Wan 2.7 I2V Spicy Prime

根据参考图片和提示词生成 2–15 秒视频,支持 720p/1080p 输出与可选音频引导。

$1.00 / 每次
MiniMax H3 图片转视频
Image to VideoMinimax

MiniMax H3 图片转视频

MiniMax H3 图片转视频可将首帧图片动画化为连贯的 2K 视频,支持自然语言运动指令,并可选用末帧控制,以实现一致的运动、场景连贯性和电影感视频生成。提供开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$0.650 / 每次
Kling Omni Video O3 图片转视频
Image to VideoKling

Kling Omni Video O3 图片转视频

Kling Omni Video O3 图片转视频利用MVL(多模态视觉语言)技术将静态图片转化为动态电影级视频。保持主体一致性,同时添加自然运动、物理模拟和无缝场景动态。支持音频生成。即用型REST API,最佳性能,无冷启动,价格实惠。

$0.420 / 每次
Kling Omni Video O1 图生视频
Image to VideoKling

Kling Omni Video O1 图生视频

Kling Omni Video O1 图生视频使用 MVL(多模态视觉语言)技术将静态图像转换为动态电影级视频。在添加自然运动、物理模拟和无缝场景动态的同时,保持主体一致性。提供即用型 REST API,最佳性能,无冷启动,价格实惠。

$0.560 / 每次
Kling 3.0 Standard 图像转视频模型
Image to VideoKling

Kling 3.0 Standard 图像转视频模型

Kling 3.0 Standard 提供高质量的图像转视频生成,具有流畅的运动、电影级视觉效果、准确的提示词遵循和原生音频,适合分享的剪辑。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。

$0.420 / 每次
Kling V2.6 图片转视频 API
Image to VideoKling

Kling V2.6 图片转视频 API

Kling 2.6 提供顶级的图片转视频生成,具有流畅的运动效果、电影级视觉效果、精准的提示词匹配以及原生音频,适合直接分享的短片。即开即用的 REST 推理 API,性能卓越,无冷启动,价格实惠。

$0.210 / 每次