Lid |
|
http://www.thesafepolarbears.co.nr --> Media
Daar staat een flash playertje dat makkelijk te gebruiken is. Ik weet niet meer waar ik het precies gevonden heb, maar als je wil kan ik het je wel doorsturen. Om er muziek in te zetten gebruik je xml:
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<!-- title of the playlist -->
<title>Safe Polar Bears - Media</title>
<!-- name of the author -->
<creator>Safe Polar Bears</creator>
<!-- homepage of the author -->
<info>http://www.thesafepolarbears.co.nr</info>
<trackList>
<track>
<location>http://193.138.205.200/~spb/media/Safe Polar Bears - Window Man (live and sucky).mp3</location>
<!-- artist or band name -->
<creator>Safe Polar Bears</creator>
<!-- album title -->
<album>No album</album>
<!-- name of the song -->
<title>Window Man (live on 12/06/08)</title>
<!-- comment on the song -->
<annotation>Window Man, live played in the SPB week</annotation>
<!-- song length, in milliseconds -->
<duration>271066</duration>
<!-- album art -->
<image>http://www.thesafepolarbears.co.nr/media/SPB_logo_neg.png</image>
</track>
</tracklist>
</playlist>
<?xml version="1.0" encoding="UTF-8"?> <playlist version="1" xmlns="http://xspf.org/ns/0/"> <!-- title of the playlist --> <title>Safe Polar Bears - Media</title> <!-- name of the author --> <creator>Safe Polar Bears</creator> <!-- homepage of the author --> <info>http://www.thesafepolarbears.co.nr</info> <trackList> <track> <location>http://193.138.205.200/~spb/media/Safe Polar Bears - Window Man (live and sucky).mp3</location> <!-- artist or band name --> <creator>Safe Polar Bears</creator> <!-- album title --> <album>No album</album> <!-- name of the song --> <title>Window Man (live on 12/06/08)</title> <!-- comment on the song --> <annotation>Window Man, live played in the SPB week</annotation> <!-- song length, in milliseconds --> <duration>271066</duration> <!-- album art --> <image>http://www.thesafepolarbears.co.nr/media/SPB_logo_neg.png</image> </track> </tracklist> </playlist>
En in de html komt dan:
<object type="application/x-shockwave-flash" width="400" height="170" data="http://193.138.205.200/~spb/media/xspf_player.swf?playlist_url=http://193.138.205.200/~spb/media/playlist.xml">
<param name="movie" value="http://193.138.205.200/~spb/media/xspf_player.swf?playlist_url=http://193.138.205.200/~spb/media/playlist.xml" />
</object>
<object type="application/x-shockwave-flash" width="400" height="170" data="http://193.138.205.200/~spb/media/xspf_player.swf?playlist_url=http://193.138.205.200/~spb/media/playlist.xml"> <param name="movie" value="http://193.138.205.200/~spb/media/xspf_player.swf?playlist_url=http://193.138.205.200/~spb/media/playlist.xml" />
|