Lyricator - Batch Lyrics Updater v1.00 [OUTDATED]

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

debacle
Posts: 9
Joined: Sun Mar 22, 2009 2:50 am

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by debacle »

Note that the unofficial 1.1.0.023 doesn't have the "lyricsvip.com" issue.
http://www.squirrelscript.net/dl/click.php?id=5
Lowlander
Posts: 56570
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Lowlander »

debacle wrote:Note that the unofficial 1.1.0.023 doesn't have the "lyricsvip.com" issue.
http://www.squirrelscript.net/dl/click.php?id=5
But as many have reported it get's the lyrics in the wrong language. Currently no version is working properly.
SquirrelScript
Posts: 37
Joined: Sat Jun 06, 2009 6:34 am
Contact:

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by SquirrelScript »

I think I've found a solution! :) Well...I have it working on my local server anyway! :D
I'm going to run a few more tests before uploading it so you guys can use it. I just want to be sure.
I don't think there is a need to update plug-in as its all done on the web server, which if your using Lyricator 1.1.0.023 (unofficial), you're already using!

If anyone else understand javascript/ajax, and would like to give me a hand to find a local solution, please PM me.
*This way, it will be just "like before" (meaning it will be as quick as it once was!)*

G-DIABLO wrote:hello.

i didn't visit here for long time.
great to see you continue this great job i started!

is there a stable good version now?
working with hebrew songs?

i downloaded this version:
Thanks for the hint Canoa!
Lyricator 1.1.0.023 (unofficial)
Download: http://www.squirrelscript.net/dl/click.php?id=5
but it doesn't work for me..
which version are now working the best?

thx!
At first I didn't have this problem, but after messing about a bit I ran into too. The solution that work for me was to reapply the settings (Tools -> Options -> Lyricator.), afterwords, it would stay open!
~Got Code?~

Code: Select all

http://www.SquirrelScript.net
SquirrelScript
Posts: 37
Joined: Sat Jun 06, 2009 6:34 am
Contact:

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by SquirrelScript »

Lyricator 1.1.0.024 (unofficial)
Download: http://www.squirrelscript.net/dl/click.php?id=5

Now...how long till lyricsplugin/lyricsvip change again ;)

ChangeLog
v 1.1.0.024 (2010-09-12)
- Added message about restarting MediaMonkey after installing the plug-in
- Re-enables LyricsWiki & LyricsSongs
- Removed all "<a href>" tags from results
~Got Code?~

Code: Select all

http://www.SquirrelScript.net
Donski
Posts: 38
Joined: Mon Aug 09, 2010 2:55 pm

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Donski »

SquirrelScript wrote:Lyricator 1.1.0.024 (unofficial)
Download: http://www.squirrelscript.net/dl/click.php?id=5

Now...how long till lyricsplugin/lyricsvip change again ;)

ChangeLog
v 1.1.0.024 (2010-09-12)
- Added message about restarting MediaMonkey after installing the plug-in
- Re-enables LyricsWiki & LyricsSongs
- Removed all "<a href>" tags from results
Although it's grabbing lyrics, it doesn't work properly. It doesn't skip over the tracks where it doesn't find lyrics, so everything is checked. If you choose to Save a track without lyrics then you end up with ||| in its lyrics field. You must've removed something that should've remained.
djkor
Posts: 8
Joined: Thu May 24, 2007 5:23 am
Contact:

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by djkor »

SquirrelScript wrote:Lyricator 1.1.0.024 (unofficial)
Download: http://www.squirrelscript.net/dl/click.php?id=5

Now...how long till lyricsplugin/lyricsvip change again ;)

ChangeLog
v 1.1.0.024 (2010-09-12)
- Added message about restarting MediaMonkey after installing the plug-in
- Re-enables LyricsWiki & LyricsSongs
- Removed all "<a href>" tags from results
thanks very much for fixing script! ;]
~ megalord twat ~
debacle
Posts: 9
Joined: Sun Mar 22, 2009 2:50 am

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by debacle »

Donski wrote:Although it's grabbing lyrics, it doesn't work properly. It doesn't skip over the tracks where it doesn't find lyrics, so everything is checked. If you choose to Save a track without lyrics then you end up with ||| in its lyrics field. You must've removed something that should've remained.
Looks like you can fix this manually by adding this line under line 150 of ...\MediaMonkey\Scripts\Lyricator\lyricator.js:

Code: Select all

       else if(l.replace(/\<br\>/g,'').test(/^\s+$/)) l='';
So in context:

Code: Select all

...
       }
       l = l.replace(/<a.*href="(.*?)".*>(.*?)<\/a>/gi, "");
       if(l == '<a href="http://www.lyricsvip.com/" target="_blank">http://www.lyricsvip.com</a>') l='';
       else if(l == '<br><br><br><a href="http://www.tunerankings.com/" target="_blank">www.tunerankings.com</a>') l='';
       else if(l.replace(/\<br\>/g,'').test(/^\s+$/)) l='';
       return l;
    }
    var searchSend = function(r, a, t) {
...
SquirrelScript
Posts: 37
Joined: Sat Jun 06, 2009 6:34 am
Contact:

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by SquirrelScript »

Lyricator 1.1.0.025 (unofficial)
Download: http://www.squirrelscript.net/dl/click.php?id=5

ChangeLog
v 1.1.0.025 (2010-09-13)
- Fixes "No lyrics" issues


Donski wrote:Although it's grabbing lyrics, it doesn't work properly. It doesn't skip over the tracks where it doesn't find lyrics, so everything is checked. If you choose to Save a track without lyrics then you end up with ||| in its lyrics field. You must've removed something that should've remained.
Thanks for pointing this out, I've updated it - hopefully this will fix it :)
djkor wrote: thanks very much for fixing script! ;]
Your welcome :)
debacle wrote: Looks like you can fix this manually by adding this line under line 150 of ...\MediaMonkey\Scripts\Lyricator\lyricator.js:

Code: Select all

       else if(l.replace(/\<br\>/g,'').test(/^\s+$/)) l='';
So in context:

Code: Select all

...
       }
       l = l.replace(/<a.*href="(.*?)".*>(.*?)<\/a>/gi, "");
       if(l == '<a href="http://www.lyricsvip.com/" target="_blank">http://www.lyricsvip.com</a>') l='';
       else if(l == '<br><br><br><a href="http://www.tunerankings.com/" target="_blank">www.tunerankings.com</a>') l='';
       else if(l.replace(/\<br\>/g,'').test(/^\s+$/)) l='';
       return l;
    }
    var searchSend = function(r, a, t) {
...
Thanks for the helping hand!
I gave it a go, but it didn't want to work for me :(
My fix was:

Code: Select all

       }
       l = l.replace(/<br><br><br><a.*href="(.*?)".*>(.*?)<\/a>/gi, "");
       l = l.replace(/<a.*href="(.*?)".*>(.*?)<\/a>/gi, "");
       if(l.replace(/\<br\>/g,'').test(/^\s+$/)) l='';
       return l;
    }
~Got Code?~

Code: Select all

http://www.SquirrelScript.net
BramKa
Posts: 26
Joined: Tue Feb 09, 2010 11:57 am
Location: Brussel

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by BramKa »

Yes thanks! Lyricator 1.1.0.025 (unofficial) works great !
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Vyper »

Great job SS! :D
Stop Button Freak
Donski
Posts: 38
Joined: Mon Aug 09, 2010 2:55 pm

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Donski »

Good work guys, thank you again. :D
Firetribe
Posts: 74
Joined: Sat Jul 25, 2009 7:04 am

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Firetribe »

I knew that sooner or later you all will fix this...Thanks for your great work :)
Unter der Maske eines Clowns siehst du die Spuren seiner Tränen...
djkor
Posts: 8
Joined: Thu May 24, 2007 5:23 am
Contact:

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by djkor »

wrong lyrics again...
~ megalord twat ~
Rvan
Posts: 7
Joined: Wed Sep 15, 2010 1:07 pm

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Rvan »

Wrong lyrics for me too :(
Skyler

Re: Lyricator - Batch Lyrics Updater v1.00 [MM3]

Post by Skyler »

spanish lyrics instead of english ones again :-?
the last two days the script worked...
Locked