LastmileProbeConfig
Last mile 网络探测配置。
Dart
class LastmileProbeConfig {
const LastmileProbeConfig(
{this.probeUplink,
this.probeDownlink,
this.expectedUplinkBitrate,
this.expectedDownlinkBitrate});
(name: 'probeUplink')
final bool? probeUplink;
(name: 'probeDownlink')
final bool? probeDownlink;
(name: 'expectedUplinkBitrate')
final int? expectedUplinkBitrate;
(name: 'expectedDownlinkBitrate')
final int? expectedDownlinkBitrate;
factory LastmileProbeConfig.fromJson(Map<String, dynamic> json) =>
_$LastmileProbeConfigFromJson(json);
Map<String, dynamic> toJson() => _$LastmileProbeConfigToJson(this);
}
probeUplink
是否探测上行网络。有些用户,如直播频道中的普通观众,不需要进行网络探测:
true
: 探测上行网络。false
: 不探测上行网络。
probeDownlink
是否探测下行网络:
true
: 探测下行网络。false
: 不探测下行网络。
expectedUplinkBitrate
用户期望的最高发送码率,单位为 bps,范围为 [100000,5000000]。建议参考 setVideoEncoderConfiguration 中的码率值设置该参数的值。
expectedDownlinkBitrate
用户期望的最高接收码率,单位为 bps,范围为 [100000,5000000]。