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
asked 3 months ago138 views
1 Answer
0
Accepted Answer

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
answered 3 months ago
  • 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.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions