Posted: Fri Sep 07, 2007 1:37 am
This script is currently only working with MM2 (as the title says).
The Music Manager for Serious Collectors
https://www.mediamonkey.com/forum/
Code: Select all
Dim sql : sql = "WHERE Songs.Lyrics = ''"
Code: Select all
Dim sql : sql = "WHERE Songs.Lyrics = '' AND Songs.Genre NOT IN ('Classical', 'Score', 'Instrumental', 'Podcast')"
This is a script I definitely miss! (Trixmoto made this way back when I first started using MM, at my requestdas Monkey wrote:I don't know if this is something people still use, but I just installed it a few minutes ago and got the same error in MM3 others were getting. A quick glance at the database reveals they moved the lyrics to a more logical location. Change the sql line to this, and it should work...
I Believe that I used to use this script w/MM2....nohitter151 wrote:This is a script I definitely miss! (Trixmoto made this way back when I first started using MM, at my requestdas Monkey wrote:I don't know if this is something people still use, but I just installed it a few minutes ago and got the same error in MM3 others were getting. A quick glance at the database reveals they moved the lyrics to a more logical location. Change the sql line to this, and it should work...![]()
)
I tried your modification das, but I'm still getting lots of wacky errors. Trixmoto, I know you're busy - I just wanted to remind you that this script is still wanted.
Code: Select all
<Group|Name:Problematic tracks|Show tracks:No|Child of:FilesToEdit|Position:Last child>\Tracks without lyrics|Filter:<Lyrics> = ''\<Title>
Well I'd really rather just have the Lyrics node than all of MagicNodes (call me old fashioned, its just a script that I've never used). I would assume there are other users like me, but I guess I could be the only crazy MM user out heredrjboulder wrote:I Believe that I used to use this script w/MM2....nohitter151 wrote:This is a script I definitely miss! (Trixmoto made this way back when I first started using MM, at my requestdas Monkey wrote:I don't know if this is something people still use, but I just installed it a few minutes ago and got the same error in MM3 others were getting. A quick glance at the database reveals they moved the lyrics to a more logical location. Change the sql line to this, and it should work...![]()
)
I tried your modification das, but I'm still getting lots of wacky errors. Trixmoto, I know you're busy - I just wanted to remind you that this script is still wanted.
Maybe I am missing something, but is there a reason to update it considering the ability's of the newest MagicNodes?
I use this node and it appears under "Files To Edit":Or maybe I am missing some other usefulness of this script?Code: Select all
<Group|Name:Problematic tracks|Show tracks:No|Child of:FilesToEdit|Position:Last child>\Tracks without lyrics|Filter:<Lyrics> = ''\<Title>
Code: Select all
[No Lyrics]
icon=Title
sortLike=Artist
easyCaption=BaseCaptionAndTrackCount
hideIfEmpty=1
refresh=1
trackCriteria="(Lyrics = '')"
parent="Files to Edit"
Code: Select all
Dim sql : sql = "WHERE Songs.Lyrics = ''"
Code: Select all
Dim sql : sql = "WHERE Songs.Lyrics = '' AND " & SDB.ActiveFilterQuery
Code: Select all
Sub ShowUnknownLite(node)
Dim FilterSQL
If Not SDB.Database.ActiveFilterQuery="" Then FilterSQL = " AND " & SDB.Database.ActiveFilterQuery
Dim sql : sql = "WHERE Songs.Lyrics = ''" & FilterSQL
SDB.MainTracksWindow.AddTracksFromQuery(sql)
SDB.MainTracksWindow.FinishAdding
End Sub