Videos are being loaded from an API, but it appears that the onPlayerReady
function is being called before the videos have finished loading and are passed. The video sources are in base64 format. The following code is being used:
.getDefaultMedia()
.subscriptions.loadedMetadata.subscribe(this.initVdo.bind(this));
When initVdo
is invoked, the isCompleted
property is false.
Is there a solution to this problem? Is it possible to initialize the onPlayerReady
manually?
Thank you, Jan