jamesh wrote:At work we have been doing some testing doing exactly this. Using gstreamer pipelines over RTP we have got very good results streaming from Pi to Pi, almost imperceptible latency and also Pi to PC (running VLC or similar). However, when using an Android phone over WIfi the latency was increased considerably. I think we fdid get it to go quicker, but not sure how - I wasn't doing the testing.
I think its one of those things you will need to try. I beleive it's the Android end that is the problem, not the Pi. SO probably will vary according to the handset.
Hi jamesh i want to receive the stream through Pi (Using GST-RTSP server on pi) to VLC (On Windows 7 PC). As you have mentioned here that you have done so. Can you please guide me through because i am having some problems. I have used following command on Pi side to create rtsp server:
Code: Select all
raspivid -t 0 -h 320 -w 240 -rot 90 -fps 25 -b 2000000 -vf -hf -n -o - | gst-launch -v fdsrc ! h264parse ! gdppay ! tcpserversink host=192.168.1.15 port=5000 | ./test-launch "( tcpclientsrc host=192.168.1.15 port=5000 ! gdpdepay ! avdec_h264 ! rtph264pay name=pay0 pt=96 )"
Where 192.168.1.15 is the IP address of my pi
and i am receiving it using VLC on windows by the
rtsp://192.168.1.15:8554/test The problem is VLC is showing only a single image (i.e a single frame). While it is working smoothly on GOM player by the same link. But i need to use VLC. Please guide me through. Thanks in advance.