Stream webcam video with gstreamer 1.0 over UDP to PC
Im trying to stream video from a Raspberry Pi (on Raspbian) to a Windows 7 PC like in this video: https://www.youtube.com/watch?v=lNvYanDLHZA I have a Logitech C270 connected to the Raspberry Pi, and have managed to stream webcam video over TCP using: gst-launch v4l2src device=/dev/video0 ! \ 'video/x-raw-yuv,width=640,height=480' ! \ x264enc pass=qual quantizer=20 tune=zerolatency ! \ rtph264pay ! tcpsink host=$pi_ip port=5000 from my Pi. Receive this using VLC works, but with a 3 sec delay. I want to do this over UDP to get a shorter delay (correct me if I'm wrong). But cannot for the life