RTSP Stream view using VLC Player

I’m trying to screen record my Jetson and send it out on an RTSP stream. This rtsp test launch works when viewing it on the same computer in a gstreamer pipeline:

./test-launch "ximagesrc use-damage=0 ! nvvidconv ! nvv4l2h265enc ! h265parse ! video/x-h265, stream-format=byte-stream ! rtph265pay name=pay0 pt=96 "
gst-launch-1.0 -v rtspsrc location=rtsp://127.0.0.1:8554/test ! application/x-rtp, media=video, encoding-name=H265 ! rtph265depay ! nvv4l2decoder ! nvvidconv ! xvimagesink

But on my windows computer when I try to view it using VLC media player using the network url rtsp://127.0.0.1:8554/test it says connection failed and your input can’t be opened

Hi,
Please replace 127.0.0.1 with IP of the Xavier NX like:

rtsp://__IP_OF_XAVIER_NX__:8554/test

How do I get the IP Address?

Hi,
Please execute $ ifconfig on Xavier NX.

When I run that I get a bunch of outputs including: wlan, usb, eth, rndis, lo, and docker. which IP do I use?

Edit:
found it, it was the inet property of wlan

1 Like

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