I'm developing a local server that will stream a user's audio files so they can access them via web browsers using the HTML5 audio object. Since these files are on the user's computer, I expect the files to be buffered completely when they are loaded, but for certain large files, the songs get buffered part of the way, then stop, and resume buffering some time later.

My question is: how can I force the audio object to buffer the entire song at once? Can I do this from javascript, do I have to set an attribute on the audio object, or is there anything else I can do?

link|improve this question

50% accept rate
feedback

2 Answers

You could set the preload="auto" attribute. It's not guaranteed to do anything, but it's supposed to tell the user agent to buffer as much as it wants without concern for the remote end. http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#attr-media-preload

link|improve this answer
feedback

The solution I found was this:

function load() {
    a.play();
    setTimeout("a.pause()", 10);
}

Play the file and pause it 10ms later, then the browser will buffer the entire song.

link|improve this answer
setTimeout(a.pause, 10) is better karma – DrJokepu Feb 24 at 15:39
That works when your not passing the function any variables, sure. But why bother switching back and forth between two methods? – Greg Miernicki Feb 28 at 1:19
1  
@DrJokepu Actually, that wouldn't work, since you'd lose the context of the function. Better: setTimeout(a.pause.bind(a), 10) – nickf Apr 11 at 10: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.