Timo_W
January 24, 2022, 6:56am
#1
Hello,
suddenly the user tileview on the right appeared on the recordings and I dont know how to remove it. I would also be fine with completly removing it. I tried to hide it via CSS, no success. Also removing the buttons from the toolbar array didnt help.
Thanks.
emrah
January 24, 2022, 12:18pm
#2
Can you try the following
/usr/share/jitsi-meet/body.html
<script>
async function disableFilmStrip(attempt) {
try {
attempt += 1;
if (attempt > 3) return;
// skip if I am not recorder
const isRecorder = APP.store.getState()["features/base/config"].iAmRecorder;
if (!isRecorder) return;
APP.store.getState()["features/filmstrip"].visible = false;
} catch (e) {
setTimeout(function() {disableFilmStrip(attempt);}, 3000);
}
}
disableFilmStrip(0);
</script>
1 Like
Timo_W
January 24, 2022, 4:01pm
#3
I will give it a shot, thank you!
Timo_W
January 25, 2022, 9:33am
#4
emrah:
<script>
async function disableFilmStrip(attempt) {
try {
attempt += 1;
if (attempt > 3) return;
// skip if I am not recorder
const isRecorder = APP.store.getState()["features/base/config"].iAmRecorder;
if (!isRecorder) return;
APP.store.getState()["features/filmstrip"].visible = false;
} catch (e) {
setTimeout(function() {disableFilmStrip(attempt);}, 3000);
}
}
disableFilmStrip(0);
</script>
Unfortunately no success. I added that to the body.html, cleared the cache but its still there.
Edit: After rebooting Jibri its gone! It hides after starting the recording within 5 seconds.
Thank you!!!
1 Like