Strumień rtp GStreamer do vlc

Mam pewne problemy z ustaleniem, jak utworzyć prosty strumień rtp za pomocą gstreamer i wyświetlić go na vlc.

Zainstalowałem GStreamer 0.10.30 i VLC 1.1.3. Moim jedynym wymaganiem jest użycie kodeków MPEG4 lub H.264.

Teraz mogę przesyłać strumieniowo GStreamervideotestsrc przez ten prosty rurociąg:

gst-launch videotestsrc ! ffenc_mpeg4 ! rtpmp4vpay ! udpsink host=127.0.0.1 port=5000

który wyświetla „czapki” potrzebne klientowi do odbioru strumienia:

/GstPipeline:pipeline0/GstUDPSink:udpsink0.GstPad:sink: caps = application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)MP4V-ES, profile-level-id=(string)1, config=(string)000001b001000001b58913000001000000012000c48d8800f50a041e1463000001b24c61766335322e3132332e30, payload=(int)96, ssrc=(uint)365697461, clock-base=(uint)390754204, seqnum-base=(uint)10399

Mogę także wyświetlić strumień przy użyciu następującego potoku:

gst-launch udpsrc uri=udp://127.0.0.1:5000 caps="application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)MP4V-ES, profile-level-id=(string)1, config=(string)000001b001000001b58913000001000000012000c48d88007d0a041e1463000001b24c61766335322e3132332e30, payload=(int)96, ssrc=(uint)298758266, clock-base=(uint)3097828288, seqnum-base=(uint)63478" ! rtpmp4vdepay ! ffdec_mpeg4 ! autovideosink

ale kiedy próbuję odbierać strumień za pomocą vlc:

vlc -vvv rtp://127.0.0.1:5000

Nic nie dostaję ...

questionAnswers(2)

yourAnswerToTheQuestion