12345678910111213141516171819 |
- const iframe = new iFrame();
- setInterval(function () {
- const video = document.querySelector("video") as HTMLVideoElement;
- if (video && video.currentTime && video.duration && video.paused) {
- iframe.send({
- error: false,
- currentTime: video.currentTime,
- duration: video.duration,
- paused: video.paused,
- });
- } else {
- iframe.send({
- error: true,
- });
- }
- }, 100);
|