Let's say I am storing an audio file in the database and later on I would want to use that BLOB or binary in my application.
<audio src ="${sessionScope.user.music}">
Where ${sessionScope.user.music}
returns a binary data that has been retrieve from the database.
would it be possible to load an audio file in an audio tag, using binary data instead of a uri? or path?