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
질문됨 3달 전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.

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠