How to disable audio output when joining chime meeting.

0

I've a requirement where when users are joining I need to disable Audio Input, Video Input and Audio Output.

To disable Audio input and Video input I'm using.

        const options = {
          deviceLabels: DeviceLabels.None,
        };

        await meetingManager.join(meetingSessionConfiguration, options);
        await meetingManager.start();

Above will allow me to turn on Audio Input and Video Input when user needed on demand.

Similar to above is there a way to disable Audio Output when user joining the meeting and enable Audio Output when user needed on demand.

Ravi
質問済み 4ヶ月前145ビュー
1回答
0
承認された回答

Based on the public documentation [1] of Amazon Chime SDK Meetings, an attendee has the following audio capability:

  1. SendReceive : Can both send and receive audio
  2. Send : Can only send audio
  3. Receive : Can only receive audio / Muted
  4. None : Cannot send or receive audio

Please refer the documentation [1] for more information.

I hope this information helps. If you have any other concern or query, please feel free to reach out to us

Reference :-

[1] AttendeeCapabilities : https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_AttendeeCapabilities.html

AWS
回答済み 3ヶ月前
  • Thanks Rewant. For now I've used your suggestion and let you know here if there is any problems. But I would like to know is there any other way to achieve the same purely on client side using Chime React Libarary and Chime Javascript SDK. The reason for this is to avoid calls to server and avoid latency.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ