Skip to content

Commit

Permalink
Update faq.mdx (#2418)
Browse files Browse the repository at this point in the history
* Update faq.mdx

Adding capture device issue FAQ

* highlight 200 publishing peers in large rooms (#2430)

* highlight 200 publishing peers in large rooms

* modify

* Update create-large-rooms.mdx

* Update create-large-rooms.mdx

---------

Co-authored-by: sandeep-100ms <[email protected]>

---------

Co-authored-by: ygit <[email protected]>
Co-authored-by: Aakash Bajaj <[email protected]>
Co-authored-by: sandeep-100ms <[email protected]>
  • Loading branch information
4 people authored Dec 2, 2024
1 parent 472a7f5 commit 1537783
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/javascript/v2/how-to-guides/debugging/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -236,3 +236,15 @@ const { HMSReactiveStore} = require('@100mslive/hms-video-store');

By implementing one of these workarounds, you should be able to resolve the TypeScript errors and continue using the libraries.

#### How to Address Video and Audio Issues with Capture Devices

1. Check for Conflicting Applications: Ensure that no other applications are currently using your audio and video devices. If you find any, close them and restart your 100ms session.

2. Manage getUserMedia Calls: If you're using the getUserMedia function, be sure to stop it before invoking the 100ms join method.

```
const mediaStream = await navigator.mediaDevices.getUserMedia(constraints);
mediaStream.getTracks().forEach(track => track.stop());
```

0 comments on commit 1537783

Please sign in to comment.