Hello,

I am trying to get streaming video from an embedded Linux system to display on my Ubuntu 9.10 machine. I have the embedded side of the system apparently working, but the Ubuntu machine shows warnings when I start the gstreamer pipe.

Here's what I run on Ubuntu:

Code:
my-machine:/$ gst-launch-0.10 -v --gst-debug=2 udpsrc port=5000 caps="application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96, ssrc=(guint)715953095, clock-base=(guint)2547213349, seqnum-base=(guint)28113" ! rtph264depay ! decodebin ! autovideosink
0:00:00.158663795 17983  0x8874050 WARN      GST_PLUGIN_LOADING gstplugin.c:422:gst_plugin_register_func: plugin "/usr/lib/gstreamer-0.10/libgstladspa.so" failed to initialise
0:00:00.200195347 17983  0x8874050 WARN                pyplugin gstpythonplugin.c:343:plugin_init: Couldn't g_module_open libpython. Reason: /usr/lib/libpython2.6.so: cannot open shared object file: No such file or directory
0:00:00.200311284 17983  0x8874050 WARN      GST_PLUGIN_LOADING gstplugin.c:422:gst_plugin_register_func: plugin "/usr/lib/gstreamer-0.10/libgstpython.so" failed to initialise

(gst-launch-0.10:17982): GLib-WARNING **: g_set_prgname() called multiple times
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
0:00:00.584169149 17982  0x8874050 WARN                     bin gstbin.c:2312:gst_bin_do_latency_func:<pipeline0> failed to query latency
New clock: GstSystemClock
^[[1;2C^[[1;2C^[[1;2C^CCaught interrupt -- handling interrupt. << I hit control-C here >>
Interrupt: Stopping pipeline ...
Execution ended after 155380905748 ns.
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
/GstPipeline:pipeline0/GstUDPSrc:udpsrc0.GstPad:src: caps = NULL
Setting pipeline to NULL ...
Freeing pipeline ...
I tried the Freescale forum, since the embedded side is one of their ARM processors, and got a reply that the above commands worked OK on Ubuntu 9.04. I really don't want to downgrade my system. Does anyone see what I did wrong, or have a suggestion to fix this?