使用以下示例:
Video {
id: video
width : 800
height : 600
source: "video.avi"
MouseArea {
anchors.fill: parent
onClicked: {
video.play()
}
}
focus: true
Keys.onSpacePressed: video.playbackState == MediaPlayer.PlayingState ? video.pause() : video.play()
Keys.onLeftPressed: video.seek(video.position - 5000)
Keys.onRightPressed: video.seek(video.position + 5000)
}
从示例中,我无法播放任何视频格式。我是
加载source
中的Video
时得到以下内容。
defaultServiceProvider :: requestService():找不到以下服务: “ org.qt-project.qt.mediaplayer”
没有任何与上述对我有用的消息相关的信息。在Ubuntu 16.04上工作。