How to play a m4a/mp3 file via html file

There is licensing issue playing m4a formats in modern browsers

So your browser’s console will generate something as the following:

Cannot play media. No decoders for requested formats: audio/m4a

Just use mp3, here is example:

Download mp3 sample and insert it into your html file:

wget https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_700KB.mp3
Read the rest

How to play a midi file via html file

You need to use Javascript plugin

http://www.midijs.net

Include the library and specify to file you wish to play

<script src='http://www.midijs.net/lib/midi.js'></script>
<script>MIDIjs.play('/home/username/file.midi');</script>

Done

Source: https://stackoverflow.com/questions/5662293/how-to-play-a-midi-file-in-html… Read the rest