Amazon Chime is a communications service that can be used for online meetings, video conferencing, calls, and chat. Developers can use Amazon Chime with the AWS SDK or AWS Command Line Interface (AWS CLI) to perform such tasks as managing users, or integrating webhooks and chat bots with Amazon Chime. The Amazon Chime SDK can be sued to build real-time media applications that can send and receive audio and video and allow content sharing.
Questions tagged [amazon-chime]
71 questions
0
votes
0 answers
Amazon Chime sharingAttendeeId does not update in clients when using priorityBasedPolicy.chooseRemoteVideoSources(videoPreferences.build())
I have this context:
export const ChimeProvider: React.FC = ({ children }) => {
.../
const updateVideoPreferences = useCallback(() => {
const videoPreferences = VideoPreferences.prepare();
// Initialize `VideoPreferences`.
for (const…

Pablo Rocha
- 1
- 1
0
votes
0 answers
xdotool to tab to a button on a web page and use the mouse to disable a drop down menu option
I have a Bash script that open a Amazon chime meeting URL in firefox, uses XDOtool to enter a meetig participant name, and tab and mouse click functions. and next uses ffmpeg to stream the video and audio output of the Amazon chime meeting to an…

Mash
- 1
- 1
0
votes
0 answers
Create a meeting with AWS Chime SDK
I have a free tier plan with AWS and I'm trying to get get started with creating meetings using AWS SDK.
private AWSCredentialsProvider getAwsCredentials() {
final BasicAWSCredentials basicAwsCredentials = new BasicAWSCredentials(accessKeyId,…

Yusuf Musa
- 31
- 1
- 5
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
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…

Chandra Eskay
- 2,163
- 9
- 38
- 58
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…

kazinayem2011
- 348
- 6
- 20
0
votes
0 answers
how to integrate amazon chime in angular 13
I don't find any reference for working with angular 8 or above versions. As there is npm package is present for JavaScript, I'm trying to understand it. I'm pretty new to angular so any help who already used chime for meeting-setup, sip calling is…

sayan0020
- 36
- 1
- 3
- 9
0
votes
0 answers
Background blur in Amazon Chime Sdk iOS together with VideoRenderView
private func customVideoOnly() {
let videoRenderView = _view as! VideoRenderView
_view.contentMode = .scaleAspectFit
//---> custom view
DispatchQueue.global(qos: .background).async {
…

markcadag
- 271
- 5
- 3
0
votes
0 answers
Content sharing on amazon ios sdk for android not updating VideoTileDidAdd
I have implemented content sharing using Amazon Chime's SDK for ios. The screen is shared when I invoke the setContentSharing(true) but there is no video tile added to my application. When I navigate to some other screen after turning screen sharing…

MonkeyDLuffy
- 1
- 1
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…

Jasper2000
- 37
- 7
0
votes
0 answers
Screen Sharing and Meeting Recording using Amazon Chime SDK in react native
I have integrated amazon chime sdk with my react native application following this guide.
https://github.com/aws-samples/amazon-chime-react-native-demo
I am new to react native and have poor understanding of native development. I need to integrate…

MonkeyDLuffy
- 1
- 1
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…

Admir Husić
- 37
- 10
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,…