File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/communication-services/tutorials/audio-quality-enhancements/includes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ The `activeEffects` property returns an object with the names of the current act
71
71
// Using the audio effects feature api
72
72
const currentActiveEffects = audioEffectsFeatureApi .activeEffects ;
73
73
74
- // Create the noise supression instance
74
+ // Create the noise suppression instance
75
75
const deepNoiseSuppression = new DeepNoiseSuppressionEffect ();
76
76
// Its recommened to check support for the effect in the current environment using the isSupported API
77
77
// method. Remember that Noise Supression is only supported on Desktop Browsers for Chrome and Edge
@@ -81,7 +81,7 @@ if (isDeepNoiseSuppressionSupported) {
81
81
console .log (' Noise supression is supported in local browser environment' );
82
82
}
83
83
84
- // To start ACS Deep Noise Suppression,
84
+ // To start ACS Deep Noise Suppression
85
85
await audioEffectsFeatureApi .startEffects ({
86
86
noiseSuppression: deepNoiseSuppression
87
87
});
You can’t perform that action at this time.
0 commit comments