jarome;176709 Wrote: > I made a library that includes everything, and it does not seem to > populate, even though I refresh it. How did you define the library ? A library that includes everything should not have value in any of the options in the library filtering parameters set. The easiest way to create a library that contains all music is to: 1. Choose to create a new library 2. Choose Standard as library type 3. Change only the following parameters (only change those you need to): - Library name - Menu group - Only include on these players - Exclude from these players - Included internal menus - Included Custom Browse menus - Show in home menu - Custom Skip filter 4. If you change any of the options besides the above you probably don't get a library that contains all music.
If you think you have done it correct already, could you: 1. Turn on the debugging setting in the Multi Library settings section in Server Settings/Plugins. 2. Save the library and directly after look in the log at: http://localhost:9000/log.txt 3. Post the log here unless you can see any problems yourself. jarome;176709 Wrote: > I want to split my tracks by mp3 versus flac. How do I go about doing > this? You should be able to get the flac only library by marking the "Only lossless format" option in the library configuration. Making a MP3 only library isn't supported in the template yet, I will add this to the wish list for a future version. If you still want to do it you need to choose to "Customize SQL" at the on the library page and edit the SQL manually. It is the section that begins with "<track><data>" that is interesting. A bit of warning though, if you do this you won't get the user friendly interface back for this library instead you would have to edit the cryptical XML text every time you need to change anything. Due to this it is probably a good idea to make sure all the rest of the options are set as you like before you choose to customize the SQL. Having said that, a library that contains all MP3 music would have a "<track><data>" section of the cryptical XML text that looked somethink like this: Code: -------------------- <track> <data> select {library},tracks.id from tracks where tracks.audio=1 and tracks.content_type='mp3' group by tracks.id </data> </track> -------------------- -- erland Erland Isaksson 'My homepage' (http://erland.homeip.net) 'My download page' (http://erland.homeip.net/download) (Developer of 'TrackStat, SQLPlayList, DynamicPlayList, Custom Browse, Custom Scan, Custom Skip, Multi Library and RandomPlayList plugins' (http://wiki.erland.homeip.net/index.php/Category:SlimServer)) ------------------------------------------------------------------------ erland's Profile: http://forums.slimdevices.com/member.php?userid=3124 View this thread: http://forums.slimdevices.com/showthread.php?t=31742 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/plugins
