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.
Questions tagged [amazon-kinesis-video-streams]
86 questions
0
votes
1 answer
How to deploy the kinesis-video-producer Docker image from AWS's own ECR to Fargate using CDK in TypeScript?
I'm trying to stand up a proof of concept that ingests an RTSP video stream into Kinesis Video. The provided documentation has a docker image all set up that seems to have everything I need to do this, hosted by AWS on…

Leon Spencer
- 65
- 5
0
votes
0 answers
Hardware codec input to twilio webrtc
I'm looking to feed Output from Hardware encoder (H264) to twilio webrtc. Is this possible at all ? Any sample code is helpful.
I've run similar sample code from AWS kinesis video streams. It lets you feed H264 encoded frames:…

SBakki
- 5
- 4
0
votes
0 answers
How to read a RTMP stream and send it to Kinesis Video Stream?
I'm trying to read a RTMP video stream (followed this) and send it to Kinesis Video Stream with the GStreamer plugin dockerized with this command:
gst-launch-1.0 rtmpsrc location=rtmp://172.17.0.2/live/test \
! decodebin ! videoconvert \
!…

Kambei
- 458
- 9
- 23
0
votes
1 answer
NTP Timestamp in RTCP Sender Report is Incorrect
I'm using Amazon's sample code to upload a rtsp stream from an IP camera to Kinesis video streams. Code found here: https://github.com/awslabs/amazon-kinesis-video-streams-producer-sdk-cpp/blob/master/samples/kvs_gstreamer_sample.cpp
I would like to…
0
votes
0 answers
I am having trouble in running the KinesisVideoRekognitionLambdaExample.java in stream parser library
I am getting compile errors and "Build Failure" errors when I run this code 'https://github.com/aws/amazon-kinesis-video-streams-parser-library#kinesisvideorekognitionlambdaexample'
I tried the steps mentioned SS of steps to run the code.
I am…

pooja161
- 1
- 2
0
votes
0 answers
Show server timeStamp on a video player published by amazon kinesis video stream
I'm using amazon kinesis video stream and video.js.
With GetHLSStreamingSessionURL function, I can stream the video at a video player created by video.js.
But, Comparing to the preview at amazon kinesis video stream dashboard, there is no server…

Hiromu Sasaya
- 11
- 1
0
votes
1 answer
Webrtc to GStreamer pipeline cause non-strictly-monotonic PTS error
I am new to Gstreamer framework and really need help with this issue. I am trying to stream webrtc video from browser webcam to backend system whereby I want to capture and process webrtc video (ignore audio). There's no issue when browser and…

Farooq Zaman
- 495
- 1
- 6
- 21
0
votes
0 answers
How to play MVK bytes using python
I am trying to use python to read audio from AWS Kinesis Video Stream.
I have followed the sample here
import boto3
client = boto3.client('kinesis-video-media')
response = client.get_media(
StreamARN='string',
StartSelector={
…

Abilash Amarasekaran
- 817
- 2
- 10
- 26
0
votes
0 answers
Convert Kinesis Vides Stream /GetMedia result into audio file - node.js
Currently, I'm trying to convert a response of Kinesis Vides Stream GetMedia API to an audio file but have had no success in this. According to AWS documentation, - result of GetMedia request? it's recommended to use Kinesis Video Stream Parser…

user15380685
- 41
- 2
0
votes
1 answer
Is there a way to send audio from two different sources trough one peer (WebRTC)
I'm trying to send the mic audio alongside with a audio file (two different tracks) using one stream. How can I properly do it using JS?
0
votes
1 answer
Kinesis Video Streaming is Not Working for Specific Cameras
I am using Kinesis Video Streaming for a solution and I am facing some problems with few RTSP sources. To all rtsp sources I am also validating on VLC and it is working well, except for a huge delay to start to stream the video.
I am using…

Winner Martins
- 71
- 4
0
votes
1 answer
Lack of images property in response from Kinesis Video Streams / GetImages retrieved by aws-sdk-js-v3
Body of the handler:
const one: ValidatedEventAPIGatewayProxyEvent = async (event) => {
const input = {
"EndTimestamp": new Date(1653843539000),
"Format": "JPEG",
"ImageSelectorType": "PRODUCER_TIMESTAMP",
…

DarekW
- 21
- 6
0
votes
1 answer
Unable to setup amazon-kinesis-video-streams-producer-sdk-cpp in Windows
I am a newcomer and I am struggling to setup amazon-kinesis-video-streams-producer-sdk-cpp in my Windows laptop. I am running this command:
cmake .. -G "Visual Studio 17 2022" -DBUILD_GSTREAMER_PLUGIN=ON -DBUILD_JNI=TRUE
but getting an error:
--…

Avinandan
- 61
- 1
- 2
0
votes
1 answer
How to send only video (mp4) to stream to kinesis-video-stream
when I am trying to send a video sample that I downloaded from the internet, which has both AAC and H-264 codecs the following command is working fine. but when I generated the mp4 file using OpenCV which has only the H-264 codec and no AAC as there…

cerofrais
- 1,117
- 1
- 12
- 32
0
votes
1 answer
How can I build amazon kinesis webrtc sdk in C on windows - missing header files
I'm trying to build WebRTC SDK in C for Embedded Devices on windows.
I have configured using CMake with -DBUILD_DEPENDENCIES=0, and have installed various libraries manually such as pthreads, usrsctp, libssl etc.
I don't have gstreamer installed, so…

mike
- 1,192
- 9
- 32