Properties
alt
string
Optional
Alt text description of the video, for accessibility.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesaspectRatio
ref
app.bsky.embed.defs#aspectRatio
Optional
No description provided.
captions
array
of ref#caption
Optional
No description provided.
maxLength: 20 bytesvideo
blob
Required
The mp4 video file. May be up to 100mb, formerly limited to 50mb.
maxSize: 100.0 MBView raw schema
{
"type": "object",
"required": [
"video"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 10000,
"description": "Alt text description of the video, for accessibility.",
"maxGraphemes": 1000
},
"video": {
"type": "blob",
"accept": [
"video/mp4"
],
"maxSize": 100000000,
"description": "The mp4 video file. May be up to 100mb, formerly limited to 50mb."
},
"captions": {
"type": "array",
"items": {
"ref": "#caption",
"type": "ref"
},
"maxLength": 20
},
"aspectRatio": {
"ref": "app.bsky.embed.defs#aspectRatio",
"type": "ref"
}
}
}