LastmileProbeConfig

Configuration for last mile network probe.

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 to perform network probing:
  • true: Probe the uplink network.
  • false: Do not probe the uplink network.
probeDownlink
Whether to probe the downlink network:
  • true: Probe the downlink network.
  • false: Do not probe the downlink network.
expectedUplinkBitrate
The expected maximum uplink bitrate in bps, ranging from [100000, 5000000]. It is recommended to set this value based on the bitrate value in setVideoEncoderConfiguration.
expectedDownlinkBitrate
The expected maximum downlink bitrate in bps, ranging from [100000, 5000000].