Hi,
i know that there is some problem with the video on Android (so the camera have to be shown on the main page), but i have this porblem playing a video. If i push the Video (or MediaPlayer) in a page pushed in the navigationstack, it works but when try to come back and then do some other navigation action the app is frozen. So, i tried the same approach for the Camera, in the main i written:
Video {
id: video
source: Qt.resolvedUrl("../assets/helpa.mp4")
anchors.fill: parent
MouseArea {
anchors.fill: parent
onClicked: {
console.log("play")
video.play()
}
}
onErrorOccurred: (error, errorString) => {
console.log("EERROR", errorString)
}
}
But the video is blank and also if i tap the play action nothing happen (a part see the console message).
I don’t know if there is some solution