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
If the specified video device is being used by another process, or if it isn't enabled in the system:
224
+
If the specified video device isn't available:
225
225
- While in a call, if your video is off and you start video using `call.startVideo()`, this method throws a `SourceUnavailableError` and `cameraStartFailed` user facing diagnostic is set to true.
226
226
- A call to the `localVideoStream.switchSource()` method causes `cameraStartFailed` to be set to true.
227
227
Our Call Diagnostics guide provides additional information on how to diagnose call related issues.
Local screen share preview is in public preview and available as part of version 1.15.1-beta.1+.
290
290
291
291
### Local screen share preview
292
+
You can use a `VideoStreamRenderer` to begin rendering streams from your local screen share so you can see what you are sending as a screen sharing stream.
292
293
293
-
You can use a `VideoStreamRenderer` to begin rendering streams from your local screen share so you can see
294
-
what you are sending as a screen sharing stream.
295
294
```js
296
295
// To start viewing local screen share preview
297
296
awaitcall.startScreenSharing();
@@ -334,8 +333,8 @@ After that happens, create a new instance of `VideoStreamRenderer`, and then cre
334
333
instance by using the asynchronous `createView` method.
335
334
You can then attach `view.target` to any UI element.
336
335
337
-
Whenever the availability of a remote stream changes, you can destroy the whole `VideoStreamRenderer` or
338
-
a specific `VideoStreamRendererView`. If you decide to keep them, then the view displays a blank video frame.
336
+
Whenever the availability of a remote stream changes, you can destroy the whole `VideoStreamRenderer` or a specific `VideoStreamRendererView`.
337
+
If you decide to keep them, then the view displays a blank video frame.
339
338
340
339
```js
341
340
// Reference to the html's div where we would display a grid of all remote video stream from all participants.
0 commit comments