media-tracks
Version:
Polyfill audio and video tracks with renditions.
17 lines (16 loc) • 392 B
TypeScript
/**
* - The consumer should use the `selected` setter to select 1 or multiple
* renditions that the engine is allowed to play.
*/
export declare class VideoRendition {
#private;
src?: string;
id?: string;
width?: number;
height?: number;
bitrate?: number;
frameRate?: number;
codec?: string;
get selected(): boolean;
set selected(val: boolean);
}