I am building a custom audio player with JavaScript and I'm having a bit of trouble figuring out the playlist part. I am able to play a single song on the player and I have everything built in HTML to skip to the previous or next song and a list of links created to choose a specific song. I've found a couple of sloppy demos but when I apply the code to my own the player breaks. Eventually what I want is a player compatible with a mobile device (if that makes a difference) that will read the playlist saved in an array. The player will allow the user to play, pause, and skip to the next or previous song. The user should also be allowed to choose the song from the list and the player will load it and play.

I don't want to use jPlayer. This is strictly custom from scratch. What do I need to do next? Here's my code.

Basically what I don't have are functions for the key playlist elements: next and previous song in the array and choosing a specific song from the list of titles displayed.

UPDATED CODE (W/ MANY COMMENTED FAILED ATTEMPTS)

JS:

var playIt = function() {
var musicPlayer= new Audio();
musicPlayer.src = "mulan.mp3";
musicPlayer.autoplay= false;

var currentSong = 0;
//array for song list
var playlist = new Array();
playlist[0] = {src:'mulan.mp3', name:'mulan'};
playlist[1] = ('foxAndHound.mp3');
playlist[2] = ('aladdin.mp3');

/*var playlist = [
{name:"mulan", url:"mulan.mp3"}, 
{name:"friend", url:"foxAndHound.mp3"}, 
{name:"aladdin", url:"aladdin.mp3"}];
*/
//plays the first song
var play = document.getElementById('play');
play.addEventListener('click', function() {
    musicPlayer.play();
    alert("song playing: " + currentSong[name]);
}, false);

//pause the current song
var pause = document.getElementById('pause');
pause.addEventListener('click', function() {
    musicPlayer.pause();
}, false);

//change the volume
var volume = document.getElementById('volume');
volume.addEventListener('change', function() {
    musicPlayer.volume= parseFloat(this.value / 10);
}, false);

var mute = document.getElementById('mute');
if(musicPlayer.volume > 0){
        mute.addEventListener('click', function(){
        musicPlayer.volume= 0;
        alert('muted');
    });
}

//gets song time
musicPlayer.addEventListener("timeupdate", function() {
    var duration = document.getElementById('duration');
    var s = parseInt(musicPlayer.currentTime % 60);
    var m = parseInt((musicPlayer.currentTime / 60) % 60);
    if(s < 10){
        s = '0' + s;
    }
    duration.innerHTML = m + ':' + s;
}, false);

//play the next song on the list when button clicked
var next = document.getElementById('next');
/*next.addEventListener('click', nextSong());
musicPlayer.play();
alert("song changed");*/
//next.addEventListener('click', musicPlayer.nextSong());
next.addEventListener('click', function(){
    if(currentSong < playlist.length){
        playlist.length - 1;
        musicPlayer.currentSong++;
        musicPlayer.setAttribute('src', currentSong.url);
        musicPlayer.play();
        alert('song changed');
    }else if(currentSong = playlist.length){
        currentSong = 0;
    }
}, false);


var previous = document.getElementById('prev');
previous.addEventListener('click', musicPlayer.prevSong(), false);

function nextSongPlay(){
    musicPlayer.src = playlist[currentSong];
    musicPlayer.load();
    musicPlayer.play();
    currentSong++;
    alert('new song');
}

/*function nextSong(){
    if(currentSong < playlist.length){
        currentSong++;
        musicPlayer.setAttrubute(playlist[currentSong]);
        musicPlayer.load();
        alert('song changed');
    }else{
        currentSong=0;
        alert('default song');
    }
    musicPlayer.play();
}
*/
/*
    function nextSong(){
    if(currentSong < playlist.length){
        currentSong++;
        musicPlayer.setAttrubute(playlist[currentSong]);

    }else{
        currentSong=0;
    }
    musicPlayer.load();
    musicPlayer.play();
}
*/

/*  function nextSong(){
    if(currentSong < playlist.length){
        currentSong++;
        musicPlayer.setAttrubute('src', currentSong,url);

    }else{
        currentSong=0;
    }
    musicPlayer.load();
    musicPlayer.play();
}
*/

/*function prevSong(){
    if(currentSong <= playlist.length){
        currentSong--;
        musicPlayer.setAttribute('src', playlist[currentSong]);
        musicPlayer.load();
    }else{
        currentSong=0;
    }
    musicPlayer.play();
}       */

}

HTML:

<a href="#"><img src="images/play.png" id="play" alt=""/></a>
<a href="#"><img src="images/pause.png" id="pause" alt=""/></a>
<a href="#"><img src="images/prev.png" id="prev" alt=""/></a>
<span id="duration"></span>
<a href="#"><img src="images/ff.png" id="next" alt=""/></a>
<div id="volumeBox">
    Volume: <a href="#"><img src="images/mute.png" id="mute" alt=""/></a><input id="volume" type="range" min="0" max="10" value="5" />
</div>
</div>
</section>
<section id="list">
<ul>
        <li><a href="#">Song 1</a></li>
        <li><a href="#">Song 2</a></li>
        <li><a href="#">Song 3</a></li>
    </ul>
</section>
</body>
link|improve this question
1  
You have id="volume" used for both the div and input type=range. An ID should be unique! – pimvdb Jul 20 '11 at 19:20
Where is your function that changes the src attribute of the audio element when the user clicks the skip button? Have you tried calling musicPlayer.load() after changing the file? – Matt Jul 20 '11 at 19:36
Wouldn't #duration be better off as a progress element (or slider, if the user is allowed to seek in audio)? – You Jul 20 '11 at 19:51
@pimvdb - good eye on that. – Nicole Roen Jul 21 '11 at 0:56
@Matt - I don't know that part yet. That's where I am stumped. I need to figure out the function that would read the array of songs and be able to switch to the song based on the next or previous button being clicked. – Nicole Roen Jul 21 '11 at 0:56
feedback

2 Answers

up vote 0 down vote accepted

Wouldn't your next function be something like the following? The prev should be similar.

function next() {
   if(currentSong<playList.length)
      currentSong++;
   else
      currentSong=0;
   musicplayer.play();
}

As far as choosing a specific song from the list of titles displayed, you could do this by determining the index of the li element that was clicked. The jQuery index method (shown) handles this nicely but you can do it in plain old JS as well. For this to work, you will obviously need a method to select the playlist index numerically.

$('ul li a').live('click', function() {
  var indexToPlay = $(this).parent('li').index();
  musicplayer.selectIndex(indexToPlay);
  musicplayer.play();
});

Is this what you had in mind?

Edit to respond to comment...

Your button click could be done similarly to how you accomplished the play button.

var next = document.getElementById('next');
next.addEventListener('click', musicplayer.next(), false);
link|improve this answer
That first function need a mouse event though for when the user clicks on the next or prev button. So shouldn't it look something like this: function next(){ if(currentSong<playlist.length){ currentSong++;} else if(click event - not sure what would go here? something similar to the playlist function?){ currentSong++;} else{ currentSong=0;} musicPlayer.play(); } – Nicole Roen Jul 21 '11 at 14:33
see above answer. – Nicole Roen Jul 24 '11 at 18:31
feedback

Just out of curiosity, how you come across SoundManager2?

http://www.schillmania.com/projects/soundmanager2/

link|improve this answer
1  
Should be a comment – Raynos Jul 25 '11 at 11:25
I have looked at it but that's not what I want. I don't want any plug-ins or whatever. This is my own program from scratch that I'm trying to make. – Nicole Roen Jul 26 '11 at 18:08
@Raynos - I'm a newbie who doesn't know how! :) – James Dykes Jul 27 '11 at 14:26
@Nicole - good on you. I've used it before, saves a lot of time :) – James Dykes Jul 27 '11 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.