Hello,
First, I must say that this is an amazing project and it's really going to help me and other alot and above all thank you for sharing this solution openly.
I'm not much a technical guy but have managed to install it on an Openfire system which is running on an old Ubuntu, anywayz I installed the Jitsi video bridge plugin and then configured the config.js of ofmeet and jitmeet. I have made the exceptions in the firewall for two ranges 5000-6000 and 50000-60000 and these are done on servers and clients too.
But now when any other client connects, the second BLACK screen adds. I can not even hear the other participant.
Please do let me know where I'm mistaking as I have followed the earlier discussions Artem Drach(http://community.igniterealtime.org/thread/51805?tstart=0)) as this was the nearest to my issues but even then I couln't solve the issue.
the jitmeet/config.js:
var config = {
hosts: {
domain: 'efax.domain.com',
muc: 'conference.', // FIXME: use XEP-0030
bridge: 'jitsi-videobridge.' // FIXME: use XEP-0030
},
// useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
// useIPv6: true, // ipv6 support. use at your own risk
useNicks: false,
bosh: 'http://efax.domain.com:7070/http-bind/', // FIXME: use xep-0156 for that
getroomnode: function (path)
{
console.log('getroomnode', path);
var name = "r";
var roomnode = null;
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
if (!results)
roomnode = null;
else roomnode = results[1] || undefined;
if (!roomnode) {
roomnode = Math.random().toString(36).substr(2, 20);
window.history.pushState('VideoChat', 'Room: ' + roomnode, path + "?r=" + roomnode);
}
return roomnode;
}
};
The chorme logs are listed below for your reference: