I want to stream the screen of my computer to and other using gstreamer and generate an rtsp adresse to use in Opencv. I try few example to stream webcam between computers and it works properly: Command on the remote computer gst-launch-1.0 -v v4l2src device=/dev/video1 ! "image/jpeg,width=1280, height=720,framerate=30/1" ! rtpjpegpay ! udpsink host=192.168.1.17 port=5001 Command on the local computer gst-launch-1.0 -e -v udpsrc port=5001 ! application/x-rtp, encoding-name=JPEG,payload=26 ! r...