Nami Wan 2.2 I2V Spicy A
nami-wan2.2-i2v-spicy-a
WAN 2.2 Spicy 将图片转换为无限高质量的视频,具有流畅动画,优化用于可扩展内容生成。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。
示例
参数
| 名称 | 类型 | 默认 | 约束 | 说明 |
|---|---|---|---|---|
| image *图片 | image_upload | — | ≤ 500 chars | 用于生成输出的图片。 |
| prompt *提示词 | textarea | — | ≤ 5000 chars | 用于生成的正向提示词。 |
| resolution分辨率 | select | 480p | 480p | 720p | 生成媒体的分辨率。 |
| duration时长 | select | 5 | 5 | 8 | 生成媒体的时长(秒)。 |
| seed随机种子 | number | -1 | — | 用于生成的随机种子。-1 表示将使用随机种子。 |
API
通过统一 REST API 调用本模型;在 API Keys 页获取密钥。
cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/nami-wan2.2-i2v-spicy-a" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": {
"image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
"prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
"resolution": "720p",
"duration": 8,
"seed": -1
}
}'
# 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/nami-wan2.2-i2v-spicy-a",
headers=HEADERS,
json={
"input": {
"image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
"prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
"resolution": "720p",
"duration": 8,
"seed": -1
}
},
)
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/nami-wan2.2-i2v-spicy-a", {
method: "POST",
headers: { ...HEADERS, "Content-Type": "application/json" },
body: JSON.stringify({
"input": {
"image": "https://kaito-1328216764.cos.ap-tokyo.myqcloud.com//uploads/images/2026-02-26/cf012094559a.png",
"prompt": "Create a smooth and captivating video animation of the sunset transitioning to twilight over the mountains, with vibrant colors and gentle cloud movements.",
"resolution": "720p",
"duration": 8,
"seed": -1
}
}),
});
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);文档
WAN 2.2 Spicy
将图片转化为高质量视频的终极解决方案
WAN 2.2 Spicy 是一款将图片转化为高质量视频的 AI 模型,提供流畅动画,适合大规模内容生成。该模型支持即用型 REST 推理 API,具有最佳性能,无冷启动,并且价格实惠。
🚀 主要功能
- 无限制视频生成:从图片生成高质量视频,无数量限制。
- 流畅动画:优化的动画效果,确保视频的流畅性。
- 无冷启动:即刻生成,无需等待。
- 可扩展内容生成:适合大规模内容生成需求。
🛠️ 技术规格
| 参数 | 说明 |
|---|---|
| 模型架构 | WAN 2.2 Spicy |
| 输入格式 | 图片(字符串) |
| 输出格式 | 视频 |
| 分辨率 | 默认:480p;选项:480p, 720p |
| 时长 | 默认:5 秒;选项:5, 8 秒 |
| 随机种子 | 默认:-1(随机) |
💰 价格
| 时长 | 分辨率 | 价格 |
|---|---|---|
| 5秒 | 480p | $0.15 |
| 8秒 | 480p | $0.24 |
| 5秒 | 720p | $0.30 |
| 8秒 | 720p | $0.48 |
💡 最佳应用场景
- 电子商务:为产品展示生成引人注目的视频。
- 社交媒体:创建吸引眼球的短视频内容。
- 电影制作:快速生成预览或概念视频。
🔗 相关模型
- WAN 2.6:官方首次发布版本,提供更高性能。
- FLUX 2:适合高质量视频生成的另一选择。
相关模型
Wan 2.2 动画
Wan 2.2 动画是一个统一的角色动画和替换模型,可从驱动视频中复制动作和表情。它将单张角色图片转换为完整的表演,在保持输出稳定、逼真和身份一致的同时复制身体动作和面部表情。可生成最长120秒的720p视频。
Vidu Q3 图片转视频
Vidu Q3 图片转视频将文本提示词转化为高质量视频,具有卓越的视觉保真度和多样的运动。即用型 REST 推理 API,最佳性能,无冷启动,价格实惠。
Pixverse V6 Reference to Video
PixVerse V6 角色/多图参考模式(Fusion),支持输入1-3张参考图(主体、角色或背景),配合文本提示词精准保持角色一致性与叙事连贯性,并自带原生同步音效。提供企业级 REST 推理 API,无冷启动、高并发,完美契合动漫制作、游戏美术及多镜头短片开发。
Pixverse V6 Image to Video
PixVerse V6 图生视频功能(全面集成单图生成与首尾帧衔接),支持将单张或双张图像转化为具备电影级超清画质、逼真物理交互与极致连贯性的动态片段——完美契合高级分镜控制、无缝循环动效及商业营销短片。提供企业级 REST 推理 API,高并发、无冷启动,性能卓越且价格实惠。
Pixverse V5 T2V
PixVerse V5 文本生成视频可在数秒内根据提示词生成流畅自然的5秒视频,支持720p输出(每5秒$0.20)。提供即用型REST推理API,性能最佳,无冷启动,价格实惠。
Pixverse V5 I2V
PixVerse V5 将图片转换为短视频,视频流畅且自然。5秒视频:$0.15(360p/540p),$0.20(720p),$0.40(1080p)。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。
Pixverse V5.6 文本生成视频
PixVerse V5.6 可在几秒钟内将提示词转化为逼真的视频,具有流畅的运动和自然的细节,非常适合故事、广告和社交短片。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。
Pixverse V5.6 图片转视频
PixVerse V5.6 图片转视频可将单张图片转换为具有流畅运动、清晰细节和强主体保真度的电影剪辑——非常适合用于标志动画、角色动作和社交媒体发布。提供即用型 REST 推理 API,性能最佳,无冷启动,价格实惠。