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
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. It's recommended that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics might be triggered and the microphone stops working depending on the browser / os.
82
+
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. We recommend that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics might be triggered and the microphone stops working depending on the browser / os.
83
83
84
84
### Local video stream
85
85
@@ -111,7 +111,7 @@ You can use `deviceManager` and `VideoStreamRenderer` to begin rendering streams
111
111
Once a `LocalVideoStream` is created, use it to set up`VideoStreamRenderer`. Once the `VideoStreamRenderer`is
112
112
created call its `createView() method to get a view that you can add as a child to your page.
113
113
114
-
Note that this stream isn't sent to other participants; it's a local preview feed.
114
+
This stream isn't sent to other participants; it's a local preview feed.
115
115
116
116
```js
117
117
// To start viewing local camera preview
@@ -447,7 +447,7 @@ application should render at a given moment. Applications should handle these ch
447
447
accordingly to the recommendation. There's a debounce period (around 10 s) between each update.
448
448
449
449
**Usage**
450
-
The `optimalVideoCount` feature is a call feature. You need to reference the feature `OptimalVideoCount` via the `feature` method of the `Call` object. You can then set a listener via the `on` method of the `OptimalVideoCountCallFeature` to be notifiied when the optimalVideoCount changes. To unsubscribe from the changes you can call the `off` method
450
+
The `optimalVideoCount` feature is a call feature. You need to reference the feature `OptimalVideoCount` via the `feature` method of the `Call` object. You can then set a listener via the `on` method of the `OptimalVideoCountCallFeature` to be notified when the optimalVideoCount changes. To unsubscribe from the changes, you can call the `off` method.
0 commit comments