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

Fix audio/video sync on AWS Kinesis stream (Gstreamer on Rapsberry Pi)

I wonder if anyone is able to help with this conundrum...? On a RPi 4, running the AWS Labs WebRTC SDK's sample app (https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/blob/master/samples/kvsWebRTCClientMasterGstreamerSample.c) I…
1
vote
0 answers

Android AWS Kinesis Video Stream: Access to Identity 'us-east-1:xxxxxx' is forbidden

I am trying to connect my app with the AWS Kinesis Video Stream console. I take this aws document as a reference and try to run this official sample app. But every time I try to stream video, app crashes with a NotAuthorizedException exception where…
1
vote
0 answers

Kinesis :: bounding boxes on aws kinesis live video stream and play the video from front-end react.js app

I am working on an application which will detect faces from live stream. I have a front-end application in react.js and backend is serverless AWS which will call rekognition api to detect faces and return co-ordinates of bounding boxes of the…
1
vote
1 answer

How to concatenate clips getting from Kinesis Video Stream in Java

I'm using AWS Kinesis Video Stream service to get my video recordings. So due to the Kinesis Video Stream fragment limitation, it turns out I can only retrieve up to ~30 minutes video at one request. And I was intend to retrieve a 2 hour video. So I…
1
vote
2 answers

Cannot download the video clip from kinesis

I am using the below code, in order to download the clip. I have successfully received the response and I am trying to download the video but I cannot be able. const completeUrl = url + "/getClip"; const res = await client.post(completeUrl, params,…
1
vote
0 answers

Can I send Kinesis Video Stream Signaling channel to KVS Video Stream?

Streaming by WebRTC using this tutorial https://docs.aws.amazon.com/kinesisvideostreams-webrtc-dg/latest/devguide/kvswebrtc-sdk-js.html is quite simple. I'm trying to establish whether it is possible to send the stream from the Kinesis Video Stream…
DarekW
  • 21
  • 6
1
vote
0 answers

Does amazon-kinesis-video-streams-webrtc-sdk-js support javascript v3 or AWS Kinesis Video Client SDK v3?

I tried to check with AWS on Github. Issue: https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js/issues/153 but, did not get a reply on it. Based on their documentation it says, its supports AWS SDK v2.5. However, we are trying to…
1
vote
1 answer

How can we stream videos to aws kinesis stream with flutter?

So I want to stream videos to Kinesis stream from flutter. I have searched through the kinesis documents but couldn't find any SDKs available for flutter. Is there any library available to do it? Or if anyone has done it before, would really…
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 send live video captured from opencv in django to aws kinesis-video-streams putmedia endpoint?

To achieve: capture the live feed of a camera in web browser using OpenCV and send it to AWS Kinesis-video-stream(an aws service) using PUT_MEDIA(end_point). Have referred Amazon AWS Kinesis Video Boto GetMedia/PutMedia and made a few changes to…
sam pk
  • 23
  • 5
1
vote
0 answers

H264 fragments to Image Files

first time here so be gentle. I followed following: H264 ByteStream to Image Files with this, I am able to correctly generate an image for the very first fragments. However, when I am trying for the subsequent fragments (.h264), I am getting…
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

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