Questions tagged [aws-chime-sdk]

The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors.

The Amazon Chime API Reference provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK.

89 questions
0
votes
1 answer

Amazon Chime SDK calling "CallAndBridge" action from outside of SMA lambda

The Amazon Chime SDK action CallAndBridge routes the incoming call to a user. The CallAndBridge action is returned from the SMA Lambda. Is there a way to send the action of type CallAndBridge not from the SMA Lambda function, either some REST API or…
User7723337
  • 11,857
  • 27
  • 101
  • 182
0
votes
0 answers

react-native-chime-sdk setup devices before a meeting

I'm using amazon-chime-react-native in my App. How I can get devices setup before the meeting start? https://github.com/aws-samples/amazon-chime-react-native-demo Only after startMeeting I can get the device list, but on a setup screen the meeting…
IncognitoUser
  • 312
  • 1
  • 8
0
votes
0 answers

How does the Chime SDK and Amazon Transcribe integration work in terms of cost and transcription ending

For my product I've integrated the chime sdk as our webrtc media server/meeting management and that's been great. We hooked in amazon transcribe with the built in integration. The problem is there seems to be a lot of hidden/undescribed…
dbish
  • 53
  • 8
0
votes
2 answers

How to send AWS Chime Meeting events to EventBridge?

I have a default Event Bus. I created a rule for AWS Chime events and added a trigger. I was able to get S3 Events go to EventBridge. There is a setting under bucket properties to do so. However, I am not able to find such setting for Chime SDK. I…
0
votes
0 answers

How to see all meeting info and matrix for aws chime sdk

I am trying to build an app using aws chime sdk, I didn't find any dashboard in the console related to chime sdk. How can I access the dashboard and data for chime sdk?
Hkm Sadek
  • 2,987
  • 9
  • 43
  • 95
0
votes
1 answer

Chime SDK to display all video tile and real time attendee list display using Vue JS

I have heard several times about local tile and remote tile when sharing video meetings. I am trying to display all attendee video tile and facing difficulties making an app from scratch using Vue JS as I'm new to using AWS Chime SDK. I have several…
0
votes
1 answer

AWS Chime SDK - Javascript - ChimeSDK is not defined

I am trying to find (download/create) Chime SDK javascript file to include in my html page for creating meetings. However, i cannot find a direct download anywhere. So, by following instruction on this page (Bundling Chime SDK into a single .js…
0
votes
1 answer

Why is rollup not generating a global variable despite output name being specified?

I am trying to use singlejs which is part of the AWS Chime SDK for JavaScript. The singlejs sample generates amazon-chime-sdk.min.js and you are meant to be able to access the SDK via the global variable ChimeSDK. However in the latest version the…
timanderson
  • 843
  • 1
  • 10
  • 20
0
votes
1 answer

Amazon Chime SDK Meeting status is MeetingStatus.Left when entering a room

I'm implementing a meeting app that uses Amazon's Chime SKD React. Here is the link of the library. I successfully implemented a meeting, and it works well. However, there is a small issue which with which I'm not satisfied. There are several…
0
votes
0 answers

Implementing Refresh and needsRefresh for AWS Chime SDK Messaging Client

I am making use of aws-chime-sdk-js and ChimeSDKMessagingClient, I have read in the docs that if we implement refresh and needsRefresh then aws-chime-sdk-js would take care of refreshing the aws credentials when they expire. How would we do this in…
king.reflex
  • 313
  • 4
  • 10
0
votes
0 answers

AWS Chime control region AP_SOUTHEAST_1 throwing error

I'm trying to connect to AWS Chime API. When trying to use control region as AP_SOUTHEAST_1(Singapore) for chime, it is throwing error According to this article: controlling Chime is available in AP_SOUTHEAST_1(Singapore) region So in my requests,…
0
votes
0 answers

Is there a way to update headers of Chime Messaging API of aws-sdk/clients/chimesdkmessaging in ReactJs?

I am using aws-sdk/clients/chimesdkmessaging to make requests to get/delete/send channel messages. But the issue is that the temporary credentials are expired after 1 hour and I cannot use the services without renewing the credentials. I am able to…
Sangeet
  • 145
  • 3
  • 9
0
votes
0 answers

Getting this error in ffmpeg pipeline: Non-monotonous DTS in output stream 0:0; previous: 4951970, current: 4951659; changing to 4951971

Error: Non-monotonous DTS in output stream 0:0; previous: 4951970, current: 4951659; changing to 4951971. This may result in incorrect timestamps in the output file. I am using AWS Chime streaming then passing there data stream to FFMPEG and then…
0
votes
0 answers

AWS Chime media capture sdk available for Boto3 python

I want to capture my chime meetings session in a s3 bucket. For this, I'm using the chime-sdk-media-pipelines defined here. When I execute my lambda function I get the following error: [ERROR] UnknownServiceError: Unknown service:…
0
votes
0 answers

How to send warning message when a user is muted?

I'm using Amazon Chime service to establish a connection in our system. So once a user mutes itself they can't send audio through the app. What I want is to send a warning message saying "You are muted. Please unmute." when they talk and their state…