Questions tagged [amazon-kinesis-video-streams]

Kinesis Video Streams accepts your incoming streams, stores them durably and in encrypted form, creates time-based indexes, and enables the creation of vision-enabled applications.

86 questions
6
votes
0 answers

Unable to recover audio from Amazon Connect via kinesis video client in boto3 in Python

I'm trying to get an audio file from kinesis video stream in Python in AWS-Lambda instance. To get the audio i'm using this snippet of code: def download_stream(self, streamARM, ms_start_timestamp): tmpfile = os.path.join('/tmp',…
vgonisanz
  • 11,831
  • 13
  • 78
  • 130
5
votes
0 answers

How to Stream Video to "Kinesis Video Stream" from phone camera accessed on browser using Javascript

Use case: Multiple users login into the web portal to stream video over a web browser using their phone camera. The phone Camera (Producer) is accessed using HTML5/Javascript, which streams the video to KVS (Kinesis Video Stream), there are multiple…
4
votes
1 answer

Azure media services price calculation

I want to use azure media services for video streaming but the azure docs are quite ambiguous regarding the pricing. Kindly let me know: what are Streaming units How do we calculate the cost with streaming units? What is the data transfer cost and…
4
votes
1 answer

Spring Boot Video Streaming from S3 Bucket

I want to create a youtube like Video streaming application but in a small scale. I am using Spring boot for backend rest endpoints and amazon S3 bucket for storing video files. I am able to upload and download video files to S3 bucket. But I am…
4
votes
2 answers

Save the video while making a video call using AWS Kinesis Video stream with WebRTC

Im using aws kinesis video stream webRTC for making a video chat in reactjs .Everything is working fine.But i want to store the video in s3 bucket.How should i implement this video storage?
3
votes
0 answers

How to convert byte[] Array format Images into H.264 video compression format to push to AWS Kinesis Video stream

I'm developing application and will be getting continuous byte[] format images and need to convert to H.264 video compression video and need to push to AWS Kinesis Video stream. Could you please let me know how we can do it in Java or is there any…
3
votes
0 answers

How do I rescue my WebRTC connection when my SDP offer is swallowed?

I'm using AWS Kinesis Video Signalling Channels to set up a WebRTC connection, with help from the Amazon Kinesis Video Streams WebRTC SDK for JavaScript (on whose repo I have cross-posted this question:…
2
votes
0 answers

Get live video from Amazon KVS

I am trying to get live video stream from the Amazon KVS to show in a dashboard board that I am building using React. I am very new to this (Amazon KVS)ecosystem and have no idea about how things work hence asking you good folks here. I tried…
2
votes
1 answer

how to stream microphone audio from browser to S3

I want to stream the microphone audio from the web browser to AWS S3. Got it working this.recorder = new window.MediaRecorder(...); this.recorder.addEventListener('dataavailable', (e) => { this.chunks.push(e.data); }); and then when user clicks…
2
votes
0 answers

How to record and stream video from local device webcam(like laptop or PC) and store that video in AWS S3?

I'm currently developing a web application in ReactJS, where a user can record a session with his webcam and stream it to AWS infra. I have come across Amazon Kinesis Video Streams with WebRTC. Whereby creating SignalingChannel a user can stream…
2
votes
1 answer

WebRTC signalling succeeds but no video is coming through

I am trying to setup a video stream from a robot using WebRTC. As far as I can tell, the signaling establishes a connection successfully, however no video is being streamed. I use AWS Kinesis Video as the signaling server, and I use the AWS Kinesis…
morras
  • 1,102
  • 9
  • 24
1
vote
0 answers

InvalidStateError: Failed to execute 'send' on 'RTCDataChannel': RTCDataChannel.readyState is not 'open'

I have an application NodeJs with typescript having AWS Kinesis Video Streams WebRTC SDK. Link: https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js In this application i have a chat module (dataChannnel) with 2 connection (Master…
1
vote
0 answers

Error received from element source: Could not open resource for reading and writing

I'm trying to stream a CCTV camera with RTSP URL using Amazon Kinesis Video Streams. I've tested the URL in VLC Player and it works fine there. Have also tested the same using ffplay. The command that I'm using is this. AWS_ACCESS_KEY_ID=myAccessKey…
1
vote
1 answer

Ingest video by Edge connector Kinesis video streams or ProducerSDK?

I want to ingest videos and datas from IoTCar. I will install greengrass core to car's edge gateway. According to aws docs, I found two ways to deal with this.   1, Using stream manager to ingest data and export to kinesis data streams; Using edge…
1
vote
0 answers

How to forward and backward the WebRTC stream video in android?

I am developing an application having amazon-kinesis-video-webrtc SDK for android. I am able to play the live stream video in the app. Also I am able to play and pause the video using remoteView.disableFpsReduction(); and remoteView.pauseVideo();.…
1
2 3 4 5 6