Most of the ones I see people using involve gdppay/gdpdepay (GStreamer data protocol payload / depayload) which are binaries that are not available under Windows for some reason.
I've been able to get it to work from Raspbian to Ubuntu with the following pipeline syntax;
Sending on the Pi
Code: Select all
raspivid -t 0 -h 720 -w 1080 -fps 25 -hf -b 2000000 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! tcpserversink host=<Pi-IP> port=5000
Code: Select all
gst-launch-1.0 -v tcpclientsrc host=<Pi-IP> port=5000 ! gdpdepay ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink sync=false
Any help or suggestions would be appreciated, cheers o7