Kling 3.0 Standard 图像转视频模型
kwaivgi/kling-v3.0/image-to-video
Kling 3.0 Standard 提供高质量的图像转视频生成,具有流畅的运动、电影级视觉效果、准确的提示词遵循和原生音频,适合分享的剪辑。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。
示例
参数
| 名称 | 类型 | 默认 | 约束 | 说明 |
|---|---|---|---|---|
| image *图片 | image_upload | — | 0–1 items | 支持的图片格式:.jpg/.jpeg/.png。图片文件大小不应超过 10MB,图片的宽度和高度不应小于 300px,图片的宽高比应在 1:2.5 到 2.5:1 之间。 |
| end_image结束图片 | image_upload | — | 0–1 items | 结束图片的 URL。结束图片不支持多镜头。 |
| prompt *提示词 | textarea | — | ≤ 5000 chars | 用于视频生成的文本提示词。必须提供提示词或多提示词,但不能同时提供。 |
| negative_prompt反向提示词 | textarea | — | ≤ 5000 chars | 用于生成的反向提示词。 |
| duration时长 | select | 5 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | … | 生成媒体的时长(以秒为单位)。 |
| resolution生成模式 | select | 720P | 720P | 1080P | 4K | |
| cfg_scaleCFG 系数 | slider | 0.5 | 0 ~ 1 · step 0.01 | 视频生成的灵活性;值越高,模型的灵活性越低,与用户提示词的相关性越强。 |
| sound音频 | boolean | false | — | 在生成视频时是否同时生成音频。 |
| multi_shot多镜头开关 | boolean | — | — | 是否生成多镜头视频 如果为真:提示参数无效。 如果为假:shot_type 和 multi_prompt 参数无效。 |
| shot_type镜头类型 | select | — | 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-v3.0/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-03-06/267946a5eac7.png"
],
"end_image": [
"https://assets-public.namifusion.com/uploads/images/2026-03-06/c42038ed310f.png"
],
"prompt": "A scenic transformation from a serene sunrise to a bustling cityscape at dusk, showcasing dynamic lighting and vibrant colors.",
"negative_prompt": "Avoid dull colors and static scenes.",
"duration": 10,
"resolution": "720P",
"cfg_scale": 0.5,
"sound": true,
"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-v3.0/image-to-video",
headers=HEADERS,
json={
"input": {
"image": [
"https://assets-public.namifusion.com/uploads/images/2026-03-06/267946a5eac7.png"
],
"end_image": [
"https://assets-public.namifusion.com/uploads/images/2026-03-06/c42038ed310f.png"
],
"prompt": "A scenic transformation from a serene sunrise to a bustling cityscape at dusk, showcasing dynamic lighting and vibrant colors.",
"negative_prompt": "Avoid dull colors and static scenes.",
"duration": 10,
"resolution": "720P",
"cfg_scale": 0.5,
"sound": True,
"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-v3.0/image-to-video", {
method: "POST",
headers: { ...HEADERS, "Content-Type": "application/json" },
body: JSON.stringify({
"input": {
"image": [
"https://assets-public.namifusion.com/uploads/images/2026-03-06/267946a5eac7.png"
],
"end_image": [
"https://assets-public.namifusion.com/uploads/images/2026-03-06/c42038ed310f.png"
],
"prompt": "A scenic transformation from a serene sunrise to a bustling cityscape at dusk, showcasing dynamic lighting and vibrant colors.",
"negative_prompt": "Avoid dull colors and static scenes.",
"duration": 10,
"resolution": "720P",
"cfg_scale": 0.5,
"sound": true,
"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 3.0
高质量图像到视频生成,运动流畅,视觉效果电影级
Kling 3.0 标准版是一款先进的图像到视频模型,可以将静态图像转换为动态视频,具有流畅的运动和电影级的视觉效果。它提供准确的提示词遵循和原生音频集成,非常适合创建即用型的共享视频片段。无冷启动且价格实惠,该模型确保高性能和可访问性。
🚀 主要功能
- 运动流畅:生成具有流畅运动过渡的视频,增强视觉体验。
- 电影级视觉效果:提供具有电影感的高质量视频输出。
- 提示词遵循:准确遵循用户提示词,实现精确的视频生成。
- 原生音频:集成同步音效,提供完整的视听体验。
- 时长灵活:支持3到15秒的视频长度,满足各种需求。
🛠️ 技术规格
| 规格 | 详细信息 |
|---|---|
| 模型架构 | 图像到视频 |
| 输入格式 | .jpg/.jpeg/.png(最大10MB,最小300px尺寸,宽高比1:2.5到2.5:1) |
| 输出格式 | 视频,带可选音频 |
| 分辨率 | 原生1080P |
| 时长 | 3到15秒 |
| 帧率 | 运动流畅 |
| 延迟 | 无冷启动 |
💰 定价
| 分辨率 | 属性 | 每秒单价 (USD) |
|---|---|---|
| 720P | 无声 | 0.0840 |
| 720P | 有声 | 0.1260 |
| 1080P | 无声 | 0.1120 |
| 1080P | 有声 | 0.1680 |
| 4K | 无声 | 0.1680 |
| 4K | 有声 | 0.2800 |
💡 最佳使用场景
- 产品动画:将产品图片转化为动态宣传视频。
- 社交媒体内容:为社交媒体平台创建引人入胜的短视频。
- 场景过渡:使用起始和结束帧实现无缝的电影级过渡。
- 角色动画:为故事讲述动画化肖像或插图。
🔗 相关模型
- Kling V3.0 Pro 图像到视频:提供Pro级功能的最高质量。
- Kling V3.0 标准版文本到视频:以标准价格从文本提示生成视频。
- Kling Video O3 Pro 图像到视频:具有最新O3代的优质质量。
相关模型
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 O3 图片转视频
Kling Omni Video O3 图片转视频利用MVL(多模态视觉语言)技术将静态图片转化为动态电影级视频。保持主体一致性,同时添加自然运动、物理模拟和无缝场景动态。支持音频生成。即用型REST API,最佳性能,无冷启动,价格实惠。
Kling Omni Video O1 图生视频
Kling Omni Video O1 图生视频使用 MVL(多模态视觉语言)技术将静态图像转换为动态电影级视频。在添加自然运动、物理模拟和无缝场景动态的同时,保持主体一致性。提供即用型 REST API,最佳性能,无冷启动,价格实惠。
Kling V2.6 图片转视频 API
Kling 2.6 提供顶级的图片转视频生成,具有流畅的运动效果、电影级视觉效果、精准的提示词匹配以及原生音频,适合直接分享的短片。即开即用的 REST 推理 API,性能卓越,无冷启动,价格实惠。
Gemini Omni Flash 图片转视频 API
Gemini Omni Flash Image to Video 可将输入图片动画化为带同步音频的短 AI 视频,在遵循源图片内容的同时添加运动和声音。开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。