我正在尝试在我的应用程序中设置会议模块。所以我在两个用户之间找到并创建了一个流。
问题在于其他人无法加入。
我一直试图阅读他们的文档,但我似乎无法找到如何实现它。
这是我的代码:
// Compatibility shim
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
navigator.getUserMedia({audio: true, video: true}, function (stream) {
// Set your video displays
$('#my-video').prop('src', URL.createObjectURL(stream));
window.localStream = stream;
}, function () {
$('#step1-error').show();
});
peerFactory.on('error', function (err) {
alert(err.message);
});
peerFactory.on('connection', function (id) {
alert('new logon' + id);
});
// Receiving a call
peerFactory.on('call', function (call) {
// Answer the call automatically (instead of prompting user) for demo purposes
var r = confirm('Ny kald fra ');
if (r) {
call.answer(window.localStream);
$scope.currentCall = true;
$scope.$apply();
streamCall(call);
}
else
{
call.close();
window.existingCall.close();
}
});
$scope.makeCall = function (callId) {
var call = peerFactory.call(callId, window.localStream);
$scope.currentCall = true;
streamCall(call);
};
$scope.hangUp = function()
{
$scope.currentCall = false;
window.existingCall.close();
};
function streamCall(call) {
// Hang up on an existing call if present
if (window.existingCall) {
window.existingCall.close();
}
// Wait for stream on the call, then set peerFactory video display
call.on('stream', function (stream) {
$('#their-video').prop('src', URL.createObjectURL(stream));
});
// UI stuff
window.existingCall = call;
$('#their-id').text(call.peerFactory);
call.on('error', function () {
var i = 0;
});
}
任何人都可以向我推进正确的方向吗?
答案 0 :(得分:3)
根据您的说明和您的代码,我会说您尝试在同一个电话中连接两个以上的用户。
WebRTC无法做到这一点,它只允许您为每个对等连接连接两端。他们可以复制多方会议行为的方式是为每对参与者创建一个不同的呼叫。
为了做到这一点,每个参与者需要不同的video
个元素和一个用户列表,这样您就可以知道您要加入的房间需要呼叫的每个参与者的ID。
PeerJS won't give you a mechanism to know the other ID's in the room/call所以你需要找到一种让新参与者知道的机制。
我在AngularJS / Socket.io WebRTC通信工具的github中有一个example,随时检查它,看看如何使用WebRTC p2p连接重现多方会议呼叫。
编辑:假设您的用户拥有某种ID并且您的程序行为方式与makeCall('Alice')
类似,假设当Carol呼叫Alice并且您希望Carol与两者加入呼叫时,Alice正在与Bob通话,你可以在没有新的信号层的情况下实现这个: