You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Mute the microphone and speakers of your second CallAgent’s Call, so that there is no echos/noises.
483
+
awaitcallObj2.muteIncomingAudio();
484
+
awaitcallObj2.mute();
485
+
```
486
+
Limitations:
487
+
- This must be done with two different call agents with different identities, hence the code snippet shows two call agents being used.
488
+
- Sending the same camera in both CallAgent, is not supported. They must be two different cameras.
489
+
- Sending two different cameras with one CallAgent is currently not supported.
490
+
- On MacOS Safari, background blur video effects (from @azure/communication-effects), can only be applied to one camera, and not both at the same time.
0 commit comments