import QtQuick 2.12 import QtMultimedia 5.13 Item { width: 1920 height: 1080 Rectangle { color: "#ffffff" } VideoOutput { height: 1080 source: _videoL width: 1150 } MediaPlayer { id: _videoL autoLoad: true autoPlay: true loops: MediaPlayer.Infinite notifyInterval: 100 source: "file:///C:/dev/bg test.mp4" } }