How do I get a video element to start playing ASAP (without keys or clicks)?
I get the first frame displayed, but I don't know how do start it.
I was hoping there would be an onStatusChanged signal, that I could do:
onStatusChanged(oldStatus) {
if (status = Video.Loaded) play();
}