runway_generateVideo
Generate videos from images and text prompts with customizable aspect ratios and durations. Create 5-10 second videos using your images as a starting point for dynamic visual content.
Instructions
Generate a video from an image and a text prompt. Accepted ratios are 1280:720, 720:1280, 1104:832, 832:1104, 960:960, 1584:672. Use 1280:720 by default. For duration, there are only either 5 or 10 seconds. Use 5 seconds by default. If the user asks to generate a video, always first use generateImage to generate an image first, then use the image to generate a video.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| duration | Yes | ||
| promptImage | Yes | ||
| promptText | No | ||
| ratio | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "duration": {
      "type": "number"
    },
    "promptImage": {
      "type": "string"
    },
    "promptText": {
      "type": "string"
    },
    "ratio": {
      "type": "string"
    }
  },
  "required": [
    "promptImage",
    "ratio",
    "duration"
  ],
  "type": "object"
}