My code is basically this

<audio controls preload="none" src="linktofile.mp3" />

It works great in Safari 5 and Chrome 8 except that Chrome completely ignores the preload attribute and starts loading (not playing) the file after page load. Which consumes a huge amount of bandwidth if the page is full of audio tags.

Is there a way to make Chrome behave like Safari 5 (ie. the right way) and only load a file when the user clicks on the play button ?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

This is Chrome bug #16482 , and still not fixed, nope.

Update: As of April 6, 2011 it is fixed :-)

link|improve this answer
In that issue they are talking about latency... Is it the same problem ? Thanks. It's really annoying to see that they didn't fix it even though they're aware of it since July 09. – inket Dec 31 '10 at 20:28
Yes its the same issue, it ignores preload attribute. – İsmail 'cartman' Dönmez Dec 31 '10 at 20:36
2  
As of 6 April 2011, vkr comments on the bug: The patches to implement preload have now landed! The preload attribute will be finally recognized in Chrome 12. (Dev channel should get this update in a few weeks.) – Jared Harley Apr 12 '11 at 8:54
feedback

You could have a placeholder element and replace it with the Audio element by Javascript when it's clicked...

link|improve this answer
How can I do that exactly ? :) – inket Dec 31 '10 at 20:30
Okay, top of my head? <div id="placeholder"><button onclick="document.getElementById('placeholder').innerHTML = '<audio blah blah blah>'">PLAY</button></div> – Kawa Jan 1 '11 at 15:19
feedback

Did you try setting the autobuffer attribute to false?

link|improve this answer
Yes, didn't work. Thanks. – inket Dec 31 '10 at 20:20
feedback

Your Answer

 
or
required, but never shown

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