Сократил путь:QML_IMPORT_PATH =/home/anval/Qt5.0.0-rc1/5.0.0-rc1/gcc/qml/ - на import QtMultimedia 5.0 не ругается,но MediaPlayer и VideoOutput не видит...
import QtQuick 2.0
import QtMultimedia 5.0
Rectangle {
width: 800
height: 600
color: "black"
MediaPlayer {
id: player
source: "tempvideo.avi"
autoPlay: true
}
VideoOutput {
id: videoOutput
source: player
anchors.fill: parent
}
}