Results 1 to 4 of 4

Thread: Playlist functionality - when?

  1. #1
    Join Date
    Dec 1969
    Location
    Nottingham, England
    Posts
    263

    Question Playlist functionality - when?

    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!

  2. #2
    Join Date
    May 2007
    Location
    Posts
    136

    Default

    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

  3. #3
    Join Date
    Jan 2010
    Posts
    24

    Default

    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

  4. #4
    Join Date
    Dec 1969
    Location
    Nottingham, England
    Posts
    263

    Default

    Quote Originally Posted by BLOWERS View Post
    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?

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •