@stencila/schema
Version:
Stencila schema and other specifications
17 lines (13 loc) • 458 B
Markdown
# VideoObject
The `VideoObject` type allows you to provide details such as caption and transcript, and the details which are included in [`MediaObject`](/MediaObject) which `VideoObject` extends.
## Examples
```json
{
"type": "VideoObject",
"caption": "Example Video File",
"contentSize": "45",
"contentUrl": "http://www.example.com/file.mp4",
"encodingFormat": "video/mpeg",
"transcript": "This is the transcript for the video file..."
}
```