-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Hi,
I am running the following pipeline on my ARM board and sending the stream to an RTSP server:
gst-launch-1.0 pylonsrc ! video/x-raw, width=1920, height=1080,format=GRAY8 ,framerate=30/1 ! videoconvert ! queue ! x264enc bitrate=26000 speed-preset=ultrafast tune=0 ! video/x-h264,profile=main ! rtspclientsink protocols=tcp location=rtsp://127.0.0.1:8554/video
But when the pipeline runs for a while, showing the GStreamer logs, I see the following error displayed:
pipelinertsp-1 | 0:31:41.651594358 1 0xaaaaea351b00 WARN pylonsrc gstpylonsrc.cpp:989:gst_pylon_src_create: error: Failed to create buffer.
pipelinertsp-1 | 0:31:41.651768365 1 0xaaaaea351b00 WARN pylonsrc gstpylonsrc.cpp:989:gst_pylon_src_create: error: Read operation failed.
pipelinertsp-1 | 0:31:41.651863744 1 0xaaaaea351b00 INFO GST_ERROR_SYSTEM gstelement.c:2234:gst_element_message_full_with_details: posting message: Failed to create buffer.
pipelinertsp-1 | 0:31:41.651966998 1 0xaaaaea351b00 INFO GST_ERROR_SYSTEM gstelement.c:2261:gst_element_message_full_with_details: posted error message: Failed to create buffer.
pipelinertsp-1 | 0:31:41.652013375 1 0xaaaaea351b00 INFO basesrc gstbasesrc.c:2913:gst_base_src_loop: pausing after gst_base_src_get_range() = error
pipelinertsp-1 | 0:31:41.652109504 1 0xaaaaea351b00 WARN basesrc gstbasesrc.c:3127:gst_base_src_loop: error: Internal data stream error.
pipelinertsp-1 | 0:31:41.652130255 1 0xaaaaea351b00 WARN basesrc gstbasesrc.c:3127:gst_base_src_loop: error: streaming stopped, reason error (-5)
pipelinertsp-1 | 0:31:41.652227259 1 0xaaaaea351b00 INFO GST_ERROR_SYSTEM gstelement.c:2234:gst_element_message_full_with_details: posting message: Internal data stream error.
pipelinertsp-1 | 0:31:41.652311888 1 0xaaaaea351b00 INFO GST_ERROR_SYSTEM gstelement.c:2261:gst_element_message_full_with_details: posted error message: Internal data stream error.
pipelinertsp-1 | 0:31:41.652431518 1 0xaaaaea351b00 INFO task gsttask.c:368:gst_task_func:pylonsrc:src Task going to paused
pipelinertsp-1 | 0:31:41.745229647 1 0xaaaaea351b60 INFO rtprtxsend gstrtprtxsend.c:618:gst_rtp_rtx_send_sink_event: Got EOS - enqueueing it
My camera is Basler daA3840-45uc (USB Model).
What could be the reason for this error given by the pylonsrc source?