inference.veo.img2vid.v1
Schema
Section titled “Schema”{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "unevaluatedProperties": false, "required": [ "type", "config" ], "properties": { "type": { "type": "string", "enum": [ "inference.veo.img2vid.v1" ] }, "config": { "unevaluatedProperties": false, "allOf": [ { "type": "object", "required": [ "prompt" ], "properties": { "image": { "type": "string", "format": "filename", "example": "reference.png", "description": "A reference image to start the video from." }, "prompt": { "type": "string", "minLength": 0, "maxLength": 2500, "examples": [ "puppies in a cloud, 4k" ], "description": "A description of the desired output." }, "generate_audio": { "type": "boolean", "default": false, "description": "Add generated audio to the video." }, "seed": { "type": "integer", "examples": [ 42, 531286735183442 ], "description": "Seed for random number generation." } } }, { "oneOf": [ { "type": "object", "properties": { "resolution": { "type": "string", "enum": [ "1080p" ], "description": "Output video resolution." }, "aspect_ratio": { "type": "string", "default": "16:9", "enum": [ "16:9" ], "description": "Aspect ratio of output." } } }, { "type": "object", "properties": { "resolution": { "type": "string", "default": "720p", "enum": [ "720p" ], "description": "Output video resolution." }, "aspect_ratio": { "type": "string", "enum": [ "16:9", "9:16" ], "description": "Aspect ratio of output." } } } ] } ] } }}