FluentUI/src/controls/FluMediaPlayer.qml

29 lines
442 B
QML
Raw Normal View History

2023-03-24 15:21:47 +08:00
import QtQuick 2.15
import QtMultimedia 5.9
Item {
width: 320
height: 240
MediaPlayer {
id: mediaplayer
source: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
}
VideoOutput {
anchors.fill: parent
source: mediaplayer
}
MouseArea {
anchors.fill: parent
onPressed: {
console.debug("------>")
mediaplayer.play()
}
}
}