I just came across xspf playlists. These are pretty cool cause it is like a mixture of pls and wpl. Basically, its just a big xml list of specific mp3s on the internet (podcasts). I am going to handle xspf differently. Since xspf files are updated constantly, I am going to figure out a simple way to point my player to an online xspf. Maybe I can simply do this with wpl, like:
......<seq>
<media src="http://path/to/playlist.xspf" />
I already need to go back to my player and tell it to check file extensions in a wpl. It would be trivial to capture "xspf" and treat it accordingly.
......<seq>
<media src="http://path/to/playlist.xspf" />
I already need to go back to my player and tell it to check file extensions in a wpl. It would be trivial to capture "xspf" and treat it accordingly.
Comment