@main.qml
MediaPlayer
{
id:mediaplayer
source:"C:/Users/bharathiraja/Desktop/video.mp4";
autoPlay:true
loops:Animation.Infinite
}
VideoOutput
{
width:512
height:538
id: videooutput
source: mediaplayer
}
@
I want to pass the url path of the video from cpp file.