Play Audio And Video in Angular 2
HTML 5 Audio Player
<table class="tableStyle">
<tr>
<th colspan="2" align="center">
Audio
</th>
</tr>
<tr>
<td>
<audio controls>
<source src={{audioAttachmentFilePath}} type="audio/ogg">
Your browser
does not support the audio element.
</audio>
</td>
</tr>
</table>
HTML 5 Video Player in Angular 2
HTML 5 Video Player
<table>
<tr>
<th>
Video
</th>
</tr>
<tr >
<td>
<video controls style="height:150px;" class="col-md-12">
<source src={{videoAttachmentFilePath}} type="video/mp4" />
Browser not
supported
</video>
</td>
</tr>
</table>