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>
id="volume"used for both thedivandinput type=range. An ID should be unique! – pimvdb Jul 20 '11 at 19:20srcattribute of the audio element when the user clicks the skip button? Have you tried callingmusicPlayer.load()after changing the file? – Matt Jul 20 '11 at 19:36#durationbe better off as aprogresselement (orslider, if the user is allowed to seek in audio)? – You Jul 20 '11 at 19:51