VideoBackgroundRemovalFiles
Fields
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_typestringoptionalThe mime type of the file.
file_namestringoptionalThe name of the file.
file_sizeintegeroptionalThe size of the file in bytes.
urlstringrequiredThe 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"
}