Jump to content

Music


Counterfit

Recommended Posts

You have to create a XSPF file, which is really just an XML file with a list of the songs. There are some things on the page abot how you embed the player into your page with the selected playlist. The XSPF file should look something like this

<?xml version="1.0" encoding="UTF-8" ?><playlist version="0" xmlns="http://xspf.org/ns/0/">  <title>My Playlist</title>  <annotation>Name of the playlist</annotation>  <creator>Author</creator>  <info>Website</info>  <location>A link to this file</location>  <license>http://creativecommons.org/licenses/by-sa/1.0/</license>  <trackList>        <track>      <location>First MP3 link</location>      <image>MP3 Art link</image>      <annotation>Name of the MP3</annotation>      <info>Link to info about the artist</info>    </track>  </trackList></playlist>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...