MEDIA_SERVER_PREFERRED: A recommended choice is done for you, based on the media server that is currently in use. This is the default setting, and is equivalent to these values: - For *mediasoup*, `NONE` is selected. - For *Kurento*, `VP8` is selected.
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
/**
|
|
* See [[SessionProperties.forcedVideoCodec]]
|
|
*/
|
|
export enum VideoCodec {
|
|
MEDIA_SERVER_PREFERRED = 'MEDIA_SERVER_PREFERRED',
|
|
NONE = 'NONE',
|
|
VP8 = 'VP8',
|
|
VP9 = 'VP9',
|
|
H264 = 'H264',
|
|
}
|