Skip to content

Commit

Permalink
feat(noise-suppression): Add support for extended BVC devices list
Browse files Browse the repository at this point in the history
This commit adds support for extending the list of allowed BVC devices in the noise suppression feature. It introduces a new file, `bvc-allowed-ext.txt`, which can be used to include additional BVC supported devices.
  • Loading branch information
aashot committed Oct 2, 2024
1 parent db44ae5 commit 85a9882
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ var config = {
// - https://meet.example.com/libs/krisp/models/model_32.kw
// - https://meet.example.com/libs/krisp/models/model_bvc.kw
// - https://meet.example.com/libs/krisp/assets/bvc-allowed.txt
// In case when you have known BVC supported devices and you want to extend allowed devices list
// - https://meet.example.com/libs/krisp/assets/bvc-allowed-ext.txt
// NOTE: Krisp JS SDK v1.0.9 was tested.
// noiseSuppression: {
// krisp: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ async function _initializeKrisp(options: INoiseSuppressionConfig): Promise<Audio
debugLogs: options?.krisp?.debugLogs,
useBVC: options?.krisp?.useBVC,
bvc: {
allowedDevices: `${baseUrl}/assets/bvc-allowed.txt`
allowedDevices: `${baseUrl}/assets/bvc-allowed.txt`,
allowedDevicesExt: `${baseUrl}/assets/bvc-allowed-ext.txt`
}
},
callbacks: {}
Expand Down

0 comments on commit 85a9882

Please sign in to comment.