I want to hide player error message, how can i do this, please help me?
Depending on what you want to do, you can call player.error() with null to tell Video.js to hide the error: player.error(null).
If you want to just disable errors, you can set errorDisplay option to be false in the player options:
var player = videojs('vid', {
errorDisplay: false
});
Hope that helps.
Most helpful comment
Depending on what you want to do, you can call
player.error()withnullto tell Video.js to hide the error:player.error(null).If you want to just disable errors, you can set
errorDisplayoption to be false in the player options:Hope that helps.