I'm currrently tryinnng out the QML part of QT 4.7.
I've sorted it out so far how everything works, but i'm stuck at the following.
I created a rectangle which holds a Video. This video has to display a stream. I'm streaming on my network to a multicast ip with VLC

1 Code:
  1. cvlc -vvv test.flv --sout "#transcode{vcodec=mp2v,acodec=mp2a,ab=96,channels=2,vb=3000,width=720,height=576,aspect=4:3}:std{access=udp,mux=ts,dst=multicast_ip:port}" --loop --sout-keep
To copy to clipboard, switch view to plain text mode 

When i try to display the stream on my pc, i use VLC and it displays correct.
In my element i have the following
2 Code:
  1. Video {
  2. id: video
  3. width : parent.width
  4. height : parent.height
  5. source: "udp://ip:port/"
  6. playing: true
  7. anchors.horizontalCenter: parent.horizontalCenter
  8. }
To copy to clipboard, switch view to plain text mode 
The above isn't working, but if i change source to source: file.flv it works.
I'm getting one warning
3 Code:
  1. Warning: QMediaPluginLoader: Failed to load plugin: "libqgstengine.so.debug" "The shared library was not found."
To copy to clipboard, switch view to plain text mode 
, on both the local video as the stream.

Isn't it possible at this stage to display a stream? Or am i doing something wrong?