Hi,
Today, i have updated my on premise jitsi to the latest debian stable packages and then to the latest unstable but still can’t find these three features, available on meet.jit.si:
Add breakout romm
Allow attendees to:
Unmute themselves
Start their video
Could someone help me please ?
TIA
Fathi B.N.
Freddie
December 14, 2021, 4:10pm
#2
Breakout Rooms
The much-anticipated feature ‘Breakout Rooms’ just landed in Stable Release version 2.0.6689.
Introduction
Breakout Rooms let you temporarily split your Jitsi meeting into smaller groups, with each group meeting in its own unique room. By using Breakout Rooms, a Moderator can separate meeting participants into several small groups for more focused conversations and then bring them back into the main room at any time. These Breako…
The 2nd part is AV Moderation, which you have to enable by adding the muc and the corresponding component in your prosody lua.
-- Proxy to jicofo's user JID, so that it doesn't have to register as a component.
Component "focus.jitmeet.example.com" "client_proxy"
target_address = "focusUser@auth.jitmeet.example.com"
Component "speakerstats.jitmeet.example.com" "speakerstats_component"
muc_component = "conference.jitmeet.example.com"
Component "conferenceduration.jitmeet.example.com" "conference_duration_component"
muc_component = "conference.jitmeet.example.com"
Component "avmoderation.jitmeet.example.com" "av_moderation_component"
muc_component = "conference.jitmeet.example.com"
Component "lobby.jitmeet.example.com" "muc"
storage = "memory"
restrict_room_creation = true
muc_room_locking = false
muc_room_default_public_jids = true
1 Like