I don't think there is a predefined template that can be used to
accomplish this, so if you want to do it without having to retag your
music you need to customize the SQL/XML. It's probably easiest to do it
through Multi Library plugin and define a library with a SQL statement
(the part between <data> and </data> that looks something like this:

Code:
--------------------
    
  select {library},tracks.id from tracks,albums
  where
        tracks.album=albums.id and
        albums.title like '%Live%' and
        tracks.audio=1
        group by tracks.id
  
--------------------


If you aren't familiar with XML this can be a bit complicated.

The alternative, that probably is a bit easier, is to use Mp3Tag or
some other tagging software and find all matching albums and add a
"Live" genre tag to them. After this, you can configure either a Multi
Library or a Custom Browse menu which is filtered by the "Live" genre.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=86878

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to