inference.seedance.pro.txt2vid.v1
Schema
{ "type": "object", "required": [ "type", "config" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "inference.seedance.pro.txt2vid.v1" ] }, "config": { "type": "object", "required": [ "prompt" ], "additionalProperties": false, "properties": { "prompt": { "type": "string", "minLength": 3, "maxLength": 4096, "default": "a flying dragon over mountains", "description": "Description of desired output." }, "resolution": { "type": "string", "enum": [ "480p", "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 or 1080 pixel height use a 16:9 aspect ratio." }, "aspect_ratio": { "type": "string", "enum": [ "16:9", "4:3", "1:1", "3:4", "9:16", "21:9" ], "default": "16:9", "description": "Controls the approximate aspect ratio of the resulting video." }, "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." } } } }}