workarounds for setting volume. hopefully fixes issue #17
This commit is contained in:
parent
778e6e0137
commit
40af39a8dc
9
app.js
9
app.js
|
@ -99,7 +99,6 @@ function doJoin() {
|
||||||
$(document).bind('mediaready.jingle', function (event, stream) {
|
$(document).bind('mediaready.jingle', function (event, stream) {
|
||||||
connection.jingle.localStream = stream;
|
connection.jingle.localStream = stream;
|
||||||
RTC.attachMediaStream($('#localVideo'), stream);
|
RTC.attachMediaStream($('#localVideo'), stream);
|
||||||
document.getElementById('localVideo').muted = true;
|
|
||||||
document.getElementById('localVideo').autoplay = true;
|
document.getElementById('localVideo').autoplay = true;
|
||||||
document.getElementById('localVideo').volume = 0;
|
document.getElementById('localVideo').volume = 0;
|
||||||
|
|
||||||
|
@ -107,7 +106,13 @@ $(document).bind('mediaready.jingle', function (event, stream) {
|
||||||
updateLargeVideo(localVideoSrc, true, 0);
|
updateLargeVideo(localVideoSrc, true, 0);
|
||||||
|
|
||||||
$('#localVideo').click(function () {
|
$('#localVideo').click(function () {
|
||||||
updateLargeVideo($(this).attr('src'), true, 1);
|
updateLargeVideo($(this).attr('src'), true, 0);
|
||||||
|
$('video').each(function (idx, el) {
|
||||||
|
if (el.id.indexOf('mixedmslabel') != -1) {
|
||||||
|
el.volume = 0;
|
||||||
|
el.volume = 1;
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
doJoin();
|
doJoin();
|
||||||
|
|
Loading…
Reference in New Issue