Getting Current YouTube Video Time

后端 未结 7 818
[愿得一人]
[愿得一人] 2020-11-28 08:27

I am writing a Browser Plugin and need to find a way to get the current time a YouTube Video playing on YouTube using JavaScript. I have been playing around in the Chrome Ja

7条回答
  •  难免孤独
    2020-11-28 09:13

    You can use Html5 Video API on youtube.com

    var htmlVideoPlayer = document.getElementsByTagName('video')[0];
    htmlVideoPlayer.currentTime
    

    Note: It's not gonna work on Youtube Iframe API because Iframes are isolated. You cannot access the context of a Youtube IFrame .

提交回复
热议问题