I've created an audio player for a web app based on this tutorial (with link to live player): http://neutroncreations.com/blog/building-a-custom-html5-audio-player-with-jquery/
I have everything working fine, except I'd like to include a progress bar behind the playhead/slider, just like the iPod app does on an iPhone/iPod Touch. The player uses jQuery UI for the slider, so naturally I thought including the progress bar jQuery script and a little copy/paste and some tweaking would get it done. Unfortunately, I don't know a whole lot about javascripting, so naturally I can't get it to work.
This is the JS I'm using for the slider (the full script is in the link I posted above)
$('.player #gutter').slider({
value: 0,
step: 0.01,
orientation: "horizontal",
range: "min",
max: audio.duration,
animate: true,
slide: function(){
manualSeek = true;
},
stop:function(e,ui){
manualSeek = false;
audio.currentTime = ui.value;
}
});
I want the progress bar to work exactly like that, except actually showing the progress of the audio instead of/behind the animated playhead. Any help would be greatly appreciated. Thanx.