【发布时间】:2015-05-13 02:26:16
【问题描述】:
我只想在对等点之间进行音频流通信,我将 kurento.utils.js 的部分更改为通过 getusermedia 仅获取音频流
但它不工作
我用这个例子node-hello-world例子
WebRtcPeer.prototype.userMediaConstraints = {
audio : true,
video : {
mandatory : {
maxWidth : 640,
maxFrameRate : 15,
minFrameRate : 15
}
}
};
到
WebRtcPeer.prototype.userMediaConstraints = {
audio : true,
video : false
};
是否可以仅对音频流使用 kurento 服务?
【问题讨论】: