我正在研究 webRTC。我收到了视频通话,现在正在测试数据通道,但在创建时出现无效状态错误。
var pc_config = {
"iceServers" : [ {
"url" : "stun:stun.l.google.com:19302"
} ]
};
this.peerConn = new RTCPeerConnection(pc_config,{optional: [{RtpDataChannels: true}]});
this.channel=this.peerConn.createDataChannel("DataChannel",{reliable: false});
创建数据通道的最佳状态是什么?流量有多重要?