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
0 answers

Geeting Error when we are using aws-chime-sdk-js with Angular, Cannot find name 'RecordingState'

I am working on Angular 12 and trying to integrate a feature of video calling, To achieve that I am using below libraries. But I am getting two errors for RecordingState; "amazon-chime-sdk-js": "^1.22.0", "amazon-connect-chatjs":…
tyler
  • 418
  • 4
  • 14
0
votes
0 answers

AWS Chime SDK mic and speaker not working on ios 15.6

I'm working on AWS chime SDK ReactJs, a video streaming chat application. the issue is in ios 15.6 mobile devices the speaker and mic not working. but once we update the iOS 16 it started to work fine. is this a known issue in AWS Chime SDK or an…
tharinducs7
  • 101
  • 1
  • 3
  • 15
0
votes
2 answers

How to integrate amazon chime sdk in Angular?

I am new in angular and having a task to integrate amazon chime sdk in an existing angular application. I have tried demos of chime sdk provided in git repository, but not able translate in my angular application. If anyone can provide me any…
Dash_PSR
  • 1
  • 4
0
votes
0 answers

How to get audio stream from html video element?

I have a video element in my HTML code. That video element plays a video (video is coming from AWS Chime SDK). I need to get the audio stream for the audio coming from that video element for analysis (eg. for generating transcriptions). Is it…
Arpit Shukla
  • 9,612
  • 1
  • 14
  • 40
0
votes
1 answer

videoTileWasRemoved() not being called after stopVideoInput() is called

When I call stopVideoInput() by clicking a button, on my side the video stops, but on the remote side the video just freezes instead of turning off completely. Using Chime SDK v3. videoTileDidUpdate(tileState: VideoTileState): void { const…
Clancinio
  • 734
  • 6
  • 21
  • 40
0
votes
1 answer

Chime SDK not available in some regions

I'm developing an integration between Aws Chime SDK and a Ruby on Rails web application, using the official aws ruby client. First of all, I try to create a Aws::ChimeSDKMeetings::Client passing my credentials and a valid aws region like…
Mr5he11
  • 353
  • 2
  • 8
0
votes
1 answer

AWS STS session token expired api request not retrying after refresh method called and updated credentials in javaScript

I am using @Chime-sdk and @Angular-12 using AWS STS token, which one will expired after 15 minutes. After Expired STS token AWS call refresh method so I used refresh() method to call my back-end api for new token then I re-assign all credentials,…
MD Ashik
  • 9,117
  • 10
  • 52
  • 59
0
votes
1 answer

Auto reply or auto messaging with amazon chime possible?

I want to write a small program, that allows me to reply or simply write a message at a certain time in the amazon chime app. I recently learned flutter and am learning now JavaScript. So at the moment this is to complicated for me to understand IF…
0
votes
1 answer

AWS Chime Audio Calling option

Does AWS Chime Provide a Separate Audio Calling option? And does Chime supports the below Options, Audio Call Video Call Screen share Phone Call SMS Recordings Merging Storage options Group calling Can anyone help on this?
0
votes
1 answer

Detect hardware acceleration in browser using javascript

Is there any library or inbuilt javascript using which we can check that the current browser has Hardware Acceleration feature ON or OFF? Right now I'm using Bodypix to set virtual background with chime meeting using react.js which needs hardware…
Dhara Charola
  • 332
  • 2
  • 12
0
votes
1 answer

How to send a private message to user on AWS Chime sdk?

I am using AWS Chime JS SDK and would like to send a private message to a user. By message I mean to show a popup modal to an specific user. I've been going through the documentation, but overall I have not found how to send messages to specific…
Gamoxion
  • 159
  • 1
  • 10
0
votes
1 answer

Connect to websocket to consuming amazon chime API in real time

I want to expand my software, written in JavaFX, with Amazon Chime API to consume its messaging. I know there's JS SDK that allows establish messaging websocket session with no problems. But in java SDK there're no related classes. So I want to use…
0
votes
1 answer

Handling /join in Aws-chime-sdk(nodejs)

I'm new on nodejs and I need to edit the example code of aws-chime-sdk to build my own security check before joining a meeting. On index portion, at handler.js, I have this code that works well: exports.index = async (event, context, callback) => { …
0
votes
1 answer

Cannot find module 'fs-extra' in aws chime

I am trying to build a video conferencing application using AWS chime. What I am trying to do is to follow the official documentation that…
0
votes
1 answer

How to create AWS chime presigned URL to generate web socket url for the Front end?

I am trying to generate a pre-signed web socket URL to get real time messaging notification for the AWS chime in the frontend as shown here . I planning to get this deployed as separate back end API using lambda. I followed exactly as shown here but…