Skip to content

Commit

Permalink
Update bigbluebutton-html5/private/config/settings.yml
Browse files Browse the repository at this point in the history
Co-authored-by: Paulo Lanzarin <[email protected]>

keep listenOnlyMode enabled

chore: enable muteOnStart
  • Loading branch information
antobinary committed Oct 7, 2024
1 parent 0d69dbc commit cca3c1f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
11 changes: 8 additions & 3 deletions bigbluebutton-html5/private/config/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public:
# audio
autoJoin: true
# Set to false disables the listen only option in audio modal.
listenOnlyMode: false
listenOnlyMode: true
forceListenOnly: false
# Skips the echo test when connecting with microphone.
skipCheck: false
Expand Down Expand Up @@ -853,8 +853,13 @@ public:
callHangupMaximumRetries: 10
echoTestNumber: 'echo'
listenOnlyCallTimeout: 15000
# Experimental: enables a new audio mechanism that has a server-side,
# transparent listen only mode. See issue #14021.
# transparentListenOnly: whether the client should use the transparent
# listen only mechanism.
# It does not remove the "Listen Only" option from the audio modal
# by itself, but it allows users to switch modes on the fly and
# improves server CPU efficiency for microphone users.
# To disable the dedicated listen only option in the audio modal,
# see `listenOnlyMode`/`userdata-bbb_transparent_listen_only_mode`
# userdata-bbb_transparent_listen_only supersedes this setting
transparentListenOnly: true
# Dev flag. Controls the WebRTC SDP negotiation role for SFU full audio.
Expand Down
2 changes: 1 addition & 1 deletion bigbluebutton-web/grails-app/conf/bigbluebutton.properties
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ userCameraCap=3
maxPinnedCameras=3

# Mute the meeting on start
muteOnStart=false
muteOnStart=true

# Unmute users
# Gives moderators permission to unmute other users
Expand Down
1 change: 1 addition & 0 deletions docs/docs/new-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ Modified/added events
- `allowOverrideClientSettingsOnCreateCall=false` added
- `sessionsCleanupDelayInMinutes=60` added
- `graphqlWebsocketUrl=${bigbluebutton.web.serverURL}/graphql` added
- `muteOnStart` default value set to `true` - which helps now that `transparentListenOnly` is enabled by default too. See (PR 20848)[https://github.com/bigbluebutton/bigbluebutton/issues/20848] for more info.

#### Removed support for POST requests on `join` endpoint and Content-Type headers are now required

Expand Down

0 comments on commit cca3c1f

Please sign in to comment.