Hi. Here is my Windows:@echo off
cd C:\gstreamer\1.0\x86_64\bin
gst-launch-1.0 -e -v udpsrc port=5000 ! application/x-rtp, payload=96 ! rtpjitterbuffer ! rtph264depay !
avdec_h264 ! fpsdisplaysink sync=false text-overlay=false
Here is my Raspberry pi:
gst-launch-1.0 -v v4l2src device=/dev/video0 \
! video/x-h264,width=1280,height=720,framerate=10/1 \
! h264parse \
! rtph264pay pt=127 config-interval=4 \
! udpsink host=********** port=5000
Also I would like to incorporate the tee command and stream and record at the same time if possible. Thanks for any help, much appreciated.