/**
* SONG FILE LIST SECTION
+ * I think the issue here is that it takes forever to create 1000 elements worth of files, instead
+ * we should do that bit by bit, if the download still blocks for too long, we change that next.
*/
let songFileList = []
let innerSongFileList = document.getElementById("innerSongFileList")
let audioSource = document.createElement("source")
audioSource.src = "binb.sis50.nl/static/songs/" + songFileName // TODO: hardcoded
- audioSource.type = "audio/m4a"
+ audioSource.type = "audio/mp4"
audioPreview.appendChild(audioSource)