Qt 6.11 is out! See what's new in the release
blog
Video can play only one video
-
I fix this using this code
function playVideo() { videoStep.position = 0 // videoStep.play() videoStep2.position = 0 if (videoStep.visible) { videoStep.visible = false videoStep.stop() videoStep2.visible = true videoStep2.play() } else { videoStep2.visible = false videoStep2.stop() videoStep.visible = true videoStep.play() } }