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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南