AngularJS ng-src doesn\'t work with HTML5 Video element in this fiddle: http://jsfiddle.net/FsHah/5/
ng-src
Looking at video element, the src tag is being popu
Just use vanilla js (regular javascript) to make this work. If you are listening to events like onended you might want to reconsider using $scope.$apply().
My example:
document.getElementById('video').src = $scope.videos[$scope.videoindex];