[DS4/Jetson Nano] More details on how to setup RTSP sink

Hi,

I have ported my custom detector model on DS4, now next want to use RTSP as a sink so that Jetson can be run in headless mode.
Done below change in the config file

[sink2]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File 4=RTSPStreaming
type=4
#1=h264 2=h265
codec=1
sync=0
#iframeinterval=10
bitrate=400000

set below properties in case of RTSPStreaming

rtsp-port=8554
udp-port=5400

and launched the deepstream-app with the config

On the other terminal just to confirm that RTSP out is working or not typed in below command

ffplay rtsp://127.0.0.1:8554

But it errored out as below

[rtsp @ 0x7feddc000b80] method DESCRIBE failed: 404 Not Found=0/0
rtsp://127.0.0.1:8554: Server returned 404 Not Found

Is there specific something which I am unaware of to setup RTSP out successfully !!

Regards
Pallab Sarkar

Found the streaming endpoint URL from below logs
*** DeepStream: Launched RTSP Streaming at rtsp://localhost:8554/ds-test ***

Now it’s working !!!