Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update faq.mdx #2418

Merged
merged 4 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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());

```
5 changes: 3 additions & 2 deletions docs/server-side/v2/how-to-guides/create-large-rooms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ When using the above API, following points need to be noted:

> **Note**
>
> - Large rooms support only 200 publishing peers. Publishing peers are defined as peers with audio and video publishing permissions.
> - Large rooms support a maximum of 200 hand-raises at a single point of time.
> - Large rooms support **only 200 publishing peers.**
> Publishing peers are defined as peers with audio and video publishing permissions.
> - Large rooms also support a maximum of **200 hand-raises** at a single point in time.

## Client-side implementation

Expand Down