Skip to content

inference.vidu-q3-pro.img2vid.v1

View markdown

The inference.vidu-q3-pro.img2vid.v1 job animates an input image into a video guided by a text prompt using Vidu Q3 Pro.

{
"type": "inference.vidu-q3-pro.img2vid.v1",
"config": {
"prompt": "a red fox trotting through a snowy forest at golden hour",
"image": "reference.png"
}
}

This job type is also available under its partner alias inference.partner.vidu-q3-pro.img2vid.v1.

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"type",
"config"
],
"properties": {
"type": {
"type": "string"
},
"config": {
"type": "object",
"properties": {
"prompt": {
"type": "string"
},
"image": {
"type": "string",
"format": "filename",
"example": "reference.png"
}
}
}
}
}