Skip to content

inference.veo.fast.img2vid.v1

{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"inference.veo.img2vid.v1",
"inference.veo.fast.img2vid.v1"
]
},
"config": {
"type": "object",
"additionalProperties": false,
"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."
},
"resolution": {
"type": "string",
"default": "720p",
"enum": [
"720p",
"1080p"
],
"description": "Output video resolution."
},
"aspect_ratio": {
"type": "string",
"default": "16:9",
"enum": [
"16:9",
"9:16"
],
"description": "Aspect ratio of output."
},
"seed": {
"type": "integer",
"examples": [
42,
531286735183442
],
"description": "Seed for random number generation."
}
}
}
}
}