I'm using shaka-player
to play a dash stream from a Nimble server, but I've been reading that waiting
event is not always the most reliable option, and in fact when the video stops loading the image simply freezes, and my event is not being activated, so I wonder if you have any workarounds to see if the video stopped loading?
I'm using waiting this way
$("#video").bind("waiting", function(){
$('.player-container .player-loading').show();
});