afriend wrote: 
> I removed code in DPL3 that was specifically aimed at unsupported
> plugins - for all the reasons and with all the consquences (e.g. no
> support) explained in the FAQ.
> But as long as your SQLite code is valid and the tables you need
> exists/work there's a good chance it might work with DPL3. DPL3 and DPL2
> have different names and preference files so you could temporarily
> uninstall DPL2 and install DPL3 to test it. Just make sure you read the
> FAQ parts on -SQLPlayList- too. In your example above --- PlaylistOption
> Unlimited:1- won't have any effect with DPL*3*. It's ---
> PlaylistLimitOption:unlimited- (see DPL3 wiki on DPL playlist format).
I'm struggling with the complexity of the FAQs. There are so many
features I've never heard of, and some terms that evade me, but I'll
try.  It may prove to be too hard (i'm not as young as I once was).

> Just out of curiosity: Can you post the code of some of your dynamic
> playlists (preferably in CODE tags) that involve the -MultiLibrary-
> plugin? If there's a chance to replace this plugin with native virtual
> libraries you'd have one less plugin to worry about and make your setup
> a bit more 'future-proof'. 
I'd forgotten that the playlist I quoted didn't access the multilibrary
table (it didn't need to because I only use WORK on classical tracks). 
Here's one that does.

Code:
--------------------
    
  -- PlaylistName:Random Non-Classical Rated
  -- PlaylistGroups:Random
  select url from
        (select tracks.url from tracks
                join multilibrary_track on
                        tracks.id=multilibrary_track.track and
                        multilibrary_track.library=1
                join track_statistics on
                        tracks.url=track_statistics.url
                        and track_statistics.rating > 79
                left join dynamicplaylist_history on
                        tracks.id=dynamicplaylist_history.id and 
dynamicplaylist_history.client='PlaylistPlayer'
                where
                        audio=1
                        and dynamicplaylist_history.id is null
                group by tracks.id
                order by random()
                
                limit 20) as rated
        order by random();
  
--------------------



LMS 8.1 on PC, Xubuntu 20.04, FLACs 16->24 bit, 44.1->192kbps.  2
Touches & EDO.
LMS plugin UPnP/DLNA Bridge to MF M1 CLiC (A308CR amp & ESLs) & Marantz
CR603 UPnP renderers.  
Also Minimserver & Upplay to same & to upmpdcli/mpd PC renderers.  
Squeezelite to Meridian USB Explorer DAC to PC speakers/headphones.  
Wireless Xubuntu 20.04 laptop firefox/upplay or Android mobile with
Squeeze-Ctrl/BubbleUPnP controls LMS/Minimserver.
------------------------------------------------------------------------
PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=115501

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

Reply via email to