Skip to content

inference.seedance.lite.img2vid.v1

Schema

{
"type": "object",
"required": [
"type",
"config"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"inference.seedance.lite.img2vid.v1"
]
},
"config": {
"type": "object",
"required": [
"prompt"
],
"additionalProperties": false,
"properties": {
"first_frame": {
"type": "string",
"format": "filename",
"example": "first_frame.png",
"description": "Set the starting frame for the video."
},
"last_frame": {
"type": "string",
"format": "filename",
"example": "last_frame.png",
"description": "Set the ending frame for the video."
},
"prompt": {
"type": "string",
"minLength": 3,
"maxLength": 4096,
"default": "a dancing cat under moonlight",
"description": "Description of desired output."
},
"resolution": {
"type": "string",
"enum": [
"480p",
"720p",
"1080p"
],
"default": "1080p",
"description": "This controls the general quality level of the output. Exact width and height will vary depending on the selected aspect ratio. For a video with approximately 480, 720, or 1080 pixel height use a 16:9 aspect ratio."
},
"duration": {
"type": "integer",
"enum": [
5,
10
],
"default": 5,
"description": "Duration of the video in seconds."
},
"watermark": {
"type": "boolean",
"default": false,
"description": "When set to true a watermark is added indicating the output is AI generated."
},
"camera_fixed": {
"type": "boolean",
"default": false,
"description": "When set to true the model is encouraged to keep the camera from moving. This is not guaranteed to work."
},
"seed": {
"type": "integer",
"description": "A randomness initializer for image reproducability."
}
}
}
}
}