I got an error of Error while interpolating: videos/{{video.name}}
with below code :
<div ng-repeat='video in videos'>
<div class="col-md-3">
<video controls>
<source src="videos/{{video.name}}" type="video/mp4">
Your browser does not support HTML5 video.
</video>
{{video.name}} // this worked
</div>
</div>
Tried ng-src too but doesn't work. Strange.