Young87

SmartCat's Blog

So happy to code my life!

游戏开发交流QQ群号60398951

当前位置:首页 >跨站数据测试

flutter webrtc 问题

1.报错:

Unable to RTCPeerConnection::setRemoteDescription: Failed to set remote answer sdp: Called with SDP without SDES crypto.

解决方案:DtlsSrtpKeyAgreement 的值改为true。

final Map<String, dynamic> loopback_constraints = {
  "mandatory": {},
  "optional": [
    {"DtlsSrtpKeyAgreement": true},
  ],
};

参考文档:https://stackoverflow.com/questions/24062340/failed-to-set-remote-offer-sdp-called-with-sdp-without-sdes-crypto

 

 

除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog

上一篇: 华为鸿蒙OS分析、看法及它的未来

下一篇: 图像识别

精华推荐