PDA

View Full Version : Playlist functionality - when?



BLOWERS
02-13-2011, 07:32 AM
Hi Andrei,

I recall the ability of OCD to create playlists was 'coming soon' a while back. Any news on progress? I really want to make up a batch of playlists, and this feature would be amazingly helpful. I'd gladly test something that wasn't quite finalised if it would help!

frederf
02-13-2011, 06:17 PM
ME 2 ;O)

This is the #1 missing feature on my list of missing features...
And I hope that if and when implemented it would be as flexible as possible. Ultimatly I would like to be able to execute an advanced search and convert the result into a playlist. That way I could use any of the available fields including the custom ones as selection criteria.

Fred

Paternoster
02-14-2011, 10:12 AM
I think this "feature" shouldn't be very difficult to achive. In fact, the most important things that are needed for it are already there. That's the advanced search, the possibility to select almost any number of albums from the list of results (or even from the whole collection), and the export function. Writing a playlist export template shouldn't be that hard to do, since playlists are very simple indeed.

A xspf 1.0 playlist skeleton should look like this ....


<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<...>
</trackList>
</playlist>

and the exporter only needs to loop through the selected albums and fill in the data on the <...> area with chunks like this ...


<track>
<title> put song title here </title>
<location> put song path and link here </location>
</track>

m3u playlists are even more simple, since they basically need one header line (with "#EXTM3U" only) followed by a list of paths. Additional description lines (beginning with "#EXTINF") are easily added above each path too. So there is really nothing special or even magic about it.

Anything else, like fine tuning and randomizing the list by adding/removing or positioning tracks, is easily done in almost any player. So there is most likely no need to reinvent the wheel and put more things into this application that truly doesn't belong there ...

Just my two cents!

-pn

BLOWERS
06-07-2011, 07:43 AM
Hi Andrei,

I recall the ability of OCD to create playlists was 'coming soon' a while back. Any news on progress? I really want to make up a batch of playlists, and this feature would be amazingly helpful. I'd gladly test something that wasn't quite finalised if it would help!

Any further news, Andrei?