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
The Ultimate Solution for Converting Images to High-Quality Videos
WAN 2.2 Spicy is an AI model designed to convert images into high-quality videos with smooth animations, optimized for scalable content generation. It offers a ready-to-use REST inference API, ensuring the best performance with no cold starts and affordable pricing.
🚀 Key Features
- Unlimited Video Generation: Create high-quality videos from images without any limits.
- Smooth Animations: Optimized animations ensure seamless video flow.
- No Cold Start: Instant generation with no waiting time.
- Scalable Content Generation: Ideal for large-scale content production needs.
🛠️ Technical Specifications
| Parameter | Description |
|---|---|
| Model Architecture | WAN 2.2 Spicy |
| Input Format | Image (string) |
| Output Format | Video |
| Resolution | Default: 480p; Options: 480p, 720p |
| Duration | Default: 5 seconds; Options: 5, 8 seconds |
| Seed | Default: -1 (random) |
💰 Pricing
| Duration | Resolution | Cost |
|---|---|---|
| 5 seconds | 480p | $0.15 |
| 8 seconds | 480p | $0.24 |
| 5 seconds | 720p | $0.30 |
| 8 seconds | 720p | $0.48 |
💡 Best Use Cases
- E-commerce: Generate engaging videos for product showcases.
- Social Media: Create eye-catching short video content.
- Film Production: Quickly generate previews or concept videos.
🔗 Related Models
- WAN 2.6: Official first launch version offering higher performance.
- FLUX 2: Another option for high-quality video generation.
関連モデル
Wan 2.2 アニメート
Wan 2.2 アニメートは、ドライビング動画から動きと表情を再現する統合キャラクターアニメーション&置換モデルです。1枚のキャラクター画像をフルパフォーマンスに変換し、出力を安定、リアル、アイデンティティ一貫性を保ちながら、体の動きと顔の表情をコピーします。最大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 Image-to-Video(単一画像生成と首尾フレーム生成を全面統合)は、1枚または2枚の画像から、映画並みの超高画質、リアルな物理インタラクション、そして極めて高い一貫性を備えた動的クリップを生成します。高度な絵コンテ制御、シネマティックループ、商用プロモーションに最適です。エンタープライズ向け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 画像から動画へは、1枚の画像を滑らかな動き、鮮明なディテール、強い主体の忠実性を備えた映画のようなクリップに変換します。ロゴアニメーション、キャラクターの動き、SNS投稿に最適です。すぐに使えるREST推論API、最高のパフォーマンス、コールドスタートなし、手頃な価格。