Hi,
yes of course,
download the extended version of the player.
upload it to your server.
you need to create your playlist files next,
create a new text file, call it playlist.xspf
Place the following code in..
HTML Code:
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<track><location>http://www.domain.com/mp3s/song_1.mp3</location></track>
<track><location>http://www.domain.com/mp3s/song_2.mp3</location></track>
<track><location>http://www.domain.com/mp3s/song_3.mp3</location></track>
</trackList>
</playlist>
Obviously replace the urls with your own links...
Then you need to include the whole thing on your page, you can use the following for that.
HTML Code:
<object type="application/x-shockwave-flash" width="400" height="170"
data="http://yourdomain.com/xspf_player.swf?playlist_url=http://yourdomain.com/yourplaylistlist.xspf">
<param name="movie"
value="http://yourdomain.com/xspf_player.swf?playlist_url=http://yourdomain.com/yourplaylistlist.xspf" />
</object>
I hope that helps !
Andy
Last edited by Andy Pugh; 12-19-2008 at 07:47 AM..
|