0
I have a question about how to list the next audio using javascript, ie finishing a song will already be listed next. I currently have the following code:
function loadPlayer() {
    var audioPlayer = new Audio();
    audioPlayer.controls="controls";
    audioPlayer.addEventListener('ended',nextSong,false);
    audioPlayer.addEventListener('error',errorFallback,true);
    document.getElementById("player").appendChild(audioPlayer);
    nextSong();
}
function nextSong() {
    if(urls[next]!=undefined) {
        var audioPlayer = document.getElementsByTagName('audio')[0];
        if(audioPlayer!=undefined) {
            audioPlayer.src=urls[next];
            audioPlayer.load();
            audioPlayer.play();
            next++;
        } else {
            loadPlayer();
        }
    } else {
        alert('the end!');
    }
}
function errorFallback() {
        nextSong();
}
function playPause() {
    var audioPlayer = document.getElementsByTagName('audio')[0];
    if(audioPlayer!=undefined) {
        if (audioPlayer.paused) {
            audioPlayer.play();
        } else {
            audioPlayer.pause();
        }
    } else {
        loadPlayer();
    }
}
function pickSong(num) {
    next = num;
    nextSong();
}
var urls = new Array();
    urls[0] = 'audio.mp3';
    urls[1] = 'audio.mp3';
    urls[2] = 'audio.mp3';
    urls[3] = 'audio.mp3';
    urls[4] = 'audio.mp3';
    urls[5] = 'audio.mp3';   
    urls[6] = 'audio.mp3';       
var next = 0;
Is this code a mistake? Looking over the top, it looks okay.
– bfavaretto
be a little more specific
– Otto
@bfavaretto yes the code is ok, the point is that I would like to list the next audio, for example when finishing a song automatically would proceed to the second... is in this part where is my doubt.
– the flash
The music file you’re playing is on
urls[next]. If you want to display the name of that file somewhere, just use it. From what I understand from the code, the automatic passage to the next song is already working.– bfavaretto
Well, it’s not working yet, here’s the full code: http://codepen.io/flashpremium/pen/kfGAm
– the flash