Hi stackoverflow folks,
You have an example GitHub , showing audio preview.
How to do this in asp.net mvc?
View:
<audio controls style="width: 375px;height:225px;">
<source src="@Url.Action("StreamUploadedSong", "Account", new { id = Model.Id })" type="audio/mp3" />
Your browser does not support the audio element.
</audio>
Image example:
Where the red rectangle is, it is to show preview while playing audio.
Any ideas?