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?

2개 답변
2
수락된 답변

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
답변함 8달 전
profile picture
전문가
검토됨 한 달 전
  • 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
답변함 8달 전

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

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

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

관련 콘텐츠