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
0
votes
1 answer

Kinesis Firehose Lambda Transformation and Dynamic partition

The following data presented is from the faker library. i am trying to learn and implement dynamic partition in kinesis Firehose Sample payload Input { "name":"Dr. Nancy Mcmillan", "phone_numbers":"8XXXXX", "city":"Priscillaport", …
0
votes
0 answers

How to connect to kinesisvideo from ec2

I have a web app deployed to an ec2 instance. It uses the DefaultAWSCredentialsProviderChain and works from local PC however, it is getting an error when it is connecting to kinesisvideo from the ec2 instance. I have assigned the IAM role…
0
votes
1 answer

How to stream video from multiple camera using AWS kinesis video stream?

I'm using Gstreamer for streaming video to AWS kinesis video stream, I was able to stream video from webcam, but my question how can we stream with multiple camera for computer vision applicatios? should we use any other plugins?
0
votes
2 answers

How to start WebRTC call with AWS Kinesis as Master

I'm trying to start a WebRTC call with AWS Kinesis, but the demo on The AWS Kinesis Javascript docs only shows how to join the call as a VIEWER not the MASTER. I can't find a clear example anywhere online, and I've spent hours on it with my…
0
votes
1 answer

How to use AWS WebRTC signed url in the frontend?

The aws repo https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js provides the backend code to generate a presigned url. I was able to log it and it looks like this (modified by adding/removing some characters to avoid…
0
votes
1 answer

How to handle the gstreamer in "AWS Kinesis Video Stream(kvs) -> gstreamer+opencv image processing -> kvs " process?

I would like to create the pipeline like the image below; https://i.stack.imgur.com/Nb17P.png GSTREAMER_OUT = ' ! '.join([ 'appsrc', 'queue', f'video/x-raw,format=BGR,width={frame_width},height={frame_height}', …
0
votes
1 answer

AWS Kinesis Video Streams - Producer SDK Java - JNI Exception

I want to stream from my webcam to Kinesis Video Streams. I have been reading the documentation and following the AWS tutorials. After starting the DemoAppMain with the command: java -classpath…
0
votes
0 answers

How to split base64 string data to chunks less than 1 mb for aws kinesis put stream api?

I am trying to send data of blob by converting into base 64 but my base 64 data is more than 9mb for each interval of video. I need to split that data to less than 1 megabyte to send it to kinesis put stream. please help if any one of you has…
0
votes
0 answers

AWS KVS stream issue with Angular

I used AWS KVS with Angular 9, When I am trying to get stream on PlaybackMode "ON_DEMAND", stream coming as a res is not equals to the TimestampRange I have sent. If I am sending TimestampRange of 1 hour, am getting only 12-16 mins of stream. Why is…
0
votes
1 answer

Recording multiple RTSP streams h265 format to Kinesis Video Streams using Gstreamer and Kvssink

I need to record 4 RTSP streams into a single stream of the Kinesis Video Streams. Streams must be placed in the video like this: ---------- ---------- | | | | STREAM 1 | STREAM 2 | | | …
0
votes
1 answer

AWS Quickstart Onica Camera Connector guide : failed to create CloudFormation stack

I am trying to use AWS quickstart-onica-connected-camera guide in order to stream camera videos to AWS Kinesis, but while creating stack using cloudformation template ,it leads to following error: The following resource(s) failed to create:…
0
votes
1 answer

GStreamer - my environment must be fouled

Ultimately I'm trying to use AWS Kinesis Video Streams. I followed the instructions, built the cpp producer plug-in succssfully but then basic gstreamer functions don't seem to work correctly. It's certainly possible that I messed up the…
jduff1075
  • 380
  • 1
  • 3
  • 15
0
votes
1 answer

Aws rekognition video streams

I'm a newbie. Is aws rekognition video stream (streaming using kinesis vs) able to recognize objects like its images-based counterpart? This is probably obvious but I was not able to find any evidence online of this. Any helpful resource is much…
0
votes
1 answer

gstreamer playbin3 to kinesis pipeline: audio stream missing

Firstly, big thanks to the gstreamer community for your excellent software. I'm trying to use gstreamer to consume a DASH/HLS/MSSS stream (using playbin3) and restream to AWS Kinesis video: gst-launch-1.0 -v -e \ playbin3…
0
votes
1 answer

How to re-stream local RTSP from iOS device to the outside of local network?

I need to stream/push local IP camera's video stream to the outside of network. It could be wowza, P2P, Kinesis or just a basic server that stores/consumes the stream. It seems like I would need a media server on iOS but I don't seem to be able to…