Kling Omni Video O3 图片转视频

kwaivgi/kling-video-o3/image-to-video

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

示例

Kling Omni Video O3 图片转视频 example 1

参数

名称类型默认约束说明
image *图片image_upload0–1 items第一帧图片的URL。
last_image结束图片image_upload0–1 items最后一帧图片的URL。
prompt提示词textarea≤ 5000 chars生成的正向提示词。
resolution生成模式select720P720P | 1080P | 4K
duration时长select53 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | …生成媒体的时长(单位:秒,范围:3-15)。
sound音频booleanfalse是否为视频生成音频。
multi_shot多镜头开关boolean是否生成多镜头视频 如果为真:提示参数无效。 如果为假:shot_type 和 multi_prompt 参数无效。
shot_type镜头类型selectintelligencecustomize | intelligence生成的镜头类型。
multi_prompt多提示词array<object>生成时使用的多提示词元素列表。
durationDurationnumber5The duration of this shot in seconds.
promptPrompttextThe prompt for this shot.

输出字段

字段类型说明
videosarray<string>Generated video URLs

API

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

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/kwaivgi/kling-video-o3/image-to-video" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "image": [
      "https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
    ],
    "last_image": [
      "https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
    ],
    "prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
    "resolution": "720P",
    "duration": 5,
    "sound": false,
    "shot_type": "intelligence"
  }
}'

# 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/kwaivgi/kling-video-o3/image-to-video",
    headers=HEADERS,
    json={
        "input": {
            "image": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
            ],
            "last_image": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
            ],
            "prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
            "resolution": "720P",
            "duration": 5,
            "sound": False,
            "shot_type": "intelligence"
        }
    },
)
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/kwaivgi/kling-video-o3/image-to-video", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "image": [
        "https://assets-public.namifusion.com/uploads/images/2026-04-14/5895345cd939.png"
      ],
      "last_image": [
        "https://assets-public.namifusion.com/uploads/images/2026-04-14/c98e7d7d7c2e.png"
      ],
      "prompt": "Generate a dynamic video of a tranquil sunset scene transitioning into a starry night over the mountains, with realistic lighting and smooth motions.",
      "resolution": "720P",
      "duration": 5,
      "sound": false,
      "shot_type": "intelligence"
    }
  }),
});
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);

文档

Kling Omni Video O3 标准版图片转视频

将静态图片转化为具有自然运动和物理模拟的电影级视频。

Kling Omni Video O3 标准版是一款由 MVL(多模态视觉语言)技术驱动的先进图片转视频模型。它能够从静态图片生成动态的电影级视频,在保持主体一致性的同时,添加自然运动、基于物理的动态效果和无缝过渡。支持可选音频生成和灵活时长设置,该模型以实惠的价格提供高质量的结果。

🚀 核心功能

  • MVL 技术:利用多模态视觉语言技术实现逼真的运动和场景动态。
  • 主体一致性:确保生成的视频保持输入图片的完整性。
  • 灵活时长:支持 3 到 15 秒的视频生成,满足不同需求。
  • 音频支持:可选生成同步的音效,提供更沉浸的体验。
  • 起始-结束帧引导:可选结束帧,实现两个状态之间的可控过渡。
  • 提示词增强器:自动优化运动描述以获得最佳效果。

🛠️ 技术规格

参数描述选项/默认值
模型架构MVL(多模态视觉语言)-
输入格式图片 URL、提示词、可选结束图片-
输出格式视频(可选音频)-
时长生成视频的时长(秒)3–15 秒(默认:5 秒)
分辨率原生 1080P-
音频可选生成同步音效默认禁用
延迟低延迟,无冷启动-

示例提示词

  1. 提示词:"阳光穿过树林的宁静森林场景,镜头轻轻移动。"
  2. 提示词:"夜晚的未来城市景观,霓虹灯和飞行车辆。"

💰 定价

类型720P1080P4K
无声0.0840.1120.420
有声0.1120.1400.420

计费规则:

  • 基础单价:根据分辨率而定。
  • 有声加价:在无声价格基础上增加约 33.3%。
  • 时长范围:3–15 秒。

💡 最佳使用场景

  • 内容创作:将产品图片、肖像或概念艺术转化为引人入胜的视频片段。
  • 社交媒体:大规模制作短视频内容,成本低廉。
  • 场景过渡:使用起始和结束帧实现流畅的电影级过渡。
  • 电商:通过运动和环境音效让产品图片栩栩如生。

🔗 相关模型

  • Kling Video O3 Pro 图片转视频:O3 Pro 级别的最高视觉质量。
  • Kling Video O3 标准版文本转视频:标准级别的文本转视频生成。
  • Kling Video O3 Pro 视频编辑:通过自然语言指令编辑现有视频。
  • Kling Video O3 Pro 参考图片转视频:通过参考图片生成一致风格和角色的视频。

相关模型

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 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 / 每次
Image to Video
Image to VideoGoogle

Gemini Omni Flash 图片转视频 API

Gemini Omni Flash Image to Video 可将输入图片动画化为带同步音频的短 AI 视频,在遵循源图片内容的同时添加运动和声音。开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$1.12 / 每次