I'm trying to play sound, if i use link to sound like this:
<audio controls ng-src="http://playerdemo.iainhouston.com/tests/BeBopAliens.mp3"></audio>
It's Ok, but when i try use link from $scope.audioArray
like this:
<div ng-repeat="au in audioArrray">
<audio controls ng-src="{{au.link"}}> </audio>
</div>
$scope.audioArray = [
{
id: 1,
link: "http://playerdemo.iainhouston.com/tests/BeBopAliens.mp3"
}];
it's doesn't play,I done the Plunker Example. Maybe somebody knows how i can resolve it ? Thanks for your answers!