open-sourceself-hostingjitsijitsi-meet

How to configure filmstrip on mobile for custom Jitsi instance?


I am trying to configure my Jitsi meet so it will have filmstrip on mobile.

Please see ~/.jitsi-meet-cfg/web/custom-config.js belowjitsi config

But for whatever film strip view won’t appear on mobile even though it shows on desktop. What can I do to fix this? Thanks!


Solution

  • For iframe was able to resolve it programmatically.

    jitsiApi.addEventListener('filmstripDisplayChanged', (event: any) => {
                    if (!event.visible) {
                        jitsiApi.executeCommand('toggleFilmStrip');
                    }
                });