invisible sound on webpage?
08-06-2010, 11:23 PM, (This post was last modified: 08-06-2010, 11:26 PM by Vanilla.)
#4
RE: invisible sound on webpage?
IE9 will support it, but only play MP3 and AAC, not WAV, which is weird, as it's a Microsoft-IBM developed format.

By the way, you can stack multiple sources inside the audio tag, so that if one format is incompatible, it will automatically go on to the next format, and play it if possible:

Code:
<audio controls autobuffer>
  <source src="elvis.ogg" />
  <source src="elvis.mp3" />
  <!-- now include flash fall back -->
</audio>
Reply


Messages In This Thread
invisible sound on webpage? - by CrazySp4ce - 08-06-2010, 08:31 AM
RE: invisible sound on webpage? - by RichardGv - 08-06-2010, 11:02 AM
RE: invisible sound on webpage? - by khy - 08-06-2010, 11:36 AM
RE: invisible sound on webpage? - by Vanilla - 08-06-2010, 11:23 PM
RE: invisible sound on webpage? - by CrazySp4ce - 08-07-2010, 10:52 PM

Forum Jump: