Embedded Mp3 Players

DesigNes

New Member
THANK YOU!

That was VERY helpful, I was hoping to find something a little more current :).
Hopefully I can make this work!
 

ishie

New Member
Not an expert in html codes, so I just use boomp3. There you get flash-based player and unlimited space for mp3 files.
 

ShanePhoto

New Member
I find the best way is too use a code like this:

Code:
<script language="JavaScript" src="http://www.fakedomain.com/myname/audio/audio-player.js"></script>
<object type="application/x-shockwave-flash" data="http://www.fakedomain.com/myname/audio/player.swf" id="audioplayer1" height="24" width="290">
<param name="movie" value="http://www.fakedomain.com/myname/audio/player.swf">
<param name="FlashVars" value="playerID=audioplayer1&soundFile=http://www.fakedomain.com/myname/audio/music.mp3">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent">
</object>

Go to somewhere like Beemp3.com

search for the song and get the direct link (Should have .mp3 at the end) and put that into your code.

Hope this helps.
 
Top