diff --git a/static/sfu.html b/static/sfu.html index 63c20ac..0f13ab6 100644 --- a/static/sfu.html +++ b/static/sfu.html @@ -154,6 +154,14 @@ +
+ + + diff --git a/static/sfu.js b/static/sfu.js index b740e25..13e7cba 100644 --- a/static/sfu.js +++ b/static/sfu.js @@ -78,6 +78,8 @@ function getUsername() { * @property {string} [send] * @property {string} [request] * @property {boolean} [activityDetection] + * @property {boolean} [blackboardMode] + * @property {boolean} [studioMode] */ /** @type{settings} */ @@ -163,6 +165,10 @@ function reflectSettings() { document.getElementById('activitybox').checked = settings.activityDetection; + document.getElementById('blackboardbox').checked = settings.blackboardMode; + + document.getElementById('studiobox').checked = settings.studioMode; + if(store) storeSettings(settings); @@ -359,6 +365,18 @@ document.getElementById('audioselect').onchange = function(e) { changePresentation(); }; +document.getElementById('blackboardbox').onchange = function(e) { + e.preventDefault(); + updateSettings({blackboardMode: this.checked}); + changePresentation(); +} + +document.getElementById('studiobox').onchange = function(e) { + e.preventDefault(); + updateSettings({studioMode: this.checked}); + changePresentation(); +} + document.getElementById('mutebutton').onclick = function(e) { e.preventDefault(); let localMute = getSettings().localMute; @@ -646,6 +664,23 @@ async function addLocalMedia(id) { let audio = settings.audio ? {deviceId: settings.audio} : false; let video = settings.video ? {deviceId: settings.video} : false; + if(audio) { + if(settings.studioMode) { + audio.echoCancellation = false; + audio.noiseSuppression = false; + audio.channelCount = 2; + audio.latency = 0.01; + audio.autoGainControl = false; + } + } + + if(video) { + if(settings.blackboardMode) { + video.width = { min: 640, ideal: 1920 }; + video.height = { min: 400, ideal: 1080 }; + } + } + let old = id && serverConnection.up[id]; if(!audio && !video) { @@ -662,7 +697,6 @@ async function addLocalMedia(id) { try { stream = await navigator.mediaDevices.getUserMedia(constraints); } catch(e) { - console.error(e); displayError(e); if(old) delUpMedia(old); @@ -678,8 +712,15 @@ async function addLocalMedia(id) { let mute = getSettings().localMute; stream.getTracks().forEach(t => { c.labels[t.id] = t.kind - if(t.kind == 'audio' && mute) - t.enabled = false; + if(t.kind == 'audio') { + if(mute) + t.enabled = false; + } else if(t.kind == 'video') { + if(settings.blackboardMode) { + if('contentHint' in t) + t.contentHint = 'detail'; + } + } let sender = c.pc.addTrack(t, stream); });