Add interval and timeout for errors in player

This commit is contained in:
Omar Roth 2019-01-31 09:09:00 -06:00
parent 9e73e3b153
commit def58ff11f

View File

@ -116,6 +116,7 @@ var player = videojs("player", options, function() {
player.on('error', function(event) {
if (player.error().code === 2 || player.error().code === 4) {
setInterval(setTimeout(function (event) {
console.log("An error occured in the player, reloading...");
var currentTime = player.currentTime();
@ -127,6 +128,7 @@ player.on('error', function(event) {
player.currentTime(currentTime);
player.playbackRate(playbackRate);
player.play();
}, 5000), 5000);
}
});