I have been trying to read the video object that Spotify Embed code generates on my website, as there is no <audio> or <video> tag on the page, and only the object that the script generates, how do I access it through Javascript and do something like video.currentTime ?
The far I have reached is through developer tools pausing the script execution, cloning the object (video) to window.video, resuming script execution and then accessing through video.currentTime, is there a way to do this without having to use developer tools manually?
Thanks!