This plugins adds a button in the top right corner of Webcams and Screenshare to allow the video stream to be opened in a new window.
- Start the development server:
npm install
npm start
- Add this to the
settings.yml
of the BBB HTML5-client:
public:
plugins:
- name: MediaPopoutPlugin
url: <<PLUGIN_URL>>
To build the plugin for production use, follow these steps:
npm install
npm run build-bundle
The above command will generate the dist
folder, containing the bundled JavaScript file named MediaPopoutPlugin.js
. This file can be hosted on any HTTPS server.
Alternatively, you can host the bundled file on the BigBlueButton server by copying dist/TourPlugin.js to the folder /var/www/bigbluebutton-default/assets/plugins. In this case, the <<PLUGIN_URL>> will be https:///plugins/MediaPopoutPlugin.js.
BigBlueButton added supports for plugins in 2024 with BBB 3.0. Check the official documentation website for more information.
This plugin repository was created using the plugin template repository for BigBlueButton hosted on GitHub.