Skip to main content

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

FieldTypeDescriptionMandatory
sizesizeDimensions of the videoYes
compressionstringCompression codec (e.g., MP4)Yes
formatstringContainer format of the video (e.g., MOV)Yes
lengthfloatLength in secondsYes

Example

{
"video": {
"size": {
"width": 1920,
"height": 1080,
"unit": "pixels"
},
"compression": "MP4",
"format": "MOV",
"length": 92.3
}
}