我在浏览器和GeckoFX之间使用WebRTC。但是,当我调用c#时,RTCPeerConnection.setRemoteDescription()应用程序中会出现一些错误。
Could not process offer SDP: cause = SDP_PARSE_FAILED | SDP Parsing Error:
Warning: Group attribute type unsupported (BUNDLE). | SDP Parsing Error:
Warning: Unrecognized attribute (maid-semantic) | SDP Parsing Error:
Warning: Transport protocol type unsupported (UDP/TLS/RTP/SAVPF). | SDP
Parsing Error: Invalid port format(9) specified for transport protocol (Unsupported), parse failed.为什么会发生这种情况?
发布于 2016-03-09 09:39:45
为什么会发生这种情况?
调用pc.setRemoteDescription(sessionDescription, successCallback, errorCallback);时,堆栈将从远程解析sessionDescription (SDP)。这
并且有一个格式,如
v=0
o=bob 2808844564 2808844564 IN IP4 biloxi.example.com
s=
c=IN IP4 biloxi.example.com
t=0 0
m=audio 20000 RTP/AVP 0 # m=audio 1 UDP/TLS/RTP/SAVPF 111 103 104 0 8 126
b=AS:200
a=rtpmap:0 PCMU/8000
m=video 30000 RTP/AVP 32
b=AS:1000
a=rtpmap:32 MPV/90000在您的示例中,远程描述包含某些属性(bundle、maid-semantic.)客户不支持。您可能需要升级正在使用的浏览器。
https://stackoverflow.com/questions/35870745
复制相似问题