Install the SQL Playlist plugin and create a new custom playlist.

Edit the sql and paste this in there


Code:
--------------------
    
  -- PlaylistName: Sample Rate 48k+
  -- PlaylistGroups: Sample Rate
  select url from tracks 
        where
                audio=1 and samplerate>=48000 and lossless=1
        order by rand()
        limit 10;
  
--------------------


This selects anything with a sample rate of 48k and higher and is in a
lossless format.  You can change the 48000 to a higher number if
required.

You could also just another playlist with other names with higher bit
rates only.  You can also change the >= to = if you want a specific
sample rate.


-- 
lrossouw

Louis
'Last.fm' (http://www.last.fm/user/lrossouw)
------------------------------------------------------------------------
lrossouw's Profile: http://forums.slimdevices.com/member.php?userid=3416
View this thread: http://forums.slimdevices.com/showthread.php?t=81483

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

Reply via email to