Function
getEncodableVideoCodecs
ts
getEncodableVideoCodecs(
checkedCodecs: VideoCodec[] = VIDEO_CODECS as unknown as VideoCodec[],
options?: {
width?: number;
height?: number;
quality?: Quality;
/** @deprecated Use `quality` instead. */
bitrate?: number | Quality;
},
): Promise<VideoCodec[]>;Returns the list of all video codecs that can be encoded by the browser.
See VideoCodec, VIDEO_CODECS, and Quality.