So I would like to host audio files on my server.
Here's how I do it.
app.use("/media/audio", express.static("media/audio"));
I have done it tons of times with images and I really haven't had a problem so far.
I am able to play these files in browser but I need little more than that.
I am not even sure how to describe it but what I need is this:
My URL only returns media player but nothing in Sources
tab like shown in the picture.
The only reason I want it is because Android MediaPlayer cannot return .mp3 file just because the URL ends with .mp3. Apple doesn't have a problem with that and it plays fine.