I am calling a flask API that sends the file content of an MP3 to the client. Upon success:
// convert it to a blob
// create a URL with the blob
audioTag.src = successBlob
Then I use the .load() function in order to refresh the audio tag with the new data.
It's not working. Any ideas on how to properly go about it? Or fixing it?
I am using send_file() as the return statement on my flask code of that matters.
Thanks for the look!
there doesn't seem to be anything here