Kling Omni Video O3 图片转视频
kwaivgi/kling-video-o3/image-to-video
Kling Omni Video O3 图片转视频利用MVL(多模态视觉语言)技术将静态图片转化为动态电影级视频。保持主体一致性,同时添加自然运动、物理模拟和无缝场景动态。支持音频生成。即用型REST API,最佳性能,无冷启动,价格实惠。
示例
参数
| 名称 | 类型 | 默认 | 约束 | 说明 |
|---|---|---|---|---|
| image *图片 | image_upload | — | 0–1 items | 第一帧图片的URL。 |
| last_image结束图片 | image_upload | — | 0–1 items | 最后一帧图片的URL。 |
| prompt提示词 | textarea | — | ≤ 5000 chars | 生成的正向提示词。 |
| resolution生成模式 | select | 720P | 720P | 1080P | 4K | |
| duration时长 | select | 5 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | … | 生成媒体的时长(单位:秒,范围:3-15)。 |
| sound音频 | boolean | false | — | 是否为视频生成音频。 |
| multi_shot多镜头开关 | boolean | — | — | 是否生成多镜头视频 如果为真:提示参数无效。 如果为假:shot_type 和 multi_prompt 参数无效。 |
| shot_type镜头类型 | select | intelligence | customize | intelligence | 生成的镜头类型。 |
| multi_prompt多提示词 | array<object> | — | — | 生成时使用的多提示词元素列表。 |
| ↳durationDuration | number | 5 | — | The duration of this shot in seconds. |
| ↳promptPrompt | text | — | — | The prompt for this shot. |
输出字段
| 字段 | 类型 | 说明 |
|---|---|---|
| videos | array<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 | - |
| 音频 | 可选生成同步音效 | 默认禁用 |
| 延迟 | 低延迟,无冷启动 | - |
示例提示词
- 提示词:"阳光穿过树林的宁静森林场景,镜头轻轻移动。"
- 提示词:"夜晚的未来城市景观,霓虹灯和飞行车辆。"
💰 定价
| 类型 | 720P | 1080P | 4K |
|---|---|---|---|
| 无声 | 0.084 | 0.112 | 0.420 |
| 有声 | 0.112 | 0.140 | 0.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 图片转视频
使用文本提示词将单张输入图片生成 1-15 秒视频,支持 480p 和 720p。
Vidu Q3 图片转视频
Vidu Q3 图片转视频将文本提示词转化为高质量视频,具有卓越的视觉保真度和多样的运动。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。
Nami Wan 2.7 I2V Spicy Prime
根据参考图片和提示词生成 2–15 秒视频,支持 720p/1080p 输出与可选音频引导。
MiniMax H3 图片转视频
MiniMax H3 图片转视频可将首帧图片动画化为连贯的 2K 视频,支持自然语言运动指令,并可选用末帧控制,以实现一致的运动、场景连贯性和电影感视频生成。提供开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。
Kling Omni Video O1 图生视频
Kling Omni Video O1 图生视频使用 MVL(多模态视觉语言)技术将静态图像转换为动态电影级视频。在添加自然运动、物理模拟和无缝场景动态的同时,保持主体一致性。提供即用型 REST API,最佳性能,无冷启动,价格实惠。
Kling 3.0 Standard 图像转视频模型
Kling 3.0 Standard 提供高质量的图像转视频生成,具有流畅的运动、电影级视觉效果、准确的提示词遵循和原生音频,适合分享的剪辑。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。
Kling V2.6 图片转视频 API
Kling 2.6 提供顶级的图片转视频生成,具有流畅的运动效果、电影级视觉效果、精准的提示词匹配以及原生音频,适合直接分享的短片。即开即用的 REST 推理 API,性能卓越,无冷启动,价格实惠。
Gemini Omni Flash 图片转视频 API
Gemini Omni Flash Image to Video 可将输入图片动画化为带同步音频的短 AI 视频,在遵循源图片内容的同时添加运动和声音。开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。