How can I get RTSP output through my own cloud server?

Hi, I’ve read the deepstream documention. It shows how to display rtsp output, but I didn’t make it. ( maybe I mistake the sample code, if so, could please anyone show me the right way? ).
If I want to see it from server. Should I install VLC plugin on my server?

I’using a CSI camera to do this. And I’ve run CSI camera output successfully.
Or could please tell me how to modify to make it output as RTSP?

Hi,
Please try to run the sample config file:

/opt/nvidia/deepstream/deepstream-6.0/samples/configs/deepstream-app/source8_1080p_dec_infer-resnet_tracker_tiled_display_fp16_nano.txt

If you can run it, please enable [sink2] and run again:

[sink2]
enable=0
#Type - 1=FakeSink 2=EglSink 3=File 4=RTSPStreaming
type=4
#1=h264 2=h265
codec=1
#encoder type 0=Hardware 1=Software
enc-type=0
sync=0
bitrate=4000000
#H264 Profile - 0=Baseline 2=Main 4=High
#H265 Profile - 0=Main 1=Main10
profile=0
# set below properties in case of RTSPStreaming
rtsp-port=8554
udp-port=5400

On the sever(assumed to be Linux system), you can install VLC player or run gstreamer command like:

$ export DISPLAY=:0(or 1)
$ gst-launch-1.0 uridecodebin uri='rtsp://__IP_ADDRESS_OF_JETSON_NANO__:8554/ds-test' ! xvimagesink

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.