Commit 1f099ed5 authored by Dele Olajide's avatar Dele Olajide Committed by dele

Jitsi Videobridge plugin - Added simple plugin for Spark

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13855 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4573b1aa
......@@ -44,10 +44,10 @@
Jitsi Video Bridge Plugin Changelog
</h1>
<p><b>1.1</b> -- Jan 4th, 2014</p>
<p><b>1.1</b> -- Jan 7th, 2014</p>
<ul>
<li>OF-716 Added to Openfire plugins with embedded ofmeet web video conference application</li>
<li>OF-716 Added to Openfire plugins with embedded ofmeet web video conference application and Spark plugin</li>
</ul>
<p><b>1.0</b> -- Apr 12, 2013</p>
......
......@@ -63,7 +63,7 @@ Jitsi Videobridge does not mix the video channels into a composite video stream,
but only relays the received video channels to all call participants.
Therefore, while it does need to run on a server with good network bandwidth,
CPU horsepower is not that critical for performance.
The OfMeet video conference application using WebRTC is included.
It includes the OfMeet video conference application using WebRTC as well as a simple Spark plugin.
</p>
......@@ -80,6 +80,9 @@ Under Server settings -> Jitsi Videobridge tab you can configure it.
<h2>How to use</h2>
To run the demo video conference application, point your browser at https://your_server:7443/ofmeet
<p/>
To download the Spark plugin, point your browser at https://your_server:7443/ofmeet/jitsivideobridge-plugin.jar
<p/>
You will need Google Chrome as your default browser to use the Spark plugin
</body>
</html>
......@@ -226,11 +226,12 @@ a.button:hover {
#rightlogo {
position:absolute;
top: 6px;
right: 15px;
right: 20px;
color: white;
background-repeat:no-repeat;
background-image:url(../images/jitsilogo.png);
height: 25px;
width: 62px;
width: 70px;
z-index:1;
}
......
......@@ -23,6 +23,7 @@
<body>
<div id="header">
<a href="http://community.igniterealtime.org/community/support/jitsi_videobridge_plugin" target="_blank"><div id="leftlogo"><nobr>OfMeet</nobr></div></a>
<a href="http://jitsi.org" target="_blank"><div id="rightlogo"></div></a>
<div id="toolbar">
<a class="button" onclick='buttonClick("#mute", "fa fa-microphone fa-lg fa fa-microphone-slash fa-lg");toggleAudio();'><i id="mute" title="Mute / unmute" class="fa fa-microphone fa-lg"></i></a>
<div class="header_button_separator"></div>
......
......@@ -444,6 +444,10 @@ function doJoin() {
var nick = window.prompt('Your nickname (optional)');
if (nick) {
myroomjid += '/' + nick;
nickname = nick;
$('#nickname').css({visibility:"hidden"});
$('#ofmeet').css({visibility:'visible'});
$('#usermsg').css({visibility:'visible'});
} else {
myroomjid += '/' + Strophe.getNodeFromJid(connection.jid);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment