opensips-js 0.1.16 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -3
- package/dist/index.d.ts +3 -1
- package/dist/opensips-js.cjs.js +36 -36
- package/dist/opensips-js.es.js +873 -842
- package/dist/opensips-js.iife.js +34 -34
- package/dist/opensips-js.umd.js +24 -24
- package/package.json +1 -1
- package/src/types/rtc.d.ts +1 -1
package/README.md
CHANGED
|
@@ -229,6 +229,7 @@ Also, there are next public fields on OpensipsJS instance:
|
|
|
229
229
|
- `setSpeakerVolume(value: Number): void` - set volume of callers. Value should be in range from 0 to 1
|
|
230
230
|
- `setDND(value: Boolean): void` - set the agent "Do not disturb" status
|
|
231
231
|
- `setMetricsConfig(config: WebrtcMetricsConfigType): void` - set the metric config (used for audio quality indicator)
|
|
232
|
+
- `setVADConfiguration(options: Partial<Omit<NoiseReductionOptions, 'vadModule'>>): void` - update noise reduction configuration at runtime. **Requires `vadModule` to be passed in the constructor, otherwise throws an error**
|
|
232
233
|
|
|
233
234
|
### Audio instance fields
|
|
234
235
|
- `sipOptions: Object` - returns sip options
|
|
@@ -247,6 +248,14 @@ Also, there are next public fields on OpensipsJS instance:
|
|
|
247
248
|
|
|
248
249
|
**Important**: Voice Activity Detection (VAD) is an **optional feature** that requires installing an additional peer dependency. It is **NOT compatible with React Native**.
|
|
249
250
|
|
|
251
|
+
#### Critical: VAD Module Must Be Passed to Constructor
|
|
252
|
+
|
|
253
|
+
**If you plan to use noise reduction features (including `setVADConfiguration` in runtime), you MUST pass `vadModule` to the OpenSIPSJS constructor during initialization.**
|
|
254
|
+
|
|
255
|
+
- ✅ **Required**: Pass `vadModule` in the constructor if you want to use noise reduction
|
|
256
|
+
- ❌ **Will throw error**: Calling `setVADConfiguration()` without `vadModule` in the constructor will throw an error
|
|
257
|
+
- ⚠️ **Cannot be changed later**: The `vadModule` cannot be set after initialization - it must be provided in the constructor
|
|
258
|
+
|
|
250
259
|
#### For Web Applications (with VAD support)
|
|
251
260
|
|
|
252
261
|
Install the VAD library:
|
|
@@ -256,7 +265,7 @@ npm install @ricky0123/vad-web
|
|
|
256
265
|
yarn add @ricky0123/vad-web
|
|
257
266
|
```
|
|
258
267
|
|
|
259
|
-
Then import and inject it in your configuration
|
|
268
|
+
Then import and inject it in your configuration **during initialization**:
|
|
260
269
|
```javascript
|
|
261
270
|
import OpenSIPSJS from 'opensips-js'
|
|
262
271
|
import * as VAD from '@ricky0123/vad-web'
|
|
@@ -266,14 +275,20 @@ const opensipsJS = new OpenSIPSJS({
|
|
|
266
275
|
// ... other configuration
|
|
267
276
|
noiseReductionOptions: {
|
|
268
277
|
mode: 'dynamic', // or 'enabled'
|
|
278
|
+
vadModule: VAD, // ⚠️ REQUIRED: Must be passed here if you plan to use noise reduction
|
|
269
279
|
noiseThreshold: 0.004,
|
|
270
280
|
checkEveryMs: 500,
|
|
271
281
|
noiseCheckInterval: 2000
|
|
272
|
-
}
|
|
273
|
-
vadModule: VAD // Inject the VAD module
|
|
282
|
+
}
|
|
274
283
|
},
|
|
275
284
|
// ... rest of configuration
|
|
276
285
|
})
|
|
286
|
+
|
|
287
|
+
// ✅ Now you can use setVADConfiguration
|
|
288
|
+
opensipsJS.audio.setVADConfiguration({
|
|
289
|
+
mode: 'enabled',
|
|
290
|
+
noiseThreshold: 0.005
|
|
291
|
+
})
|
|
277
292
|
```
|
|
278
293
|
|
|
279
294
|
#### For React Native Applications (VAD not supported)
|
package/dist/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ declare class AudioModule {
|
|
|
78
78
|
private MicVAD;
|
|
79
79
|
managedAudioContext: ManagedAudioContext;
|
|
80
80
|
constructor(context: OpenSIPSJS);
|
|
81
|
+
setVADConfiguration(options: Partial<Omit<NoiseReductionOptions, 'vadModule'>>): void;
|
|
82
|
+
private setupVADInstance;
|
|
81
83
|
private processVADConfiguration;
|
|
82
84
|
get sipOptions(): {
|
|
83
85
|
mediaConstraints: {
|
|
@@ -779,6 +781,7 @@ declare type NoiseReductionMode = 'disabled' | 'enabled' | 'dynamic'
|
|
|
779
781
|
|
|
780
782
|
declare interface NoiseReductionOptions {
|
|
781
783
|
mode: NoiseReductionMode,
|
|
784
|
+
vadModule?: VADModule
|
|
782
785
|
vadConfig?: Partial<VADOptions>
|
|
783
786
|
noiseThreshold?: number
|
|
784
787
|
checkEveryMs?: number
|
|
@@ -979,7 +982,6 @@ declare type UAConfigurationExtended = UAConfiguration & {
|
|
|
979
982
|
overrideUserAgent?: (userAgent: string) => string
|
|
980
983
|
noiseReductionOptions?: NoiseReductionOptions
|
|
981
984
|
onTransportCallback?: OnTransportCallback
|
|
982
|
-
vadModule?: VADModule
|
|
983
985
|
}
|
|
984
986
|
|
|
985
987
|
declare const UAConstructor: typeof UA;
|