I would like for the user to be able to upload an audio file of their choice, and play it back using HTML/JS. This upload can be a once-only deal, it does not need to be persistent. I know I can accomplish this by loading the file first to the server, then serving it again.
Is there an easier way to directly load it into the DOM in an audio tag without having to go through the server? I know in general you are prevented from loading resources on a domain other than your own, but just thought I would ask.