Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GStreamer pipeline to show an RTSP stream

I am pretty new to Gstreamer.

I need to write a video client able to stream data from an RTSP source using GStreamer. I configured VLC to stream a video I have on my laptop using RTSP and I want to create a pipeline to get that stream and show it. I tried using playbin and everything works fine. The point is that I need to fine tune the latency used to stream the video but it seems I cannot do that with playbin.

I tried rtspsrc because it allows to work on the latency but I don't know how to show the video on any window. That's the pipeline I created:

gst-launch-1.0 rtspsrc location=rtsp://localhost:8554/test latency=300 ! decodebin ! autovideosink

I get the error "streaming task paused, reason not-negotiated (-4)".

I tried different pipelines after deeply looking on the internet but I definitely miss something. How can I write a gstreamer pipeline to show a video from RTSP?

The final goal is to have a pipeline which can be adjustable at least in terms of latency, so I have two choices:

  • set the latency of playbin element, if possible. (This element correctly shows the video)
  • Show the video with the correct pipeline since rtspsrc allows me to set the latency.

I use Xubuntu 16.04, gstreamer-tools-1.0 (used 0.10 as well) and the video I stream with VLC has mp4 extension.

like image 202
Matteo Sticco Avatar asked May 24 '17 13:05

Matteo Sticco


1 Answers

you can adjust the latency by setting the right property and using playbin component:

gst-launch-1.0 -v playbin uri=rtsp://localhost:8554/test uridecodebin0::source::latency=300

Hope you find this useful :)

like image 150
Daniele Costarella Avatar answered Oct 03 '22 15:10

Daniele Costarella