I've created a little PHP script which reads the contents of a folder containing MP3s and writes out an XPSF playlist.
It's in use at http://www.projectcircle3.com and you can get the source at http://www.lasmit.co.uk/category/xpsf-p ... generator/
Thanks for reading and good work on a fantastic library!
XPSF Playlist Generator
-
- User
- Posts:2
- Joined:Wed Jan 13, 2010 7:04 am
- Are you a spambot?:no
Re: XPSF Playlist Generator
I have done this way.
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<track>
<location>example.mp3</location>
</track>
</trackList>
</playlist>
<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<track>
<location>example.mp3</location>
</track>
</trackList>
</playlist>