Information
Article ID1
Created On5/13/2009
Modified5/19/2009
Share With Others
Creating Custom XSPF (XML) Playlist

The easiest way to create a custom XML playlist for Alive Media Player is to use XSPF playlist format.

XSPF Playlist Example:

<playlist version="1" xmlns="http://xspf.org/ns/0/">
                <trackList>
                               <track>
                                               <title>Title 1</title>
                                               <creator>Author's Name</creator>
                                               <location>Song URL</location>
                                               <image>Thumb/preview image URL</image>
                               </track>

                               <track>
                                               <title>Title 2</title>
                                               <creator>Author's Name</creator>
                                               <location>Song 2 URL</location>
                                               <image>Thumb/preview image URL</image>
                                               <info>http://www.considero.net</info>
                               </track>
                              
                               <track>
                                               <title>Title 3</title>
                                               <creator>Author's Name</creator>
                                               <location>Song 3 URL</location>
                                               <image>Thumb/preview image URL</image>
                                               <info>http://www.considero.net</info>
                               </track>
                </trackList>
</playlist>

 

Playlist tags:

Title - The file title to show in playlist
Creator - Author of the media
Location - Relative or absolute URL to the media file
Image - Relative or absolute URL to the playlist thumb/preview image
Info - The URL to additional info about the media