FabricVideo
Fields
Generated lip-synced video.
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
FabricVideo.json
{
"additionalProperties": false,
"properties": {
"video": {
"description": "Generated lip-synced video.",
"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"
}
},
"required": [
"video"
],
"type": "object"
}