I found a java/flash mp3 player here
http://jssoundkit.sourceforge.net/but I don't know how to change it to play my own files.
the example given on the website to play files is:
var mysound = new Sound();
mysound.loadSound("
http://www.archive.org/download/Behind/SyncFilmicoBehind.mp3", true);
mysound.setVolume(30);
so I change the mysound.loadSound("
http://www.archive.org/download/Behind/SyncFilmicoBehind.mp3", true);
to mysound.loadSound("
http://localhost/mp3s/test.mp3", true);
and when I go to the player page
http://localhost/player.htmlthen nothing plays.
but if I leave the downloaded example files as is:
<script type="text/javascript" src="
http://cchits.ning.com/recent/?fmt=json&var=cchitsPlaylist"></script>
// <![CDATA[
var player = new Player();
player.loadPlaylist(cchitsPlaylist.playlist.trackList);
// ]]>
then the playlist from cchits.ning.com will play correctly.
how can i change this to play my files? and my playlist? it seems that it doesn't work with the asx playlists on localhost...