luma_ray2
Generate AI-driven videos from text prompts using specified duration and aspect ratio, powered by the FAL Image/Video MCP Server. Download results directly to your local machine.
Instructions
Luma Ray 2 - Latest Luma Dream Machine
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aspect_ratio | No | 16:9 | |
duration | No | ||
prompt | Yes | Text prompt for video generation |
Input Schema (JSON Schema)
{
"properties": {
"aspect_ratio": {
"default": "16:9",
"enum": [
"16:9",
"9:16",
"1:1",
"4:3",
"3:4"
],
"type": "string"
},
"duration": {
"default": 5,
"maximum": 30,
"minimum": 1,
"type": "number"
},
"prompt": {
"description": "Text prompt for video generation",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}