Hi i'm using gstreamer for multimedia streaming from raspberry pi to remote PC. Im using these piplelines in my raspberry pi
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=YOUR_RPI_IP_ADDRESS port=5000.
On my PC i'm using this command to view stream
gst-launch-1.0 -v tcpclientsrc host=YOUR_RPI_IP_ADDRESS port=5000 ! gdpdepay !
rtph264depay ! avdec_h264 ! videoconvert ! autovideosink
sync=false
now i would like to view the stream on PC with a python code.I started looking into pygst,but couldn't figure out how to achieve this.Someone please help me with this.