generate_video
Create videos from images using AI models like SVD, AnimateDiff, or Kling. Specify image URL, model, and duration to generate video content through queued processing.
Instructions
Generate videos from images (uses queue API for long processing)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Video duration in seconds | |
image_url | Yes | Starting image URL (for image-to-video) | |
model | No | Video generation model | svd |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"default": 4,
"description": "Video duration in seconds",
"maximum": 10,
"minimum": 2,
"type": "integer"
},
"image_url": {
"description": "Starting image URL (for image-to-video)",
"type": "string"
},
"model": {
"default": "svd",
"description": "Video generation model",
"enum": [
"svd",
"animatediff",
"kling"
],
"type": "string"
}
},
"required": [
"image_url"
],
"type": "object"
}