28 lines
818 B
JavaScript
28 lines
818 B
JavaScript
// @flow
|
|
|
|
import { getJitsiMeetGlobalNS, loadScript } from '../base/util';
|
|
|
|
let loadRnnoisePromise;
|
|
|
|
/**
|
|
* Returns promise that resolves with a RnnoiseProcessor instance.
|
|
*
|
|
* @returns {Promise<RnnoiseProcessor>} - Resolves with the blur effect instance.
|
|
*/
|
|
export function createRnnoiseProcessorPromise() {
|
|
// Subsequent calls should not attempt to load the script multiple times.
|
|
if (!loadRnnoisePromise) {
|
|
loadRnnoisePromise = loadScript('libs/rnnoise-processor.min.js');
|
|
}
|
|
|
|
return loadRnnoisePromise.then(() => {
|
|
const ns = getJitsiMeetGlobalNS();
|
|
|
|
if (ns?.effects?.rnnoise?.createRnnoiseProcessor) {
|
|
return ns.effects.rnnoise.createRnnoiseProcessor();
|
|
}
|
|
|
|
throw new Error('Rnnoise module binding createRnnoiseProcessor not found!');
|
|
});
|
|
}
|