How do I loop video??
QML and Qt Quick
2
Posts
2
Posters
715
Views
1
Watching
-
Hi All,
Could somebody please explain how I can modify the code below so that the video loops infinitely.
Many Thanks
@ Rectangle {
id: mainpane
x: 20
y: 160
width: 1295
height: 736
color: "#ffffff"
border.color: "#4e86c6"
border.width: 5Video { id: video x: 8 y: 8 width: 1280 height: 720 autoPlay: true source: "/pathtovideo" } } }@