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
preguntada hace 3 meses145 visualizaciones
1 Respuesta
0
Respuesta aceptada

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
respondido hace 3 meses
  • 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.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas