Streaming videos on kinesis using kvssink

0

Hello, I'm attempting to stream my video on Kinesis using the kvssink command, but I'm encountering an error that says "WARNING: erroneous pipeline: no element 'kvssink'". Despite installing all the GStreamer plugins, the kvssink element is still missing. Can you assist me with this issue?

Enter image description here

asked a month ago114 views
2 Answers
1
Accepted Answer

Kvssink requires at least GStreamer 1.14.

Verify that the Kinesis Video GStreamer plugins are installed correctly. You can run gst-inspect-1.0 | kvssink to validate.

Make sure the AWS credentials/configuration being used by your application have the necessary permissions to access Kinesis Video Streams.

Try simplifying your GStreamer pipeline to a basic source-kvssink test case to isolate the issue. For example:

gst-launch-1.0 videotestsrc ! kvssink stream_name=test-stream

https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/examples-gstreamer-plugin-parameters.html

profile picture
EXPERT
answered a month ago
profile picture
EXPERT
reviewed a month ago
  • Thank you very much for your help. It has finally worked.

0

The information you provided, particularly the documentation, was incredibly helpful. Thanks to it, I managed to successfully stream my video. Thank you for your assistance.

answered a month ago
profile picture
EXPERT
reviewed 23 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions