player = document.getElementsByClassName('player')[0];
scope.video = [МАССИВ];
var
count = 0,
length = scope.video.length;
scope.$watch("player.ended", function (newValue, oldValue) {
if(newValue == oldValue || newValue){
scope.player.setAttribute('src', scope.video[count++%length]);
scope.player.play();
}
});