mirror of
https://github.com/theCheeseboard/thedesk.git
synced 2025-01-23 10:52:02 -05:00
15 lines
298 B
QML
15 lines
298 B
QML
import QtQuick 2.0
|
|
import QtMultimedia 5.13
|
|
|
|
Item {
|
|
VideoOutput {
|
|
id: video
|
|
x: 0
|
|
y: 0
|
|
width: parent.width
|
|
height: parent.height
|
|
flushMode: VideoOutput.LastFrame
|
|
fillMode: VideoOutput.PreserveAspectCrop
|
|
source: sourceVideo
|
|
}
|
|
}
|