RTSP multicast receiving

I’m trying to receive RTSP multicast streaming with using GStreamer pipeline.
What do I need to set parameter? (multicast group, protocols and so on)

Hi,
Please try rtspsrc plugin. There are examples:
https://devtalk.nvidia.com/default/topic/1014789/jetson-tx1/-the-cpu-usage-cannot-down-use-cuda-decode-/post/5188538/#5188538
https://devtalk.nvidia.com/default/topic/1043770/jetson-tx2/problems-minimizing-latency-and-maximizing-quality-for-rtsp-and-mpeg-ts-/post/5295828/#5295828

Thank you for your reply, DaneLLL.

I had already tried pipeline using rtspsrc.
But I could not capture.
The messages is as followings.

Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Progress: (open) Opening Stream
Progress: (connect) Connecting to rtsp://XXX.XXX.XX.XXXX/YYYY
Progress: (open) Retrieving server options
Progress: (open) Retrieving media info
Progress: (request) SETUP stream 0
0:00:00.224860938 10450   0x5576e9e4f0 ERROR                rtspsrc gstrtspsrc.c:7304:gst_rtspsrc_open_from_sdp:<rtspsrc0> setup failed
ERROR: from element /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0: Could not write to resource.
Additional debug info:
gstrtspsrc.c(7023): gst_rtspsrc_setup_streams_start (): /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0:
Error (400): Bad Request
ERROR: pipeline doesn't want to preroll.
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...

And I set port-range property of rtspsrc, then PLAY command is sent to rtsp multicast source.
But my jetson did not seems to capture any packet.
I tested “gst-lauch-1.0 rtspsrc location=<RTSP_PATH> port-range=XXX-XXX ! fakesink dump=TRUE”
but it did not dump anything.

Hi,
For further suggestion, we would suggest you go to http://gstreamer-devel.966125.n4.nabble.com/

These required plugins are in gstreamer frameworks and gstreamer users can have more experience on it and share useful suggestion. You may get it working with software decoder(such as avdec_h264) first, and then replace with hardware decoder(nvv4l2decoder) to get better performance.