Warning, /maui/clip/src/views/player/Player.qml is written in an unsupported language. File is not indexed.

0001 import QtMultimedia 5.8
0002 import QtQuick 2.15
0003 
0004 Video
0005 {
0006     id: control
0007     readonly property alias video : control
0008     property alias url : control.source
0009 
0010     readonly property bool playing : control.playbackState === MediaPlayer.PlayingState
0011     readonly property bool paused : control.playbackState === MediaPlayer.PausedState
0012     readonly property bool stopped : control.playbackState === MediaPlayer.StoppedState
0013 
0014     source: currentVideo.url
0015     autoPlay: true
0016     autoLoad: true
0017     fillMode: VideoOutput.PreserveAspectFit
0018     flushMode: VideoOutput.LastFrame
0019     audioRole: MediaPlayer.VideoRole
0020 }
0021