<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.min.js"></script>
<section ng-app="app">
<div ng-controller="MainCtrl">
<p>I have a fake API response with a few videos. Is the only way to display them to loop over my API response and call my $scope.trusted function?</p>
<div ng-repeat="video in apiVideosResponse">
<video controls autoplay>
<source ng-src="{{video.mp4}}" type="video/mp4">
<source ng-src="{{video.webm}}" type="video/webm">
<source ng-src="{{video.ogv}}" type="video/ogg">
</video>
</div>
<hr>
</div>
</section>