Kling Omni Video O1 图生视频

kwaivgi/kling-video-o1/image-to-video

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

示例

Kling Omni Video O1 图生视频 example 1

参数

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

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-o1/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": "1080P",
    "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-o1/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": "1080P",
            "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 600s server-side.
deadline = time.time() + 660
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-o1/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": "1080P",
      "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 600s server-side.
const deadline = Date.now() + 660 * 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 O1 图片转视频

利用先进的MVL技术将静态图片转化为动态电影级视频

Kling Omni Video O1 图片转视频是一款尖端模型,专为将静态图片转换为动态、物理感知的电影级视频而设计。该模型采用多模态视觉语言(MVL)技术,确保主体一致性,同时引入自然运动、物理模拟和流畅的场景动态。无需冷启动,价格实惠,是开发者追求高质量视频生成的理想选择。


🚀 关键功能

  • 智能图片动画:为静态主体添加自然、基于物理的运动,同时保留原始图片细节和构图。
  • 主体一致性:确保角色身份稳定,场景道具一致,色调和光照风格保持不变。
  • 多模态理解:结合输入图片和提示词,控制运动方向、镜头角度和场景氛围。
  • 物理模拟:生成逼真的运动模式,实现真实的视频动态。
  • 提示词控制:允许用户通过详细的文字描述引导动画生成,获得精确结果。

🛠️ 技术规格

参数类型默认值范围描述
图片string--视频的第一帧(必填)。
提示词string--生成的正向提示词(必填)。
最后图片string--视频的最后一帧(可选)。
时长integer53, 4, 5, 6, 7, 8, 9, 10生成视频的时长。未使用最后图片时,仅支持5秒或10秒。

💰 价格

属性720P1080P
无参考视频0.08400.1120
有参考视频0.12600.1680

价格按输出视频时长的秒数计费。


💡 最佳使用场景

  • 电商:从静态图片生成吸引人的产品视频,提升在线商品展示效果。
  • 社交媒体:为Instagram、TikTok和Facebook等平台生成动态内容。
  • 电影制作:通过自然运动和基于物理的动态原型设计电影场景。
  • 广告宣传:为营销活动制作高质量动画视觉效果。

🔗 相关模型

  • Kwaivgi Kling V3.0 文本转视频:基于文本生成视频的模型。
  • Kwaivgi Kling Video O1 参考转视频:用于高级场景的参考视频生成模型。

相关模型

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 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 / 每次