VideoMetadata interface

Metadata for a video asset.

Signature:

export interface VideoMetadata 

Properties

PropertyModifiersTypeDescription
DurationreadonlynumberThe duration of the video in seconds.
FilesizereadonlynumberThe file size of the video in bytes.
HeightreadonlynumberThe frame height of the video.
WidthreadonlynumberThe frame width of the video.

VideoMetadata.Duration property

The duration of the video in seconds.

Signature:

readonly Duration: number;

VideoMetadata.Filesize property

The file size of the video in bytes.

Signature:

readonly Filesize: number;

VideoMetadata.Height property

The frame height of the video.

Signature:

readonly Height: number;

VideoMetadata.Width property

The frame width of the video.

Signature:

readonly Width: number;