I need a little help. I’ve tried to follow the example for creating a video ui. I’m unable to get a video to play.
I’m using the clasic video Big Buck Bunny as my test with this url
Mycroft.Delegate {
id: root
skillBackgroundSource: sessionData.videoThumbnail
Mycroft.VidioPlayer {
id: examplePlayer
anchors.fill: parent
source: "https://archive.org/download/BigBuckBunny_124/Content/big_buck_bunny_720p_surround.mp4"
nextAction: "author.example-player.next"
previousAction: "author.example-player.previous"
status: "playing"
}
}
Here is what I’ve tried so far based on the documentation provided by
What my final goal is to connect it to my Door Bell and view a live video is someone is there. Maybe even include 2-way audio. Though the audio might be a little ambitious.
Thanks