Show other users Chime call is being recorded

0

I am building a videocall webapp with the aws chime sdk and javascript which allows users to record the call. I want to show other users on a call when they are being recorded, is there something within the chime sdk that allows for this easily?

Connor
gefragt vor 8 Monaten202 Aufrufe
2 Antworten
2
Akzeptierte Antwort

There are two different ways you could accomplish this:

  1. When the media pipeline is created, a new pipeline-related attendee will join the call. In your callback that subscribes to attendee presence (which you have for roster updates), you could use the presence of this pipeline attendee to turn on (and off) a recording indicator.
  2. You could use the data message feature of the SDK and have the client that initiates the recording also send a data message to all the other clients telling them to turn on (or off) the recording indicator. (https://aws.github.io/amazon-chime-sdk-js/modules/apioverview.html#9-send-and-receive-data-messages-optional)

Option 1 might be easier since most of the mechanism is already provided. But, option 2 would also let you send other information -- like which attendee initiated the recording.

profile pictureAWS
DougL
beantwortet vor 8 Monaten
profile picture
EXPERTE
überprüft vor einem Monat
  • Thank you for the response. I ended up going with option 2, it was simple to implement and gives a lot of freedom with the message payload

1

I am not able to locate any documentation on your reuquest. I do find the below - https://aws.amazon.com/blogs/business-productivity/capture-amazon-chime-sdk-meetings-using-media-capture-pipelines/ """ Notifications The media capture pipeline can be in six different statuses: Initializing | InProgress | Failed | TemporarilyFailed | Stopping | Stopped """ You may use one of the six statues alert to notify your participants on your recording action.

profile picture
beantwortet vor 8 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen