RTSP streaming with GStreamer
hemant at mnkcg.com
hemant at mnkcg.com
Wed Oct 19 10:17:03 UTC 2016
Sebastian,
Thanks much!
It was a while back that I actually downloaded the source code (gstreamer-1.9.1), built it, and installed it on my Linux machine. However, I do not see gst-rtsp-server nor gst-launch-1.0 in any of my build directories or other paths on Linux. Which other modules do I download so that I get gst-rtsp-server and gst-launch-1.0? I would prefer to download the source, build it, and get gst-rtsp-server and gst-launch-1.0.
Thanks,
Hemant
-----Original Message-----
From: gstreamer-devel [mailto:gstreamer-devel-bounces at lists.freedesktop.org] On Behalf Of Sebastian Dröge
Sent: Wednesday, October 19, 2016 2:08 AM
To: Discussion of the development of and with GStreamer <gstreamer-devel at lists.freedesktop.org>
Subject: Re: RTSP streaming with GStreamer
Check the examples in gst-rtsp-server/examples. You can do e.g.
./test-launch "( filesrc location=test.264 ! h264parse ! rtph264pay name=pay0 pt=96 )"
for starting an example server, and then use
gst-launch-1.0 playbin uri=rtsp://127.0.0.1:8554/test
to play it. Note that this listens on all IPs of your machine by default, so you can as well use a public IPv4 or IPv6 address.
Also keep in mind that test-launch is an example. You want to integrate that in one way or another into your application.
More information about the gstreamer-devel
mailing list