尝试了以下来自 http://doc.qt.io/qt-5/qml-qtmultimedia-mediaplayer.html#details 的内容
import QtQuick 2.4
import QtQuick.Window 2.2
import QtMultimedia 5.0
Window
{
visible: true
height: 1000
width: 1000
MediaPlayer {
id: mediaplayer
source: "/home/****/template/v1.avi"
}
VideoOutput {
anchors.fill: parent
source: mediaplayer
}
MouseArea {
id: playArea
anchors.fill: parent
onPressed: mediaplayer.play();
}
}
上
Ubuntu 14.04.2 LTS\n\l
与
GStreamer 核心库版本 0.10.36
这会在点击时出现标题中显示的错误。
我已确认该文件存在。
现在还能做什么?
Linux中设置url
的方法是:
文件:///home/***/template/v1.avi
因此,源:“/home/****/template/v1.avi”
应替换为:
来源:“file:///home/***/template/v1.avi”
我是一名优秀的程序员,十分优秀!