[BUG] ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Internal data stream error. #980
-
Logging Describe the bug I want to stream video from my laptop's integrated camera to AWS KVS via this cpp sdk. I used this command from https://github.com/awsdocs/AWS-Kinesis-Video-Documentation/blob/master/doc_source/examples-gstreamer-plugin.md:- Example 2: Encode and Stream Video from a USB Camera on Ubuntu:- $ gst-launch-1.0 v4l2src do-timestamp=TRUE device=/dev/video0 ! videoconvert ! video/x-raw,format=I420,width=640,height=480,framerate=30/1 ! x264enc bframes=0 key-int-max=45 bitrate=500 ! video/x-h264,stream-format=avc,alignment=au,profile=baseline ! kvssink stream-name="YourStreamName" storage-size=512 access-key="YourAccessKey" secret-key="YourSecretKey" aws-region="YourAWSRegion" After using v4l2-ctl --list-devices, my devices also show in output, but i am getting this error:- Here is an output of gst-device-monitor-1.0:- Please help me in resolving this issue. OS:- Windows 11 with Oracle VirtualBox 6.1.40 with Ubuntu 22.04 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
This is likely a source error and not related to KVS. Please try using your source in a GStreamer pipeline set up with other sinks to verify your source is able to reliably stream. Feel free to reopen if you face the issue only while using kvssink, but works with other sinks. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Hi @Karthiktmv, What @disa6302 is suggesting is to try a different sink, like
|
Beta Was this translation helpful? Give feedback.
@Karthiktmv ,
This is likely a source error and not related to KVS. Please try using your source in a GStreamer pipeline set up with other sinks to verify your source is able to reliably stream. Feel free to reopen if you face the issue only while using kvssink, but works with other sinks.