我正在使用 peer.js 创建一个 webapp。这是一个应用程序,您可以通过网络摄像头看到彼此,只需通过 peer.js 的服务器提交对方的 ID。
它工作得很好,但我希望能够将变量发送给其他人。我想要这个的原因是因为我想创建一个按钮,只要按下它,其他人就会听到声音。
喜欢:
$('.button').click(function()
{
var clicked = true;
//send var clicked to the other person so I can use an if statement there
}
我有2个问题。我不知道如何通过对等服务器将此变量发送给其他人,它是由 jquery 完成的,所以我不确定是否可以将该变量用作 javascript 代码的全局变量。
<script>
$( document ).ready(function() {
$('.controls').hide();
$('.bovenlijst').hide();
$('.fotomaken').hide();
});
// Compatibility shim
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
// PeerJS object
var peer = new Peer({ key: 'lwjd5qra8257b9', debug: 3, config: {'iceServers': [
{ url: 'stun:stun.l.google.com:19302' } // Pass in optional STUN and TURN server for maximum network compatibility
]}});
peer.on('open', function(){
$('#my-id').text(peer.id);
console.log(peer.id);
});
// Receiving a call
peer.on('call', function(call){
// Answer the call automatically (instead of prompting user) for demo purposes
call.answer(window.localStream);
step3(call);
});
peer.on('error', function(err){
alert(err.message);
// Return to step 2 if error occurs
step2();
});
// Click handlers setup
$(function(){
$('#make-call').click(function(){
// Initiate a call!
var call = peer.call($('#callto-id').val(), window.localStream);
$('#step2').hide();
$('.controls').show();
$('.bovenlijst').show();
$('.fotomaken').show();
step3(call);
});
$('#end-call').click(function(){
window.existingCall.close();
step2();
});
// Retry if getUserMedia fails
$('#step1-retry').click(function(){
$('#step1-error').hide();
step1();
});
// Get things started
step1();
});
function step1 () {
// Get audio/video stream
navigator.getUserMedia({audio: true, video: true}, function(stream){
// Set your video displays
$('#my-video').prop('src', URL.createObjectURL(stream));
window.localStream = stream;
step2();
}, function(){ $('#step1-error').show(); });
}
function step2 () {
$('#step1, #step3').hide();
$('#step2').show();
}
function step3 (call) {
// Hang up on an existing call if present
if (window.existingCall) {
window.existingCall.close();
}
// Wait for stream on the call, then set peer video display
call.on('stream', function(stream){
$('#their-video').prop('src', URL.createObjectURL(stream));
});
// UI stuff
window.existingCall = call;
$('#their-id').text(call.peer);
call.on('close', step2);
$('#step1, #step2').hide();
$('#step3').show();
}
</script>