Small practical HTML mp3 player for studo website

blackcom

Member
Oct 5, 2003
456
0
16
Hey!

Does anyone know about any good small and practical mp3 player that would be easy to implement on my studio website for showing off soundclips?
 
You can use the built in HTML5 Player, it's super easy. You'll have to use both .mp3 and .ogg though, because different browsers can only read different formats. You can also use .wav if you want to. There is no compromising quality here, and no flash! Though you can include some code so that it loads a flash player "just in case the file wont load". I use it on my site.

Code:
<audio controls preload="auto" autobuffer> 
  <source src="mysong.mp3" />
  <source src="mysong.ogg" />
  <!-- now include flash fall back code here -->
</audio>

This will use the browsers built in player. Works wonders. You'll have to use one instance for every song though. No playlist feature yet. But it's great imo. Gives room for a little description under each song :)

Cheers
Carl.