From 39870b788bcbf04186822a8ae7763d81aa72ba8f Mon Sep 17 00:00:00 2001 From: Shawn Date: Thu, 21 Jul 2022 10:54:08 +0100 Subject: added disableTileEnlargement option --- .gitignore | 1 + index.html | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485dee6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/index.html b/index.html index 88d4a84..0f913c6 100644 --- a/index.html +++ b/index.html @@ -82,6 +82,7 @@ const $startAudioMuted = $("#startAudioMuted"); const $startVideoMuted = $("#startVideoMuted"); const $disableFaceCentering = $("#disableFaceCentering"); + const $disableTileEnlargement = $("#disableTileEnlargement"); const $disableInitialGUM = $("#disableInitialGUM"); const $disableNotifications = $("#disableNotifications"); const $codeFeatures = $("#codeFeatures"); @@ -105,6 +106,10 @@ paramGroup['config.faceLandmarks.enableFaceCentering'] = false; } + if ($disableTileEnlargement.prop('checked')) { + paramGroup['config.disableTileEnlargement'] = true; + } + if ($disableInitialGUM.prop('checked')) { paramGroup['config.disableInitialGUM'] = true; } @@ -121,6 +126,7 @@ $startAudioMuted.on("input", featureChanged); $startVideoMuted.on("input", featureChanged); $disableFaceCentering.on("input", featureChanged); + $disableTileEnlargement.on("input", featureChanged); $disableInitialGUM.on("input", featureChanged); $disableNotifications.on("input", featureChanged); @@ -344,6 +350,20 @@ Disable Face Centering + +
+ + +
+ + Jitsi attempts to use as much screen real-estate as possible when displaying video in tile view. + Depending on your screen geometry, this might involve cropping the displayed videos. + Coupled with the face-centering feature, this usually produces good results + but there maybe some use cases where this is not desirable. Check this to disable that feature. + +
-- cgit v1.2.3