slartibartfast wrote: 
> Got it working now after 15 hours to analyse 56000 tracks.

That's pretty slow - less than 4k/hour.

slartibartfast wrote: 
> I have a lot of albums with the genre "Live" which I don't want to
> appear on mixes. Too many to add to the ignore file. I suppose I could
> move them all into a folder named "Live" and add that to the ignore file
> but that sounds very time consuming as well.

Is 'Live' the -only- genre the files have? If so you could use an SQLite
UI (e.g. SQLiteBrowser) and try the following SQL:


Code:
--------------------
    
  UPDATE Tracks set IGNORE=1 WHERE Genre='Live';
  
--------------------


or if 'Live' is one of many genres:


Code:
--------------------
    
  UPDATE Tracks set IGNORE=1 WHERE (Genre LIKE '%;Live' OR Genre LIKE 'Live;%');
  
--------------------



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.
------------------------------------------------------------------------
cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
View this thread: http://forums.slimdevices.com/showthread.php?t=116068

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to