Interface AlternativeVideo

Describes an alternative re-encoded quality of a video file.

interface AlternativeVideo {
    @type: "alternativeVideo";
    codec: string;
    height: number;
    hls_file: File;
    video: File;
    width: number;
}

Properties

@type: "alternativeVideo"
codec: string

Codec used for video file encoding, for example, "h264", "h265", or "av1".

height: number

Video height.

hls_file: File

HLS file describing the video.

video: File

File containing the video.

width: number

Video width.