Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building a simple game using a canvas tag and want to add some sound effects to it. If I use the following code to play the SFX...

function playSfx( sound ) {
 var snd = new Audio("file.mp3");
 snd.play();
}

Is the garbage collection / memory management clever enough to play the sound and then dispose of the Audio object? Or will I have to keep track of the object and destroy it when it has finished playing?

share|improve this question
I'd be more worried about tepid audio support: Safari+Chrome can play MP3, Firefox you need Ogg-Vorbis or Wav, Opera you need Wav, and IE you have to fall back on a flash player. – Rudu Aug 31 '10 at 13:59
I'm not worried about coding for IE6,7 and 8 since they dont support most of the work I have done (it's a personal project so I don't have to worry about browser usage). Is there no "one format" for the browsers which support HTML5? WebM works in all but Safari right? – michael Sep 2 '10 at 15:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.