API
← All schemas

FabricInput

Fields

audio_urlurlrequired

URL of the audio track to lip-sync to.

Must be an http(s) URL.
image_urlurlrequired

URL of the source image to animate.

Must be an http(s) URL.
resolutionenumrequired

Output video resolution.

720p480p

JSON Schema

FabricInput.json
{
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "description": "A URL to the JSON Schema for this object.",
      "examples": [
        "https://api.veed.io/schemas/FabricInput.json"
      ],
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "audio_url": {
      "description": "URL of the audio track to lip-sync to.",
      "examples": [
        "https://media.veed.io/in.mp3"
      ],
      "format": "uri",
      "maxLength": 8192,
      "minLength": 1,
      "pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
      "patternDescription": "an http(s) URL",
      "type": "string"
    },
    "image_url": {
      "description": "URL of the source image to animate.",
      "examples": [
        "https://media.veed.io/in.png"
      ],
      "format": "uri",
      "maxLength": 8192,
      "minLength": 1,
      "pattern": "^[Hh][Tt][Tt][Pp][Ss]?://",
      "patternDescription": "an http(s) URL",
      "type": "string"
    },
    "resolution": {
      "description": "Output video resolution.",
      "enum": [
        "720p",
        "480p"
      ],
      "examples": [
        "720p"
      ],
      "type": "string"
    }
  },
  "required": [
    "image_url",
    "audio_url",
    "resolution"
  ],
  "type": "object"
}