Skip to content

Commit 11aac96

Browse files
Merge pull request #226030 from sloanster/patch-11
Update video-effects-javascript.md
2 parents 59357eb + 40fe26f commit 11aac96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/video-effects/video-effects-javascript.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Use the `npm install` command to install the Azure Communication Services Effect
3232
```console
3333
npm install @azure/communication-calling-effects --save
3434
```
35+
See [here](https://www.npmjs.com/package/@azure/communication-calling-effects) for more details on the calling commmunication effects npm package page.
36+
3537
> [!NOTE]
3638
> Currently browser support for creating video background effects is only supported on Chrome and Edge Desktop Browser (Windows and Mac) and Mac Safari Desktop.
3739
@@ -48,7 +50,7 @@ import { BackgroundBlurEffect, BackgroundReplacementEffect } from '@azure/commun
4850

4951
// Get the video effects feature api on the LocalVideoStream
5052
// (here, localVideoStream is the LocalVideoStream object you created while setting up video calling)
51-
const videoEffectsFeatureApi = localVideoStream.features(AzureCommunicationCallingSDK.Features.VideoEffects);
53+
const videoEffectsFeatureApi = localVideoStream.feature(AzureCommunicationCallingSDK.Features.VideoEffects);
5254

5355

5456
// Subscribe to useful events

0 commit comments

Comments
 (0)