Hi,
First of all, thanks a lot for the tutorials,
it's quite hard though to make it work even with such usefull info...
At the moment I'm stuck with a VLC problem. I'd like to receive and trascode the video stream to Mission Planner, like you did in the GStreamer tutorial. The problem looks like this:
I do successfully receive the stream in GStreamer, but VLC only shows the one frame of the video and then freezes like on the image above.
The commands that I used on RPi2 and .sdp file:
raspivid -n -w 1280 -h 720 -b 2000000 -fps 30 -t 0 -o - | \
gst-launch-1.0 rtpbin name=rtpbin \
-v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! rtpbin.send_rtp_sink_0 \
rtpbin.send_rtp_src_0 ! udpsink port=5000 host=192.168.137.1 \
rtpbin.send_rtcp_src_0 ! udpsink port=5001 host=192.168.137.1 sync=false async=false \
udpsrc port=5005 ! rtpbin.recv_rtcp_sink_0
v=0
s=ESP H264 STREAM
m=video 5000 RTP/AVP 96
a=rtpmap:96 H264/90000
a=cliprect:0,0,720,1280
a=framerate:30.000000
a=fmtp:96 media=video; clock-rate=90000; encoding-name=H264;
a=control:trackID=1
Would appreciate any sugestions. Thanks.