The audio tag src
attribute should point to Url, where you can download blob (audio stream). Instead, it simply contains the value of the blob key (which is a random string, not Url, so it doesn't point anywhere).
Itβs best to start reading how to use blob .
Basically, there is no universal URL that you could just request, and it will serve your blob. You need to create a servlet that serves blobs (see the example in the link), and then point it to HTML5 audio control via src="/path/to/your/blob/servlet?key=<%=request.getParameter("blob-key")%>"
.
source share