QT5.2 + RaspberryPI + video - org.qt-project.qt.mediaplayer
-
Hello,
I find article how install QT5.2 on raspberry pihttp://lpcamargo.blogspot.com.br/2014/02/tutorial-qt-52-no-raspberrypi.html
Rasbian version: 2014-09-09 from official : http://www.raspberrypi.org/downloads/
Simple QML program work fine but when i insert video object, does not work.
the program starting, I see black rectangle but video not play.
Program return:
defaultServiceProvider::requestService(): no service found for - "org.qt-project.qt.mediaplayer"I googing many post but can't find solution.
my code:
@
import QtQuick 2.0
import QtMultimedia 5.0Rectangle {
id: screen
width: 700
height: 400
color: "black"
Video {
source:'http://techslides.com/demos/sample-videos/small.mp4'
width: parent.width
anchors.top: parent.top
height: parent.height
autoPlay:true
}
}
@Thanks for Your helps