I want to play an audio file and my code is below
<table class="table table-striped">
<tr ng-repeat="playlist in playlists">
<audio controls>
<source src="uploads/playlist/file/{{playlist.id}}/{{playlist.name}}" type="audio/mpeg">
</audio>
</table>
After this src must be like
uploads/playlist/file/3/song.mp3
but it's not working for me, what should be done to correct the src path.