LastmileProbeConfig
Last mile network probe configuration.
export class LastmileProbeConfig {
probeUplink?: boolean;
probeDownlink?: boolean;
expectedUplinkBitrate?: number;
expectedDownlinkBitrate?: number;
}
Properties
- probeUplink
- Whether to probe the uplink network. Some users, such as audience members in a live broadcast channel, do not need network probing:
- true: Probe uplink network.
- false: Do not probe uplink network.
- probeDownlink
- Whether to probe the downlink network:
- true: Probe downlink network.
- false: Do not probe downlink network.
- expectedUplinkBitrate
- Expected maximum sending bitrate in bps, ranging from [100000,5000000]. It is recommended to refer to the bitrate value in setVideoEncoderConfiguration when setting this parameter.
- expectedDownlinkBitrate
- Expected maximum receiving bitrate in bps, ranging from [100000,5000000].