I have a little project where I try to make a low latency video stream from a raspberry pi to a PC. Here for I’m trying Gstreamer. Now I have a working Pipeline on windows with the following command on the pi:
gst-launch-1.0 -v v4l2src device=/dev/video2 ! "image/jpeg,width=1280, height=720,framerate=30/1" ! rtpjpegpay ! udpsink host=192.168.1.94 port=5004
And on the windows receiving site:
gst-launch-1.0 -e -v udpsrc port=5004 ! application/x-rtp, encoding-name=JPEG,payload=26 ! rtpjpegdepay ! jpegdec ! autovideosink
Windows client waiting for server
Windows client and server connected
_
Bud when I try to use the same command on ubuntu it looks like it makes connection bud it won’t open a window with the render.
Ubuntu client waiting for server
Ubuntu client and server connected
Can someone help me get this to work?
Thank you in advance.