44 lines
938 B
QML
44 lines
938 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtGraphicalEffects 1.15
|
|
import FluentUI 1.0
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"MediaPlayer"
|
|
|
|
onVisibleChanged: {
|
|
if(visible){
|
|
player.play()
|
|
}else{
|
|
player.pause()
|
|
}
|
|
}
|
|
|
|
FluArea{
|
|
width: parent.width
|
|
height: 320
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
ColumnLayout{
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left:parent.left
|
|
}
|
|
|
|
FluMediaPlayer{
|
|
id:player
|
|
source:"http://mirror.aarnet.edu.au/pub/TED-talks/911Mothers_2010W-480p.mp4"
|
|
// source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
|
|
// source:"http://video.chinanews.com/flv/2019/04/23/400/111773_web.mp4"
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|