generate_image_to_video
Transform static images into dynamic videos by describing desired motion and transformations. Customize video duration, style, and creative freedom using Kling AI models.
Instructions
Generate a video from an image using Kling AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cfg_scale | No | Creative freedom scale 0-1 (default: 0.5) | |
duration | No | Video duration in seconds (default: 5) | |
image_tail_url | No | URL of the ending image (optional) | |
image_url | Yes | URL of the starting image | |
mode | No | Video generation mode (default: standard) | |
model_name | No | Model version to use (default: kling-v2-master) | |
negative_prompt | No | Text describing what to avoid in the video (optional) | |
prompt | Yes | Text prompt describing the motion and transformation |
Input Schema (JSON Schema)
{
"properties": {
"cfg_scale": {
"description": "Creative freedom scale 0-1 (default: 0.5)",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"duration": {
"description": "Video duration in seconds (default: 5)",
"enum": [
"5",
"10"
],
"type": "string"
},
"image_tail_url": {
"description": "URL of the ending image (optional)",
"type": "string"
},
"image_url": {
"description": "URL of the starting image",
"type": "string"
},
"mode": {
"description": "Video generation mode (default: standard)",
"enum": [
"standard",
"professional"
],
"type": "string"
},
"model_name": {
"description": "Model version to use (default: kling-v2-master)",
"enum": [
"kling-v1",
"kling-v1.5",
"kling-v1.6",
"kling-v2-master"
],
"type": "string"
},
"negative_prompt": {
"description": "Text describing what to avoid in the video (optional)",
"type": "string"
},
"prompt": {
"description": "Text prompt describing the motion and transformation",
"type": "string"
}
},
"required": [
"image_url",
"prompt"
],
"type": "object"
}