Quantcast
Channel: Tell whether video is loaded or not in Javascript - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by Badrush for Tell whether video is loaded or not in Javascript

$
0
0

UPDATE:

As others have mentioned, my original solution below does work but it can lead to performance issues and some unpredictability in its behaviour.

Therefore I recommend listening to the loadeddata event.Read more here: https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/loadeddata_event

const videoElement = document.getElementById("my_video");videoElement.addEventListener('loadeddata', (e) => {   //Video should now be loaded but we can add a second check   if(videoElement.readyState >= 3){       //your code goes here   }});

==================================

INFERIOR SOLUTION:

I find using setInterval works for actively listening to when the readyState of the video changes by checking every half-second until it loads in.

checkforVideo();function checkforVideo() {    //Every 500ms, check if the video element has loaded    var b = setInterval(()=>{        if(VideoElement.readyState >= 3){            //This block of code is triggered when the video is loaded            //your code goes here            //stop checking every half second            clearInterval(b);        }                       },500);}

If you're not using ES6 just replace () => with function()


Viewing all articles
Browse latest Browse all 7

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>