https://github.com/bigbluebutton/plugin-decrease-volume-on-speak
https://github.com/bigbluebutton/plugin-decrease-volume-on-speak
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bigbluebutton/plugin-decrease-volume-on-speak
- Owner: bigbluebutton
- License: lgpl-3.0
- Created: 2024-06-10T15:51:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T02:18:20.000Z (about 1 year ago)
- Last Synced: 2025-10-19T13:45:43.417Z (8 months ago)
- Language: TypeScript
- Size: 746 KB
- Stars: 0
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Decrease external video's volume on speak
## What is it?
This plugin is one of the official bbb plugins. It basically decreases the external video's volume when a user is speaking in the meeting.
## Building the Plugin
To build the plugin for production use, follow these steps:
```bash
cd $HOME/src/plugin-decrease-volume-on-speak
npm ci
npm run build-bundle
```
The above commands will generate the `dist` folder, containing the bundled JavaScript file named `DecreaseVolumeOnSpeak.js`. This file can be hosted on any HTTPS server along with its `manifest.json`.
If you install the plugin separated from the manifest, remember to change the `javascriptEntrypointUrl` in the `manifest.json` to the correct endpoint.
To use the plugin in BigBlueButton, send this parameter along in create call:
```
pluginManifests=[{"url":"/path/to/manifest.json"}]
```
Or additionally, you can add this same configuration in the `.properties` file from `bbb-web` in `/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties`
## Development mode
As for development mode (running this plugin from source), please, refer back to https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk section `Running the Plugin from Source`