GUDDU KUMAR
GUDDU KUMAR

Reputation: 401

Write frames to kinesis video stream using java

I am using aws lambda for processing the frame, which generates png image sequences as output. i want to push these processed frames to amzaon kinesis-video-stream. how to do it in java?

Upvotes: 1

Views: 926

Answers (2)

GUDDU KUMAR
GUDDU KUMAR

Reputation: 401

I found the way, we can not directly push png or jpg format to kvs,as kinesis video stream takes only h264 format video fragments, so first we need to convert the list of images into video(you can use ffmpeg to convert from image to video) and then send the same mkv video file using putmedia api to kinesis video stream. you can see the example here in java.

Upvotes: 3

sudhir tataraju
sudhir tataraju

Reputation: 1389

On your lambda screen left side of you and right side of the screen you can find KVS kinesis video stream, I know only this much

Upvotes: 0

Related Questions