sander wrote:
> I'm trying to build a dynamic playlist where it will just pull from a
> group of artist I specify. The artists aren't grouped by genre or any
> other characteristics.
>
> I thought I could just click select multiple artists in the "Only
> include tracks for selected artists" field in the advanced playlist, but
> that didn't work. I tried the random songs by artist, but I can't seem
> to find the separator for multiple artists (if it exists).
>
> Does anyone know how I can do this?
>
> TIA
Use SQL-playlist and create one. I made this one for my wife:
-- PlaylistName:Alice
-- PlaylistGroups:
select tracks.url from tracks
join contributor_track on
tracks.id=contributor_track.track
join contributors on
contributor_track.contributor=contributors.id
and contributor_track.role in (1,5)
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id and
dynamicplaylist_history.client='PlaylistPlayer'
where
audio=1
and dynamicplaylist_history.id is null
and contributors.name in ('Bruce Springsteen')
or contributors.name in ('Bryan Adams')
or contributors.name in ('Runrig')
or contributors.name in ('Big Fat Snake')
or contributors.name in ('Savage Garden')
or contributors.name in ('Thomas Helmig')
order by random()
limit 10;
------------------------------------------------------------------------
callesoroe's Profile: http://forums.slimdevices.com/member.php?userid=22693
View this thread: http://forums.slimdevices.com/showthread.php?t=96456
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins