Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WebRTC 入站 RTP 流 (inbound-rtp) 不返回往返时间 (RTT),但需要计算平均意见分数 (MOS)。有什么建议么?
假设非对称延迟并将入站 rtp 的 RTT 与相应出站 rtp 的 RTT 相同是否安全?
入站 RTP 流示例
inbound-rtp 没有,但来自同一报告的候选对有
pc.getReceivers()[1].getStats().then(res => { res.forEach(report=> { if (report.type === 'candidate-pair') { rtp = report.currentRoundTripTime; } }); });