Video
Context: object.virtual.artwork.video
This document describes the data structure for a digital video, which is a type of digital artwork. A digital video is a sequence of images or frames displayed over time to create the illusion of motion. Digital videos are recorded or created electronically and stored as a set of numerical values that represent the color and brightness of each pixel in each frame. Digital videos can be captured using cameras, generated using computer animation, or created through various other techniques.
Data structure
| Field | Type | Description | Mandatory |
|---|---|---|---|
| size | size | Dimensions of the video | Yes |
| compression | string | Compression codec (e.g., MP4) | Yes |
| format | string | Container format of the video (e.g., MOV) | Yes |
| length | float | Length in seconds | Yes |
Example
{
"video": {
"size": {
"width": 1920,
"height": 1080,
"unit": "pixels"
},
"compression": "MP4",
"format": "MOV",
"length": 92.3
}
}