我想只在对等体之间进行音频流通信,我改变了kurento.utils.js的部分,只通过getusermedia获取音频流,但是它不起作用
我使用了这个例子node-hello-world示例
WebRtcPeer.prototype.userMediaConstraints = {
audio : true,
video : {
mandatory : {
maxWidth : 640,
maxFrameRate : 15,
minFrameRate : 15
}
}
};
Run Code Online (Sandbox Code Playgroud)
至
WebRtcPeer.prototype.userMediaConstraints = {
audio : true,
video : false
};
Run Code Online (Sandbox Code Playgroud)
是否可以仅使用kurento服务音频流?