admin管理员组文章数量:1344505
How can I know if load of a song is successfull? something like:
video.load({
success : function() {
alert("loading successful");
},
failure : function() {
alert("loading not successful");
}
});
I have list of songs to play, and if suddenly there is a problem with internet connection and next video can't be played, I want to play the next song that already have been laoded..
Thanks a lot!
How can I know if load of a song is successfull? something like:
video.load({
success : function() {
alert("loading successful");
},
failure : function() {
alert("loading not successful");
}
});
I have list of songs to play, and if suddenly there is a problem with internet connection and next video can't be played, I want to play the next song that already have been laoded..
Thanks a lot!
Share Improve this question asked Sep 19, 2015 at 13:21 user2320431user2320431 1151 gold badge2 silver badges15 bronze badges2 Answers
Reset to default 9It depends on what you call a success when loading a video. Being able to fully play the video is one thing and just loading the metadata is another, and there are events for each. Same with failure: Would you consider a very long period of buffering an error?
Please refer to the list of events fired by HTMLMediaElement here: https://developer.mozilla/en-US/docs/Web/API/HTMLMediaElement
As for listening to these events, this code might be helpful:
var v = document.createElement("VIDEO");
v.addEventListener("error", function (e) {
console.log("Error while loading the video");
});
v.addEventListener("loadeddata", function () {
console.log("Video has started loading successfully!");
});
v.src = "http://mondatastorage.googleapis./gtv-videos-bucket/sample/BigBuckBunny.mp4";
You can use the error property of the html5 video tag (but this seems to be IE only at this time). Another approach (for FireFox) is HTML 5 Video Error handling in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1).
To detect that all child elements have failed to load, check the value of the media element's networkState attribute. If this is HTMLMediaElement.NETWORK_NO_SOURCE, you know that all the sources failed to load.
Hope this helps!
本文标签: htmldetect if videoload is successful or notjavascriptStack Overflow
版权声明:本文标题:html - detect if video.load is successful or not - javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743765263a2535120.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论