3

WebRTC 入站 RTP 流 (inbound-rtp) 不返回往返时间 (RTT),但需要计算平均意见分数 (MOS)。有什么建议么?

假设非对称延迟并将入站 rtp 的 RTT 与相应出站 rtp 的 RTT 相同是否安全?

入站 RTP 流示例

4

1 回答 1

1

inbound-rtp 没有,但来自同一报告的候选对有

    pc.getReceivers()[1].getStats().then(res => {
      res.forEach(report=> {
        if (report.type === 'candidate-pair') {
          rtp = report.currentRoundTripTime;
        }
    });
});    
于 2019-12-11T08:51:16.613 回答