wan_pro_image
Animate images into videos by providing a motion description prompt, image URL, and custom settings like duration and aspect ratio. Generates professional-quality video outputs through FAL Image/Video MCP Server.
Instructions
Wan Pro I2V - Professional image animation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aspect_ratio | No | 16:9 | |
cfg_scale | No | How closely to follow the prompt | |
duration | No | Video duration in seconds | 5 |
image_url | Yes | URL of the input image | |
negative_prompt | No | What to avoid in the video | |
prompt | Yes | Motion description prompt |
Input Schema (JSON Schema)
{
"properties": {
"aspect_ratio": {
"default": "16:9",
"enum": [
"16:9",
"9:16",
"1:1"
],
"type": "string"
},
"cfg_scale": {
"default": 0.5,
"description": "How closely to follow the prompt",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"duration": {
"default": "5",
"description": "Video duration in seconds",
"enum": [
"5",
"10"
],
"type": "string"
},
"image_url": {
"description": "URL of the input image",
"type": "string"
},
"negative_prompt": {
"description": "What to avoid in the video",
"type": "string"
},
"prompt": {
"description": "Motion description prompt",
"type": "string"
}
},
"required": [
"image_url",
"prompt"
],
"type": "object"
}