vote up 1 vote down star

Hi stackoverflow experts

I've been experimenting with the audio and local storage features of html5 of late and have run into something that has me stumped.

I'd like to be able to cache or store the source of the audio element locally to enable speedier and offline playback. The problem is I can't see how this is possible with the current implementation.

I have tried the following using webkit:

  1. Creating a manifest file to set up local caching but the audio file appears not to be a cacheable item maybe due to the way it is stream or something

  2. I have also attempted to use javascript to put an audio object into local storage but the size of the mp3 makes this impossible due to memory issues (i think).

  3. I have tried to use the data uri and base64 to use the html as a audio transport that can be cached but again the filesize makes this prohibitive. Also the audio element does not seem to like this in webkit (works fine in mozilla)

  4. I have tried several methods of putting the data into the local database store. Again suffering the same issues as the other cases.

I'd love to hear any other ideas anyone may have as to how I could achieve my goal of offline playback using caching/local storage in webkit.

flag

75% accept rate
I've been wondering if this was possible too, and came up with many of the same approaches. – Jonathan Oct 23 at 8:55
Do you have some examples of what you've tried so far? – robertc Oct 24 at 20:35

2 Answers

vote up 0 vote down

Hi Andrew. I see you've had no luck so far.

You might want to take a look at JAI (JavaScript Audio Interface) ("the world's first javascript interface for web <audio>"). Or get in touch with Alastair MacDonald, who wrote it.

Failing that, the HTML5 Doctor may be able to assist.

link|flag
Thanks for the tips - i'll head over to HTML5 Doctor and see what they've got. – andrewdotcom Oct 30 at 9:12
vote up 1 vote down

I guess it would be preferable to get the manifest approach working, since this feels like the most relevant mechanism for locally caching the file.

What happens if you alter the audio file's HTTP headers, e.g. Content-Type and Expires? Does the browser do something different if the file extension is changed?

link|flag
Premasagar, thank for your answer but unfortunately neither of these approaches seems to have any effect :( – andrewdotcom Oct 23 at 15:06
Hmmm. It seems like there has to be a way to do this. Please do post whatever solution you find, as this will be useful to know. – Premasagar Oct 24 at 20:32

Your Answer

Get an OpenID
or

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