Hi,
Some of our cameras require that we do not use an RTSP request to stream as they are already streaming via multicast to a different server. I have successfully got video streaming working in this scenario using a pipeline like the following:
gst-launch-1.0 udpsrc uri=udp://239.0.0.57:5028 caps=“application/x-rtp,media=video,clock-rate=90000,encoding-name=H264” ! rtpjitterbuffer ! rtph264depay ! h264parse ! decodebin ! videoconvert ! autovideosink
(although I am doing this in code instead).
Can anyone advise me on how to get audio as well - and this would need to be in sync using the pts values and RTCP sender reports as is usual for video/audio via RTSP.
(typically in this case audio would be the same multicast address and the port would be video port + 2)
Thanks for any help,
Gareth