new-features
Overview
This document is still a draft, BigBlueButton 3.0 is under development
BigBlueButton 3.0 offers users improved usability, increased engagement, and more performance.
- Usability - making common functions (such as raise hand) easier
- Engagement - giving the instructor more ways to engage students
- Performance - increasing overall performance and scalability
Here's a breakdown of what's new in 3.0.
Usability
Upgraded whiteboard
We have done significant work to adopt the newly released version 2 of tl;draw. It comes with even more tools and capabilities and has allowed us to embark on more ambitious whiteboard projects, for example a prototype of an Infinite Canvas.
Improved UX for joining audio for transparentListenOnly
When transparentListenOnly is enabled on the server, users can now switch seamlessly between Listen Only and Microphone modes without needing to rejoin audio.
To further improve the user experience, you can disable listenOnlyMode (public.app.listenOnlyMode
in /etc/bigbluebutton/bbb-html5.yml
or userdata-bbb_listen_only_mode
).
This removes the need to choose between Microphone or Listen Only mode when joining audio in a session. Instead, you are taken directly to the audio configuration screen.
Once you are joined in audio, you can dynamically change your audio device configuration from a dropdown located on the mute-yourself button.
New layouts for specific integration scenarios
Several new layouts have been added ("Cameras Only", "Presentation Only", and "Participants and Chat Only") to address various use cases of hybrid education - for example splitting views of the BigBlueButton session to be visible on different physical screens.
Improved Away mode
We have made changes so that when you set yourself as being Away, your microphone is now automatically muted, your webcam is also muted (blank).
When you return and unmute yourself this counts as disabling Away mode. The control for toggling away mode is now positioned in the Reactions bar.
Away mode also is recorded in the public chat area.
Leave meeting button
A contribution from community member Jan Kessler, the direct Leave Meeting button was first introduced in BigBlueButton 2.7.5. Starting with BigBlueButton 3.0 we are making it enabled by default.
Viewers can leave the meeting by using this new red button, previously hidden near the Setting menu. For moderators, the button includes the option to end the meeting as well.
Better looking polling results
We have enhanced the view of the polling results that appear over the whiteboard. It is now much more intuitive to read.
Private chat messages have a "seen" indicator
We have added an indicator showing when your private chat recipient has seen the message.
Push to talk was added
You can now use the "M" shortcut while in a conference to control how long your microphone is open. If the option for push to talk is enabled in settings.yml holding "M" will keep your microphone unmuted for as long you hold the key down. Releasing it will mute you again.
Engagement
Behind the scene
Introduction of plugins
We have made significant changes to the architecture of BigBlueButton and have introduced support to plugins -- optional custom modules included in the client which allow expanding the capabilities of BigBlueButton. A data channel is provided to allow for data exchange between clients. See the HTML5 Plugin SDK for examples and more information.
At the moment of writing this documentation, the official list of plugins includes:
- Select Random User
- Share a link
- H5P plugin for BigBlueButton
- Session share
- Decrease the volume of external video when someone speaks
- Typed captions
- Source code highlight
Replaced Akka framework with Pekko
Following the license change of Akka back in September 2022 we considered several options and decided to replace our use of Akka with Apache Pekko More on the transition: https://github.com/bigbluebutton/bigbluebutton/pull/18694
Override client settings through API /create call
Administrators will appreciate that we now allow passing of custom client settings through the meeting create API call. You no longer need separate servers to accommodate for sessions requiring vastly different settings.yml configuration
Removal of Meteor and MongoDB
For years we have discussed internally the topic of replacing Meteor.js with other technologies in order to improve scalability, performance, etc. In the last year we have introduced several different new components to replace Meteor.
These new components are: bbb-graphql-server
, bbb-graphql-middleware
, bbb-graphql-actions
, database Postgres, GraphQL server Hasura. As of BigBlueButton 3.0.0-beta.1 we are no longer using Meteor or MongoDB.
Note: The services bbb-html5-backend
, bbb-html5-frontend
, bbb-html5
and mongod
have been removed. The client code is compacted and served by NginX. The service disable-transparent-huge-pages.service
was also removed as it was used to improve performance of MongoDB and is now obsolete.
The package bbb-html5-nodejs
is no longer needed.
Important: Please make sure you're no longer carrying around NodeJS v14 which we used to deploy in bbb-html5-nodejs
. Your directory /usr/lib/bbb-html5/node
should not exist.
We have forked the tldraw project and use our fork
We upgraded tl;draw from version 1 to version 2.0.0-alpha.19 (the last version on Apache 2.0 licence). That was quite a significant task but brought better performance, better looks, improved stylus support and many more. Note that we have forked tldraw's project as of their version 2.0.0-alpha.19 to ensure we remain on the Apache 2.0 license. We will be maintaining the fork so that BigBlueButton has a stable whiteboard in the future.
Support for Collabora Online as document converter
Collabora Productivity contributed the support for an alternative conversion script where Collabora Online (deployed locally [as a docker container] or running remotely) can be used for document conversion. For more information check the pull request
Support for ClamAV as presentation file scanner
We have added support for ClamAV to automatically scan every presentation file for viruses before sharing it with the others in the session. To use it you would need to first install ClamAV: The simplest way would be to run it locally as a container.
docker pull clamav/clamav`
docker run --name "clamav" --mount type=bind,source=/var/bigbluebutton,target=/var/bigbluebutton -p 3310:3310 -p 7357:7357 clamav/clamav:latest
The above run command may take a minute to start. If you prefer you could run with -d
flag to make it detachable.
Now when you check the running containers you should see an entry like this one:
root@test30:~# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bda7f5596192 clamav/clamav:latest "/init" 21 minutes ago Up 21 minutes (healthy) 0.0.0.0:3310->3310/tcp, :::3310->3310/tcp, 0.0.0.0:7357->7357/tcp, :::7357->7357/tcp clamav
Additionally you will have to enable scanning:
Specify scanUploadedPresentationFiles=true
in /etc/bigbluebutton/bbb-web.properties
and restart BigBlueButton via sudo bbb-conf --restart
When you create a new session and try uploading some presentation files, you should not see anything different if the file was fine.
However, if a threat was detected, you will see the message "Upload failed: Virus detected! Please check your file and retry." in the client and the presentation sharing will not proceed.
Additionally, in the logs for bbb-web
you will see similar log lines:
Oct 09 01:07:18 test30 java[2810929]: 2024-10-09T01:07:18.285Z DEBUG o.b.w.c.PresentationController - processing file upload eicar.com.txt (presId: f7ff3fd7c0ab460f7139541c02df46f24ac90b67-1728436037947)
Oct 09 01:07:18 test30 java[2810929]: 2024-10-09T01:07:18.550Z DEBUG o.b.w.c.PresentationController - file upload success eicar.com.txt
Oct 09 01:07:23 test30 java[2810929]: 2024-10-09T01:07:23.589Z ERROR o.b.p.DocumentConversionServiceImp - Presentation upload failed for meetingId=4814d8e60f2e15576bebfe7cef34367ef5b54539-1728435987030 presId=f7ff3fd7c0ab460f7139541c02df46f24ac90b67-1728436037947
Oct 09 01:07:23 test30 java[2810929]: 2024-10-09T01:07:23.590Z ERROR o.b.p.DocumentConversionServiceImp - Presentation upload failed because a virus was detected in the uploaded file
You can test your setup with one of the files from eicar.org.