All models
Videov1.0.0
Wan 2.6 Image-to-Video
Animate an image with Wan 2.6, with native audio generation
5 inputsVIDEO
Demo coming soon
Demo coming soon
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins wan-v2-6-i2v and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("wan-v2-6-i2v", {
prompt: { value: "example" },
image: { ref: "https://..." },
duration: { value: 5 },
resolution: { value: "720p" },
audio: { value: true },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node wan-v2-6-i2v \
-i prompt="example" \
-i image=@https://... \
-i duration=5 \
-i resolution="720p" \
-i audio=true{
"name": "runs_node",
"arguments": {
"node": "wan-v2-6-i2v",
"inputs": {
"prompt": {
"value": "example"
},
"image": {
"ref": "https://..."
},
"duration": {
"value": 5
},
"resolution": {
"value": "720p"
},
"audio": {
"value": true
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"wan-v2-6-i2v","inputs":{"prompt":{"value":"example"},"image":{"ref":"https://..."},"duration":{"value":5},"resolution":{"value":"720p"},"audio":{"value":true}}}'Schema
Inputs
| prompt* | TEXT | ||
| image* | IMAGE | ||
| duration | INT | Duration (s) | 5 |
| resolution | TEXT | 720p · 1080p | 720p |
| audio | BOOLEAN | Generate audio | true |
Outputs
| video | VIDEO |