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.

46 questions
5
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,352
  • 12
  • 74
  • 123
2
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?
1
vote
0 answers

Always getting wrong rotation in Streaming page while using the AWS kinesisvideo

I am using the below code for setting CameraMediaSourceConfiguration static return AndroidCameraMediaSourceConfiguration( AndroidCameraMediaSourceConfiguration.builder() .withCameraId("0") …
1
vote
0 answers

Video rotation always wrong by using AndroidCameraMediaSourceConfiguration (AWS)

In KinesisVideoClient for creating media source by using AndroidCameraMediaSourceConfiguration. it has camera orientation option but i doesnt work -- Streaming video getting rotated withCameraOrientation(-90) -- it has default value -- i am trying…
1
vote
1 answer

How to intergrate IP-Camera with kinesis-video-streams-webrtc-sdk sample code?

I am willing to use this https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js for accessing KVSWebRTC for our onsite camera video streaming. I want to run this code on the server which is reading the camera stream (rtsp) from a…
1
vote
0 answers

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…
1
vote
0 answers

Live streaming USB camera to AWS Kinesis-Video-Stream using 'PutMedia' API

I am using python to live stream USB camera directly to kinesis-video-stream. While trying to implement 'PutMedia' API from aws (link), although I was able to upload a locally stored video referring to the following code here. Here is my slightly…
1
vote
1 answer

How can you effectively pull an Amazon Kinesis Video Stream for custom python processing?

I have an RTSP stream streaming to Amazon Kinesis Video Streams. I want to be able to run custom image processing on each frame of the stream. I have the custom image processing algorithm written in python, so naturally I want to be able to pull the…
1
vote
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
  • 791
  • 4
  • 15
1
vote
0 answers

SFU with Kinesis video stream SDK js

I built a React.js and Node.js app, inspired by KVS example . It is working for a few participants, a Master can stream his webcam video & audio via WebRTC, and get every viewer webcam video. But we realized it won't be suitable for 50 people as the…
1
vote
0 answers

Amazon Rekognition Video is NOT detecting a specific person, but every one else works fine

I'm using rekognition video to detect faces in a stream coming from a raspberry pi 4. I use kinesis video stream with gstreamer plugin to send the stream from the raspi to the rekognition stream processor and then read the response from the kinesis…
1
vote
1 answer

Can we record browser screen with AWS Kinesis video streams with WebRTC?

Can we send MediaStream directly to Kinesis Streams with WebRTC? From the example code it looks like we can, I'm completely lost here. If we can send getDisplayMedia to Kinesis, will we be able to persist the recording to S3, if so, how do we do…
1
vote
0 answers

Amazon kinesis video webrtc group video chat

I need to create group chat using amazon kinesis video webrtc sdk as a reactjs app. I tried it but i have no idea about it. Do any one have a idea about it.
1
vote
1 answer

GetMedia does not return payload with AWS MKV tags?

I'm trying to create my own stream parser using the Kinesis Video Stream library. I'd like to parse the fragments and then write an .mkv to disk. Per the example, I'm trying to use the FragmentMetadataVisitor to get the next fragment number to do a…
0
votes
0 answers

Signer url AWS Kinesis video stream webrtc using java

I would like to sign an url in order to authenticate request using AWS KVS webrtc. I read this documentation using nodejs. I want to execute this example, but using signerUrl instead of accessKeyId/secretAccessKey. Is there a way/example to create…
1
2 3 4