Changing RTSP output name from "ds-test" to something else

DS 5.0
Jetson Nano

Hi,
Is it possible to change the RTSP output name of deepstream-app from “ds-test” to “x”?

1 Like

It is possible to change the rtsp url from “ds-test” to your preferred names. But it requires to rebuild the sample apps.
The name is set in “start_rtsp_streaming()” function with “gst_rtsp_mount_points_add_factory (mounts, “/ds-test”, factory);”.
The source file is SDKdir/source/apps/apps-common/src/deepstream_sink_bin.c

2 Likes

Thanks