Stream live to video windows computer

Hi,
I am trying to stream a live video from my jetson nano connected to a raspberry pi v2 camera to my windows computer. Does anyone have any solutions?

the most common solution is to use gstreamer rtsp;
at windows recieve it with VLc player specifying the jetsons ip address & stream name

sudo apt-get install libgstrtspserver-1.0 libgstreamer1.0-dev
wget https://gstreamer.freedesktop.org/src/gst-rtsp/gst-rtsp-server-1.14.1.tar.xz
tar -xvf gst-rtsp-server-1.14.1.tar.xz
cd  gst-rtsp-server-1.14.1
cd examples
gcc test-launch.c -o test-launch $(pkg-config --cflags --libs gstreamer-1.0 gstreamer-rtsp-server-1.0)
./test-launch "nvarguscamerasrc ! video/x-raw(memory:NVMM), format=NV12, width=3820, height=2464, framerate=21/1 ! nvvidconv ! video/x-raw, width=3820, height=2464, format=NV12, framerate=21/1 ! omxh265enc ! rtph265pay name=pay0 pt=96 config-interval=1"

Hi,
Does that method work for a CSI camera though?

Hi,
You can set up RTSP server through test-launch and decode with gst-launch-1.0 rtspsrc. Please refer to