thedesk/libthedesk/onboarding/OnboardingVideoForm.qml
2020-11-26 13:10:34 +11:00

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
}
}