API
← All schemas

VideoBackgroundRemovalFiles

Fields

filesarray of objectrequiredFile

Rendered background-removed file(s): one webm with alpha for vp9; the RGB video and the alpha matte (two files) for h264.

Show 4 nested fields
content_typestringoptional

The mime type of the file.

file_namestringoptional

The name of the file.

file_sizeintegeroptional

The size of the file in bytes.

urlstringrequired

The URL where the file can be downloaded from.

JSON Schema

VideoBackgroundRemovalFiles.json
{
  "additionalProperties": false,
  "properties": {
    "files": {
      "description": "Rendered background-removed file(s): one webm with alpha for vp9; the RGB video and the alpha matte (two files) for h264.",
      "items": {
        "additionalProperties": false,
        "properties": {
          "content_type": {
            "description": "The mime type of the file.",
            "examples": [
              "video/mp4"
            ],
            "type": "string"
          },
          "file_name": {
            "description": "The name of the file.",
            "type": "string"
          },
          "file_size": {
            "description": "The size of the file in bytes.",
            "format": "int64",
            "type": "integer"
          },
          "url": {
            "description": "The URL where the file can be downloaded from.",
            "type": "string"
          }
        },
        "required": [
          "url"
        ],
        "type": "object"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "required": [
    "files"
  ],
  "type": "object"
}