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
To play the video I just used the following method have a button called play and in the ng-click of the button you have to write this
var myVideo = document.getElementsByTagName('video')[0]; myVideo.src = vidURL; myVideo.load(); myVideo.play();
to play video in ng-repeat use index. hope it helps.